/* =============================================================================
   G96 Products — Shop Stylesheet
   Matches the G96 Astro/Ghost CMS design exactly
   Accent: #eb1c36  |  Text: #333  |  Headings: #15171a  |  BG: #fff
   ============================================================================= */

:root {
    --g96-accent: #eb1c36;
    --g96-accent-dark: #c01a2e;
    --g96-text: #333333;
    --g96-heading: #15171a;
    --g96-muted: #555;
    --g96-border: #e0e0e0;
    --g96-bg: #ffffff;
    --g96-bg-alt: #f8f8f8;
    --g96-max-width: 1200px;
    --g96-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* =============================================================================
   Base
   ============================================================================= */
*, *::before, *::after { box-sizing: border-box; }

.g96-shop-body {
    font-family: var(--g96-font);
    background-color: var(--g96-bg);
    color: var(--g96-text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.g96-shop-body a {
    color: var(--g96-accent);
    text-decoration: none;
}
.g96-shop-body a:hover { text-decoration: underline; }

.g96-shop-body img { max-width: 100%; height: auto; }

/* =============================================================================
   Layout Containers
   ============================================================================= */
.gh-outer { margin: 0 auto; padding-bottom: 50px; }
.gh-inner {
    margin: 0 auto;
    max-width: var(--g96-max-width);
    width: 100%;
    padding: 0 4vw;
    box-sizing: border-box;
}

/* =============================================================================
   Typography
   ============================================================================= */
.g96-shop-body h1, .g96-shop-body h2, .g96-shop-body h3,
.g96-shop-body h4, .g96-shop-body h5, .g96-shop-body h6 {
    font-family: var(--g96-font);
    color: var(--g96-heading);
    margin-top: 0;
    line-height: 1.15;
}
.g96-shop-body h1 { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.02em; text-align: center; }
.g96-shop-body h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.01em; }
.g96-shop-body h3 { font-size: 1.5rem; font-weight: 600; }

.g96-divider {
    background-color: var(--g96-accent);
    border: 0;
    height: 4px;
    width: 100%;
    margin: 20px 0;
}

/* =============================================================================
   Header / Navigation
   ============================================================================= */
.g96-header {
    background: #272727 !important;
    border-bottom: 5px solid var(--g96-accent);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.g96-header-inner {
    max-width: 100%;
    margin: 0;
    padding: 10px 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.g96-header-left {
    flex-shrink: 0;
}

.g96-logo img {
    height: 140px;
    width: auto;
    display: block;
}

.g96-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-grow: 1;
}

.g96-header-top {
    display: flex;
    align-items: center;
}

.g96-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.g96-nav a {
    color: white !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.g96-nav a:hover, .g96-nav a.active { color: var(--g96-accent) !important; }

.g96-contact-btn {
    background-color: var(--g96-accent) !important;
    color: white !important;
    padding: 10px 24px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    border-radius: 4px;
    margin-left: 10px;
}
.g96-contact-btn:hover {
    background-color: var(--g96-accent-dark) !important;
    text-decoration: none !important;
}

.g96-header-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.g96-support-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: italic;
}

.g96-flag {
    height: 34px !important;
    width: auto !important;
    border: 1px solid #444;
}

.desktop-only {
    display: flex !important;
}

@media (max-width: 1024px) {
    .g96-nav a {
        font-size: 0.8rem;
        gap: 12px;
    }
}
.g96-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.g96-logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--g96-accent);
    letter-spacing: -0.02em;
    line-height: 1;
}
.g96-logo-sub {
    font-size: 0.75rem;
    color: var(--g96-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.g96-logo:hover { text-decoration: none; }

.g96-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.g96-nav a {
    color: var(--g96-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.g96-nav a:hover, .g96-nav a.active { color: var(--g96-accent); }
.g96-nav a:hover { text-decoration: none; }

.g96-nav-cart {
    position: relative;
    display: flex;
    align-items: center;
}
.g96-nav-cart svg { width: 22px; height: 22px; color: white; }
.g96-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--g96-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.g96-cart-badge.hidden { display: none; }

.g96-nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 1px solid var(--g96-border);
    padding-left: 20px;
    margin-left: 4px;
}
.g96-nav-auth a { font-size: 0.875rem; color: var(--g96-muted); }
.g96-nav-auth a:hover { color: var(--g96-accent); text-decoration: none; }

.g96-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.g96-mobile-toggle svg { width: 24px; height: 24px; color: white; }

.g96-mobile-nav {
    display: none;
    background: #272727;
    border-top: 1px solid #444;
    padding: 12px 4vw;
}
.g96-mobile-nav.open { display: block; }
.g96-mobile-nav a {
    display: block;
    padding: 12px 0;
    color: white;
    border-bottom: 1px solid #333;
    font-size: 0.95rem;
    font-weight: 500;
}
.g96-mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 900px) {
    .g96-nav { display: none; }
    .g96-mobile-toggle { display: block; }
    .desktop-only { display: none; }
    .g96-logo img { height: 60px; }
}

/* =============================================================================
   Buttons
   ============================================================================= */
.kg-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 3px;
    color: #fff !important;
    background-color: var(--g96-accent);
    font-weight: bold;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    font-family: var(--g96-font);
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    line-height: 1.4;
}
.kg-btn:hover { background-color: var(--g96-accent-dark); text-decoration: none !important; }
.kg-btn:focus { outline: 2px solid var(--g96-accent); outline-offset: 2px; }
.kg-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.kg-btn-outline {
    background: transparent;
    color: var(--g96-accent) !important;
    border: 2px solid var(--g96-accent);
}
.kg-btn-outline:hover { background: var(--g96-accent); color: #fff !important; }

.kg-btn-sm { padding: 6px 14px; font-size: 0.85rem; }
.kg-btn-lg { padding: 14px 30px; font-size: 1.05rem; }
.kg-btn-block { display: block; width: 100%; text-align: center; }

/* =============================================================================
   Flash Alerts
   ============================================================================= */
.g96-alert {
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.g96-alert-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.g96-alert-error   { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }

/* =============================================================================
   Shop Page Title Block
   ============================================================================= */
.g96-page-title {
    text-align: center;
    padding: 40px 0 10px;
}
.g96-page-title h1 { margin-bottom: 0; }

/* =============================================================================
   Category Filter Pills
   ============================================================================= */
.g96-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 24px 0;
}
.g96-category-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.g96-pill {
    padding: 6px 16px;
    border: 2px solid var(--g96-border);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--g96-muted);
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.g96-pill:hover { border-color: var(--g96-accent); color: var(--g96-accent); text-decoration: none; }
.g96-pill.active { border-color: var(--g96-accent); background: var(--g96-accent); color: #fff; }

.g96-search-sort { display: flex; gap: 8px; align-items: center; }
.g96-search-input {
    padding: 8px 14px;
    border: 1px solid var(--g96-border);
    border-radius: 4px;
    font-size: 0.875rem;
    font-family: var(--g96-font);
    width: 200px;
    color: var(--g96-text);
}
.g96-search-input:focus { outline: 2px solid var(--g96-accent); border-color: var(--g96-accent); }
.g96-sort-select {
    padding: 8px 12px;
    border: 1px solid var(--g96-border);
    border-radius: 4px;
    font-size: 0.875rem;
    font-family: var(--g96-font);
    color: var(--g96-text);
    background: #fff;
}
.g96-sort-select:focus { outline: 2px solid var(--g96-accent); }

/* =============================================================================
   Product Grid + Cards  (matches .product-card-grid-container from Astro)
   ============================================================================= */
.product-card-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin: 40px auto;
}

.kg-card.kg-product-card {
    border: 1px solid var(--g96-border);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}
.kg-card.kg-product-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.kg-product-card-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kg-product-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
    display: block;
}
.kg-product-card-image-placeholder {
    width: 100%;
    height: 220px;
    background: var(--g96-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}
.kg-product-card-image-placeholder span {
    font-size: 4rem;
    font-weight: 900;
    color: #ddd;
}

.kg-product-card-title-container { padding: 15px 15px 5px; }
.kg-product-card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--g96-heading);
    text-align: center;
    line-height: 1.3;
}

.kg-product-card-description { padding: 5px 15px 10px; flex-grow: 1; text-align: center; }
.kg-product-card-description p { margin: 0; font-size: 0.9rem; color: var(--g96-muted); }

.kg-product-card-badges { padding: 0 15px 5px; display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.g96-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.g96-badge-sale { background: var(--g96-accent); color: #fff; }
.g96-badge-featured { background: #15171a; color: #fff; }
.g96-badge-out { background: #aaa; color: #fff; }

.kg-product-card-button {
    display: block;
    width: calc(100% - 30px);
    margin: auto 15px 15px;
    padding: 10px 15px;
    background-color: var(--g96-accent);
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    border-radius: 3px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    font-family: var(--g96-font);
}
.kg-product-card-button:hover { background-color: var(--g96-accent-dark); text-decoration: none !important; }

@media (max-width: 900px) {
    .product-card-grid-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 560px) {
    .product-card-grid-container { grid-template-columns: 1fr; gap: 16px; }
}

/* =============================================================================
   Product Detail Page
   ============================================================================= */
.g96-product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 40px 0;
}
.g96-product-image-wrap {
    border: 1px solid var(--g96-border);
    border-radius: 5px;
    overflow: hidden;
    background: var(--g96-bg-alt);
}
.g96-product-image-wrap img { width: 100%; display: block; }
.g96-product-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g96-bg-alt);
}
.g96-product-image-placeholder span { font-size: 8rem; font-weight: 900; color: #ddd; }

.g96-product-info { padding-top: 10px; }
.g96-product-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--g96-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.g96-product-info h1 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 12px;
}
.g96-product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--g96-heading);
    margin-bottom: 8px;
}
.g96-product-price-compare {
    font-size: 1.1rem;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 8px;
}
.g96-stock-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}
.g96-stock-dot { width: 8px; height: 8px; border-radius: 50%; }
.g96-stock-dot.in-stock { background: #28a745; }
.g96-stock-dot.out-stock { background: #eb1c36; }
.g96-stock-in { color: #28a745; }
.g96-stock-out { color: var(--g96-accent); }

.g96-product-description {
    font-size: 0.95rem;
    color: var(--g96-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--g96-border);
}

.g96-add-to-cart {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}
.g96-qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid var(--g96-border);
    border-radius: 3px;
    overflow: hidden;
}
.g96-qty-btn {
    background: var(--g96-bg-alt);
    border: none;
    width: 36px;
    height: 44px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--g96-heading);
    transition: background 0.15s;
}
.g96-qty-btn:hover { background: #eee; }
.g96-qty-input {
    width: 50px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--g96-border);
    border-right: 1px solid var(--g96-border);
    font-size: 0.95rem;
    font-family: var(--g96-font);
    color: var(--g96-heading);
}
.g96-qty-input:focus { outline: none; }

.g96-sku { font-size: 0.8rem; color: #aaa; margin-top: 16px; }

.g96-breadcrumb {
    font-size: 0.85rem;
    color: var(--g96-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.g96-breadcrumb a { color: var(--g96-muted); }
.g96-breadcrumb a:hover { color: var(--g96-accent); text-decoration: none; }

@media (max-width: 768px) {
    .g96-product-detail { grid-template-columns: 1fr; gap: 30px; }
    .g96-product-info h1 { font-size: 1.6rem; }
}

/* =============================================================================
   Cart Table (matches Astro cart.astro exactly)
   ============================================================================= */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.cart-table th {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 3px solid var(--g96-accent);
    color: var(--g96-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cart-table td {
    padding: 16px 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}
.cart-table tbody tr:last-child td { border-bottom: none; }
.cart-table tbody tr:hover { background: var(--g96-bg-alt); }

.cart-product { display: flex; align-items: center; gap: 12px; }
.cart-product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--g96-border);
    background: var(--g96-bg-alt);
    flex-shrink: 0;
}
.cart-product-img-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    border: 1px solid var(--g96-border);
    background: var(--g96-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #ccc;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.cart-product-name { font-weight: 600; color: var(--g96-heading); display: block; }
.cart-product-category { font-size: 0.78rem; color: var(--g96-muted); display: block; }

.qty-input {
    width: 60px;
    padding: 6px 8px;
    border: 1px solid var(--g96-border);
    border-radius: 3px;
    font-size: 0.9rem;
    font-family: var(--g96-font);
    text-align: center;
    color: var(--g96-heading);
}
.qty-input:focus { outline: 2px solid var(--g96-accent); border-color: var(--g96-accent); }

.remove-btn {
    background: none;
    border: none;
    color: var(--g96-accent);
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--g96-font);
    text-decoration: underline;
    padding: 0;
    line-height: 1;
}
.remove-btn:hover { color: var(--g96-accent-dark); }

.cart-summary {
    text-align: right;
    padding: 20px 0;
    border-top: 2px solid var(--g96-border);
}
.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--g96-heading);
    text-align: right;
}
.cart-summary-breakdown {
    font-size: 0.9rem;
    color: var(--g96-muted);
    margin-bottom: 16px;
}
.cart-summary-breakdown div {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-bottom: 6px;
}
.cart-summary-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--g96-heading);
    padding-top: 8px;
    border-top: 1px solid var(--g96-border);
    margin-top: 8px;
}
#error-msg { color: var(--g96-accent); font-size: 0.9rem; margin-top: 10px; display: none; }

.empty-msg {
    text-align: center;
    font-size: 1.1rem;
    padding: 60px 20px;
    color: var(--g96-muted);
}
.empty-msg svg { width: 64px; height: 64px; color: #ddd; display: block; margin: 0 auto 16px; }
.empty-msg p { margin: 0 0 16px; }

/* =============================================================================
   Checkout Success / Cancel
   ============================================================================= */
.g96-result-page {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.g96-result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.g96-result-icon.success { background: #d4edda; }
.g96-result-icon.cancel { background: #fff3cd; }
.g96-result-icon svg { width: 40px; height: 40px; }
.g96-result-icon.success svg { color: #28a745; }
.g96-result-icon.cancel svg { color: #856404; }
.g96-result-page h1 { margin-bottom: 12px; font-size: 2rem; }
.g96-result-page p { color: var(--g96-muted); margin-bottom: 30px; font-size: 1rem; }

.g96-order-card {
    border: 1px solid var(--g96-border);
    border-radius: 5px;
    padding: 30px;
    text-align: left;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}
.g96-order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--g96-border);
}
.g96-order-number-label { font-size: 0.8rem; color: var(--g96-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.g96-order-number { font-size: 1.3rem; font-weight: 700; color: var(--g96-heading); }
.g96-status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.g96-status-paid, .g96-status-delivered { background: #d4edda; color: #155724; }
.g96-status-shipped { background: #d1ecf1; color: #0c5460; }
.g96-status-pending, .g96-status-processing { background: #fff3cd; color: #856404; }
.g96-status-cancelled, .g96-status-refunded { background: #f8d7da; color: #721c24; }

.g96-order-items { margin-bottom: 20px; }
.g96-order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}
.g96-order-item:last-child { border-bottom: none; }
.g96-order-item-name { color: var(--g96-heading); font-weight: 500; }
.g96-order-item-qty { color: var(--g96-muted); font-size: 0.82rem; }
.g96-order-item-price { font-weight: 700; color: var(--g96-heading); }

.g96-order-totals { border-top: 2px solid var(--g96-border); padding-top: 16px; }
.g96-order-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--g96-muted);
}
.g96-order-total-row.grand-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--g96-heading);
    border-top: 1px solid var(--g96-border);
    padding-top: 10px;
    margin-top: 6px;
}

.g96-result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =============================================================================
   Orders List
   ============================================================================= */
.g96-orders-list { margin-top: 30px; }
.g96-order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border: 1px solid var(--g96-border);
    border-radius: 4px;
    margin-bottom: 12px;
    background: #fff;
    transition: box-shadow 0.15s;
}
.g96-order-row:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.g96-order-row-meta { display: flex; flex-direction: column; gap: 2px; }
.g96-order-row-number { font-weight: 700; color: var(--g96-heading); font-size: 1rem; }
.g96-order-row-date { font-size: 0.8rem; color: var(--g96-muted); }
.g96-order-row-items { font-size: 0.8rem; color: var(--g96-muted); }
.g96-order-row-right { display: flex; align-items: center; gap: 16px; }
.g96-order-row-total { font-weight: 700; font-size: 1rem; color: var(--g96-heading); }
.g96-order-row-link { font-size: 0.875rem; color: var(--g96-accent); font-weight: 600; }
.g96-order-row-link:hover { color: var(--g96-accent-dark); }

/* =============================================================================
   Admin Table
   ============================================================================= */
.g96-admin-table-wrap { background: #fff; border: 1px solid var(--g96-border); border-radius: 5px; overflow: hidden; }
.g96-admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.g96-admin-table th {
    padding: 12px 16px;
    text-align: left;
    background: var(--g96-bg-alt);
    border-bottom: 2px solid var(--g96-border);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--g96-muted);
}
.g96-admin-table td { padding: 14px 16px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.g96-admin-table tbody tr:last-child td { border-bottom: none; }
.g96-admin-table tbody tr:hover { background: var(--g96-bg-alt); }

.g96-admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

/* =============================================================================
   Related Products
   ============================================================================= */
.g96-related { margin-top: 60px; }
.g96-related h2 { font-size: 1.6rem; margin-bottom: 24px; }

/* =============================================================================
   Footer
   ============================================================================= */
.g96-footer {
    background: var(--g96-heading);
    color: #ccc;
    margin-top: auto;
    padding: 40px 0 20px;
    font-size: 0.9rem;
}
.g96-footer-inner {
    max-width: var(--g96-max-width);
    margin: 0 auto;
    padding: 0 4vw;
}
.g96-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}
.g96-footer-brand .g96-logo-text { font-size: 2rem; color: var(--g96-accent); }
.g96-footer-brand p { color: #999; font-size: 0.85rem; margin: 8px 0 0; max-width: 240px; line-height: 1.5; }
.g96-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.g96-footer-links a { color: #aaa; text-decoration: none; }
.g96-footer-links a:hover { color: #fff; text-decoration: none; }
.g96-footer-bottom { text-align: center; color: #666; font-size: 0.8rem; }

/* =============================================================================
   Pagination (override Tailwind/Breeze)
   ============================================================================= */
.g96-pagination { margin-top: 30px; display: flex; justify-content: center; }
.g96-pagination nav { display: flex; align-items: center; gap: 4px; }

/* =============================================================================
   Utility
   ============================================================================= */
.text-accent { color: var(--g96-accent); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
