:root {
    --belk-blue: #003087;
    --belk-red: #c8102e;
    --belk-gray: #f5f5f5;
    --belk-dark: #333;
    --belk-border: #ddd;
}

* { box-sizing: border-box; }

/* Blazor Server: reconnect in the background without blocking the UI. */
#components-reconnect-modal,
#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-retrying,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected,
#components-reconnect-modal.components-reconnect-hide {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--belk-dark);
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

a { color: var(--belk-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.belk-header-top { background: var(--belk-blue); color: #fff; padding: 0.75rem 0; }
.belk-header-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.belk-header-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.belk-logo { font-size: 2rem; font-weight: 700; color: #fff; letter-spacing: -1px; text-decoration: none; flex: 1; min-width: 0; }

.belk-nav-toggle {
    display: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.belk-nav-toggle:hover,
.belk-nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
    outline: none;
}

.belk-nav-toggle-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 20px;
}

.belk-nav-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.belk-nav-toggle.is-open .belk-nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.belk-nav-toggle.is-open .belk-nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.belk-nav-toggle.is-open .belk-nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.belk-search { flex: 1; display: flex; min-width: 200px; }
.belk-search input { flex: 1; padding: 0.5rem 1rem; border: none; border-radius: 4px 0 0 4px; }
.belk-search button { padding: 0.5rem 1rem; background: var(--belk-red); color: #fff; border: none; border-radius: 0 4px 4px 0; cursor: pointer; }
.belk-header-actions { display: flex; align-items: center; gap: 1rem; }
.belk-header-actions a { color: #fff; }

/* Floating cart */
.belk-floating-cart {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 999px;
    background: var(--belk-blue);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.belk-floating-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.belk-floating-cart-icon {
    width: 1.75rem;
    height: 1.75rem;
    fill: currentColor;
}

.belk-floating-cart-count {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: var(--belk-red);
    color: #fff;
    border-radius: 999px;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.3rem;
    font-size: 0.75rem;
    line-height: 1.35rem;
    text-align: center;
    font-weight: 700;
    border: 2px solid #fff;
}

.belk-nav { background: #fff; border-bottom: 1px solid var(--belk-border); }
.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0 1.5rem; }
.nav-item { position: relative; }
.nav-item-inner {
    display: flex;
    align-items: center;
}
.nav-link {
    color: var(--belk-dark);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
}
.nav-link:hover { color: var(--belk-blue); text-decoration: none; }
.nav-chevron { font-size: 0.65rem; color: #666; }
.nav-chevron--mobile { display: none; }

.nav-submenu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.75rem 0.35rem;
    margin: 0;
    cursor: pointer;
    line-height: 1;
    color: #666;
}

.nav-mobile-drawer {
    display: none;
}

.nav-submenu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--belk-border);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    display: none;
}

.nav-submenu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--belk-dark);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.nav-submenu a:hover {
    background: var(--belk-gray);
    color: var(--belk-blue);
    text-decoration: none;
}

/* Desktop only: open submenu on hover or keyboard focus (not touch). */
@media (hover: hover) and (pointer: fine) {
    .nav-item.has-submenu:hover .nav-submenu--desktop,
    .nav-item.has-submenu:focus-within .nav-submenu--desktop {
        display: block;
    }
}
.belk-promo-banner { background: var(--belk-red); color: #fff; text-align: center; padding: 0.5rem; font-size: 0.9rem; }

/* Hero */
.hero {
    background-color: var(--belk-blue);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 0;
    border: none;
    outline: none;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    border: none;
    outline: none;
}
.hero-content p { font-size: 1.2rem; margin-bottom: 1.5rem; }

/* Buttons */
.btn-primary { display: inline-block; background: var(--belk-red); color: #fff; padding: 0.75rem 2rem; border: none; border-radius: 4px; font-size: 1rem; cursor: pointer; text-decoration: none; }
.btn-primary:hover { background: #a00d25; text-decoration: none; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-secondary { display: inline-block; background: #fff; color: var(--belk-blue); padding: 0.75rem 2rem; border: 2px solid var(--belk-blue); border-radius: 4px; cursor: pointer; margin-left: 0.5rem; }

/* Sections */
.section { padding: 2rem 0; }
.section-title { font-size: 1.5rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--belk-blue); padding-bottom: 0.5rem; }
.section-subtitle { color: #666; margin: -1rem 0 1.5rem; }

/* Home advertising */
.home-ad-section { text-align: center; }
.home-ad-player {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--belk-border);
}
.home-ad-banners { display: grid; gap: 2rem; }
.home-ad-slot { border-radius: 4px; overflow: hidden; }
.home-ad-title { font-size: 1.15rem; margin: 0 0 0.5rem; }
.home-ad-subtitle { color: #666; margin: 0 0 1rem; }
.home-ad-link { display: block; text-decoration: none; color: inherit; }
.home-ad-image { width: 100%; max-height: 320px; object-fit: cover; display: block; }
.home-ad-video-wrap { background: #000; border-radius: 4px; overflow: hidden; }
.home-ad-video { width: 100%; max-height: 480px; display: block; margin: 0 auto; }
.home-ad-cta-wrap { margin-top: 1.25rem; }
.home-ad-cta { display: inline-block; margin-top: 1rem; font-weight: 600; color: var(--belk-blue); }
.home-ad-link:hover .home-ad-cta { text-decoration: underline; }

/* Home video */
.home-video-section { text-align: center; }
.home-video-player-wrap { border-radius: 4px; overflow: hidden; background: #000; }
.home-video-player { width: 100%; max-height: 540px; display: block; }
.home-video-cta { margin-top: 1.5rem; }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.category-tile { position: relative; overflow: hidden; border-radius: 4px; text-align: center; }
.category-tile img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.category-tile span { display: block; padding: 0.75rem; background: var(--belk-gray); font-weight: 600; color: var(--belk-dark); }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.product-card { border: 1px solid var(--belk-border); border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s; }
.product-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.product-card a { text-decoration: none; color: inherit; }
.product-card-image { position: relative; }
.product-card-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.sale-badge { position: absolute; top: 8px; left: 8px; background: var(--belk-red); color: #fff; padding: 2px 8px; font-size: 0.75rem; border-radius: 2px; }
.product-card-body { padding: 0.75rem; }
.product-brand { font-size: 0.8rem; color: #666; margin: 0 0 0.25rem; }
.product-title { font-size: 0.95rem; margin: 0 0 0.5rem; font-weight: 500; }
.sale-price { color: var(--belk-red); font-weight: 700; font-size: 1.1rem; }
.list-price { text-decoration: line-through; color: #999; margin-left: 0.5rem; font-size: 0.9rem; }
.product-rating { font-size: 0.85rem; color: #666; }

/* PLP */
.page-header { padding: 1.5rem 0; }
.category-banner { background-size: cover; background-position: center; color: #fff; padding: 3rem 0; margin-bottom: 1rem; }
.category-banner-content h1 { font-size: 2.25rem; margin: 0.5rem 0; }
.category-banner-content .page-description { color: rgba(255,255,255,0.9); max-width: 640px; }
.breadcrumbs { font-size: 0.85rem; color: #666; margin-bottom: 0.5rem; }
.breadcrumbs-light { color: rgba(255,255,255,0.85); }
.breadcrumbs-light a { color: #fff; }
.plp-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; padding-bottom: 2rem; }
.plp-filters { background: var(--belk-gray); padding: 1rem; border-radius: 4px; height: fit-content; }
.filter-group { margin-bottom: 1rem; }
.filter-group label,
.filter-group .filter-label { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.filter-group select { width: 100%; padding: 0.5rem; }
.plp-results-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.plp-results-header .section-title { margin-bottom: 0; }
.campaign-sort { min-width: 220px; margin-bottom: 0; }
.results-count { color: #666; margin-bottom: 1rem; }
.pagination { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; justify-content: center; }
.pagination button { padding: 0.5rem 1rem; cursor: pointer; }

/* PDP */
.pdp { padding-bottom: 2rem; }
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
.pdp-gallery img { width: 100%; border-radius: 4px; margin-bottom: 0.5rem; }
.pdp-main-image { width: 100%; border-radius: 4px; }
.pdp-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--belk-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
}
.pdp-details h1 { font-size: 1.5rem; margin: 0.5rem 0; }
.pdp-description { color: #666; line-height: 1.6; }
.pdp-price { font-size: 1.5rem; font-weight: 700; margin: 1rem 0; }
.variant-selector { margin: 1rem 0; }
.variant-options { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.variant-btn { padding: 0.5rem 1rem; border: 1px solid var(--belk-border); background: #fff; cursor: pointer; border-radius: 4px; }
.variant-btn.active { border-color: var(--belk-blue); background: var(--belk-blue); color: #fff; }
.availability { margin: 1rem 0; }
.out-of-stock { color: var(--belk-red); }
.bopis-badge { display: block; color: var(--belk-blue); font-weight: 600; margin-top: 0.25rem; }
.pdp-actions { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.pdp-actions input[type="number"] { width: 60px; padding: 0.5rem; }
.related-products { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--belk-border); }

/* Campaign */
.campaign-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); gap: 1.5rem; }
.campaign-card { border: 1px solid var(--belk-border); border-radius: 4px; overflow: hidden; }
.campaign-card img { width: 100%; height: 200px; object-fit: cover; }
.campaign-card-body { padding: 1rem; }
.campaign-hero { background-size: cover; background-position: center; color: #fff; padding: 4rem 0; }

/* Footer */
.belk-footer { background: var(--belk-gray); margin-top: 2rem; padding: 2rem 0 0; }
.belk-footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; }
.belk-footer h4 { margin: 0 0 0.75rem; font-size: 0.95rem; }
.belk-footer ul { list-style: none; padding: 0; margin: 0; }
.belk-footer li { margin-bottom: 0.5rem; }
.belk-footer-bottom { background: var(--belk-blue); color: #fff; padding: 1rem 0; margin-top: 2rem; text-align: center; font-size: 0.85rem; }

/* Content */
.content-page { padding: 2rem 0; }
.content-body { line-height: 1.7; }

/* Stores */
.store-card { border: 1px solid var(--belk-border); padding: 1rem; margin-bottom: 1rem; border-radius: 4px; }
.store-badges { margin-top: 0.5rem; }
.badge { background: var(--belk-blue); color: #fff; padding: 2px 8px; border-radius: 2px; font-size: 0.8rem; margin-right: 0.5rem; }

/* Zero results */
.zero-results { text-align: center; padding: 3rem 0; }
.zero-results ul { list-style: none; padding: 0; }

/* Subcategory */
.subcategory-nav { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.subcategory-link { padding: 0.5rem 1rem; background: var(--belk-gray); border-radius: 4px; color: var(--belk-dark); font-weight: 500; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.form-input { width: 100%; max-width: 400px; padding: 0.65rem 0.75rem; border: 1px solid var(--belk-border); border-radius: 4px; font-size: 1rem; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-error { background: #fdecea; color: var(--belk-red); padding: 0.75rem 1rem; border-radius: 4px; margin-bottom: 1rem; }
.cart-added-message { color: var(--belk-blue); font-weight: 600; width: 100%; margin: 0.25rem 0 0; }

/* Cart */
.cart-page { padding: 2rem 0; }
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; margin-top: 1.5rem; }
.cart-item { display: grid; grid-template-columns: 1fr auto auto auto; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--belk-border); }
.cart-item h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.cart-item-info p { margin: 0; color: #666; font-size: 0.9rem; }
.cart-item-qty input { width: 60px; padding: 0.5rem; }
.cart-item-price { font-weight: 700; min-width: 80px; text-align: right; }
.cart-summary { background: var(--belk-gray); padding: 1.5rem; border-radius: 4px; height: fit-content; }
.cart-subtotal { font-size: 1.1rem; }
.cart-note { color: #666; font-size: 0.9rem; }
.cart-checkout-btn { width: 100%; margin-top: 1rem; text-align: center; }
.cart-store-select { margin-top: 1rem; }
.cart-store-select label { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.cart-store-select .form-input { max-width: none; }

.order-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    padding: 1.5rem;
}
.order-success-modal {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.order-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 2rem;
    line-height: 64px;
    font-weight: 700;
}
.order-success-modal h2 { margin: 0 0 1rem; color: var(--belk-dark); }
.order-success-modal p { margin: 0.5rem 0; color: #444; line-height: 1.5; }
.order-success-total { margin: 1.25rem 0 !important; font-size: 1.1rem; }
.order-success-email { color: var(--belk-blue) !important; font-weight: 600; }
.order-success-modal .btn-primary { margin-top: 1.5rem; }
.checkout-success .order-success-email { margin-top: 1rem; color: var(--belk-blue); font-weight: 600; }

/* Checkout */
.checkout-page { padding: 2rem 0; }
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; margin-top: 1.5rem; }
.checkout-panel, .checkout-summary { background: var(--belk-gray); padding: 1.5rem; border-radius: 4px; }
.checkout-panel h2, .checkout-summary h2 { margin: 1.25rem 0 0.75rem; font-size: 1.1rem; }
.checkout-panel h2:first-child { margin-top: 0; }
.fulfillment-option { border: 2px solid var(--belk-border); padding: 1rem; border-radius: 4px; background: #fff; }
.fulfillment-option.selected { border-color: var(--belk-blue); }
.fulfillment-option p { margin: 0.35rem 0 0; color: #666; font-size: 0.9rem; }
.checkout-line { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--belk-border); font-size: 0.95rem; }
.checkout-total { display: flex; justify-content: space-between; padding: 1rem 0 0; margin-top: 0.5rem; font-size: 1.1rem; }
.checkout-place-btn { width: 100%; margin-top: 1rem; text-align: center; }
.checkout-success { max-width: 560px; padding: 2rem 0; }

/* Account */
.account-page { padding: 2rem 0; max-width: 480px; }
.account-note { color: #666; margin-bottom: 1rem; }
.account-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.account-tabs button { flex: 1; padding: 0.65rem 1rem; border: 1px solid var(--belk-border); background: #fff; cursor: pointer; border-radius: 4px; font-weight: 600; }
.account-tabs button.active { background: var(--belk-blue); color: #fff; border-color: var(--belk-blue); }
.account-form { max-width: 400px; }
.account-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.account-link-row { margin: 0.5rem 0 1rem; }
.account-link-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--belk-blue);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}
.belk-user-block { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; }
.belk-user { font-weight: 600; color: #fff; text-decoration: none; }
.belk-user:hover { text-decoration: underline; }
.belk-logout-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}
.belk-logout-btn:hover { background: rgba(255, 255, 255, 0.15); }

@media (min-width: 769px) {
    .belk-header-top .container {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .belk-header-bar {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .belk-header-inner {
        flex: 1;
        min-width: 0;
    }

    .belk-logo {
        flex: 0 0 auto;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 0.75rem; }
    .belk-floating-cart {
        right: 1rem;
        bottom: 1rem;
        width: 3.25rem;
        height: 3.25rem;
    }
    .belk-floating-cart-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    .belk-header-bar { margin-bottom: 0.75rem; }
    .belk-header-inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .belk-logo { font-size: 1.5rem; text-align: left; }
    .belk-nav-toggle { display: inline-flex; }
    .belk-nav {
        display: none;
        border-bottom: none;
    }
    .belk-nav.is-open {
        display: block;
        border-bottom: 1px solid var(--belk-border);
    }
    .belk-search { width: 100%; min-width: 0; }
    .belk-header-actions { justify-content: center; width: 100%; }
    .belk-user-block { align-items: center; }
    .nav-menu {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0 1rem;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-menu::-webkit-scrollbar { display: none; }
    .nav-item { flex: 0 0 auto; }
    .nav-link { font-size: 0.85rem; white-space: nowrap; }
    .nav-chevron--desktop { display: none; }
    .nav-chevron--mobile { display: inline; }
    .nav-submenu-toggle {
        display: inline-flex;
        min-width: 2rem;
        min-height: 2rem;
        touch-action: manipulation;
    }
    .nav-submenu--desktop { display: none !important; }
    .nav-mobile-drawer { display: block; }
    .nav-mobile-submenu {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0.5rem 0 0.75rem;
        border-top: 1px solid var(--belk-border);
        flex-wrap: wrap;
        gap: 0.35rem 1rem;
    }
    .nav-mobile-submenu.is-open { display: flex; }
    .nav-mobile-submenu a {
        display: block;
        padding: 0.35rem 0;
        color: var(--belk-dark);
        font-size: 0.85rem;
        font-weight: 500;
        text-decoration: none;
    }
    .nav-mobile-submenu a:hover { color: var(--belk-blue); }
    .nav-mobile-submenu-heading a {
        font-weight: 700;
        color: var(--belk-blue);
    }
    .nav-item.is-open .nav-submenu-toggle { color: var(--belk-blue); }
    .hero { padding: 2.5rem 0; }
    .hero-content h1 { font-size: 1.75rem; }
    .hero-content p { font-size: 1rem; }
    .section { padding: 1.5rem 0; }
    .section-title { font-size: 1.25rem; }
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .campaign-grid { grid-template-columns: 1fr; }
    .plp-layout, .pdp-layout { grid-template-columns: 1fr; }
    .plp-filters { margin-bottom: 1rem; }
    .pdp-actions { flex-direction: column; align-items: stretch; }
    .pdp-actions input[type="number"] { width: 100%; }
    .pdp-actions .btn-primary, .pdp-actions .btn-secondary { width: 100%; text-align: center; margin: 0; }
    .btn-secondary { margin-left: 0; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 1fr; gap: 0.5rem; }
    .cart-item-price { text-align: left; }
    .cart-store-select .form-input { max-width: none; }
    .order-success-modal { padding: 1.5rem 1rem; margin: 0.5rem; }
    .account-page { padding: 1.5rem 0; max-width: 100%; }
    .account-tabs { flex-direction: column; }
    .account-tabs button { width: 100%; }
    .form-input { max-width: none; }
    .subcategory-nav { gap: 0.5rem; }
    .subcategory-link { font-size: 0.9rem; padding: 0.4rem 0.75rem; }
    .category-banner { padding: 2rem 0; }
    .category-banner-content h1 { font-size: 1.5rem; }
    .belk-footer-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
    .category-grid, .product-grid { grid-template-columns: 1fr; }
    .belk-footer-grid { grid-template-columns: 1fr; }
}
