/* ===== GLOBAL STYLES ===== */
:root {
    --font-body: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    --primary-color: #1a1a2e;
    --primary-light: #f5f5f4;
    --accent-color: #c0392b;
    --blush: #d4a0a0;
    --blush-light: #f5eaea;
    --blush-dark: #b87c7c;
    --text-dark: #111827;
    --text-body: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --border-lighter: #f3f4f6;
    --shadow-xs: 0 1px 2px rgb(0 0 0 / 0.04);
    --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.06);
    --shadow-md: 0 4px 12px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 8px 24px rgb(0 0 0 / 0.1);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: all 0.25s ease;
    --transition-fast: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.25;
}

h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 0.75rem 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white) !important;
}

.navbar-brand {
    font-family: var(--font-display);
    font-style: normal;
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--text-dark) !important;
    letter-spacing: -0.03em;
}

.navbar-brand:hover {
    color: var(--blush-dark) !important;
}

.navbar-nav .nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem !important;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--text-dark) !important;
}

.navbar-nav .nav-link.active {
    color: var(--text-dark) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--blush);
    border-radius: 1px;
}

.nav-search {
    position: relative;
}

.nav-search .form-control {
    background: var(--bg-light);
    border: 1px solid transparent;
    border-radius: 100px;
    padding: 0.4375rem 1rem 0.4375rem 2.25rem;
    font-size: 0.8125rem;
    width: 200px;
    transition: var(--transition);
}

.nav-search .form-control:focus {
    background: var(--bg-white);
    border-color: var(--border-light);
    width: 260px;
    box-shadow: var(--shadow-sm);
}

.nav-search .search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.8125rem;
    pointer-events: none;
}

/* ===== HERO SECTION ===== */
.banner-hero-section {
    background: var(--blush-light);
}

.banner-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    min-height: 40vh;
}

.banner-hero-content {
    flex: 1;
    text-align: left;
}

.banner-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.banner-sub {
    font-size: 0.9375rem;
    color: var(--blush-dark);
    margin: 1rem 0 0;
    font-weight: 400;
    line-height: 1.6;
    max-width: 380px;
}

.banner-scroll-hint {
    margin-top: 1.5rem;
    color: var(--blush);
    font-size: 1.125rem;
    animation: bounce-hint 2s ease infinite;
}

.banner-hero-img {
    flex: 0 0 240px;
}

.banner-hero-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@keyframes bounce-hint {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(5px); opacity: 0.9; }
}

@media (max-width: 768px) {
    .banner-hero {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1.25rem;
        min-height: auto;
    }
    .banner-hero-content {
        text-align: center;
    }
    .banner-hero h1 {
        font-size: 1.75rem;
    }
    .banner-sub {
        font-size: 0.875rem;
        margin: 0.75rem auto 0;
    }
    .banner-hero-img {
        flex: none;
        width: 200px;
    }
    .banner-hero-img img {
        height: 200px;
    }
    .banner-scroll-hint {
        margin-top: 1rem;
    }
}

/* ===== STICKY FILTERS BAR ===== */
.sticky-filters {
    position: sticky;
    top: var(--navbar-h, 56px);
    z-index: 1010;
    background: var(--bg-white);
}

.site-banner {
    background: var(--blush-light);
    text-align: center;
    border-bottom: 1px solid var(--blush);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.sticky-filters.is-stuck {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sticky-filters.is-stuck .site-banner {
    max-height: 50px;
}

.banner-compact {
    padding: 0.5rem 0;
}

.banner-compact span {
    font-size: 0.8125rem;
    color: var(--blush-dark);
    font-weight: 500;
}

@media (max-width: 480px) {
    .banner-compact span {
        font-size: 0.6875rem;
    }
}

/* When there's no hero (filters active), always show compact bar */
.sticky-filters.no-hero .site-banner {
    max-height: 50px;
}

/* ===== QUICK CHIPS ===== */
.quick-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-body);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 0.375rem 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
}

.quick-chip.active {
    background: var(--blush);
    border-color: var(--blush);
    color: white;
}

.quick-chip:hover {
    border-color: var(--blush-dark);
    color: var(--blush-dark);
}

.quick-chip i {
    font-size: 0.6875rem;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white);
    position: relative;
}

.filter-row {
    display: flex;
    gap: 0.375rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .filter-row {
        gap: 0.25rem;
    }
    .filter-dropdown-btn,
    .quick-chip {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
}

.filter-bar .form-select {
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-body);
    padding: 0.4375rem 2rem 0.4375rem 0.875rem;
    transition: var(--transition-fast);
    background-color: var(--bg-white);
    cursor: pointer;
    width: auto;
}

.filter-bar .form-control {
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--text-body);
    padding: 0.4375rem 0.875rem;
    transition: var(--transition-fast);
    width: 85px;
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.08);
}

/* Filter dropdown trigger buttons (Abercrombie-style pill triggers) */
.filter-dropdown {
    position: relative;
}

.filter-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 0.4375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.filter-dropdown-btn:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.filter-dropdown.open .filter-dropdown-btn,
.filter-dropdown-btn.has-selection {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.filter-dropdown-btn .dd-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1;
}

.filter-dropdown-btn.has-selection .dd-count {
    background: rgba(255,255,255,0.3);
}

.filter-dropdown-btn i.fa-chevron-down {
    font-size: 0.5rem;
    transition: transform 0.2s ease;
}

.filter-dropdown.open .filter-dropdown-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown panels */
.filter-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    min-width: 200px;
    max-height: 70vh;
    flex-direction: column;
}

.filter-dropdown.open .filter-dropdown-panel {
    display: flex;
}

.filter-panel-header {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0.875rem;
    border-bottom: 1px solid var(--border-lighter);
    flex-shrink: 0;
}

.panel-action {
    background: none;
    border: none;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--blush-dark);
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.02em;
}

.panel-action:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.filter-panel-list {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding: 0.25rem 0;
    -webkit-overflow-scrolling: touch;
}

/* Retailer checkbox items */
.filter-check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    cursor: pointer;
    transition: background 0.1s ease;
    font-size: 0.8125rem;
    color: var(--text-body);
}

.filter-check-item:hover {
    background: var(--bg-light);
}

.filter-check-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1.5px solid var(--border-light);
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.check-label {
    flex: 1;
    min-width: 0;
}

/* Size grid items */
.filter-panel-sizes {
    min-width: 320px;
}

.size-group-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.625rem 0.875rem 0.25rem;
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3125rem;
    padding: 0.25rem 0.875rem 0.5rem;
}

.size-check-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    padding: 0.3125rem 0.5rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.size-check-item input[type="checkbox"] {
    display: none;
}

.size-check-item:hover {
    border-color: var(--text-dark);
}

.size-check-item.checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Panel footer with Apply */
.filter-panel-footer {
    padding: 0.5rem 0.875rem 0.625rem;
    border-top: 1px solid var(--border-lighter);
    flex-shrink: 0;
}

.panel-apply-btn {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.panel-apply-btn:hover {
    background: var(--blush-dark);
}

/* Mobile bottom-sheet for filter panels */
.filter-dropdown-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 299;
}

@media (max-width: 640px) {
    .filter-dropdown.open .filter-dropdown-overlay {
        display: block;
    }

    .filter-dropdown-panel {
        position: fixed !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 75vh;
        width: 100%;
        min-width: 0 !important;
        z-index: 300;
        animation: slideUp 0.25s ease;
    }

    .filter-panel-sizes {
        min-width: 0;
    }

    .filter-panel-price {
        min-width: 0;
    }

    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    .filter-panel-header {
        padding: 0.875rem 1rem;
    }

    .filter-panel-list {
        padding: 0.25rem 0;
    }

    .filter-check-item {
        padding: 0.5rem 1rem;
    }

    .size-grid {
        padding: 0.25rem 1rem 0.5rem;
    }

    .size-group-label {
        padding: 0.625rem 1rem 0.25rem;
    }

    .filter-panel-footer {
        padding: 0.625rem 1rem 0.875rem;
        padding-bottom: max(0.875rem, env(safe-area-inset-bottom));
    }

    .panel-apply-btn {
        padding: 0.625rem;
        font-size: 0.875rem;
    }

    .filter-panel-price {
        min-width: 0;
        padding: 1rem;
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .price-apply {
        padding: 0.625rem;
        font-size: 0.875rem;
    }
}

/* Price dropdown panel */
.filter-panel-price {
    min-width: 240px;
    padding: 0.875rem;
}

.price-inputs {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.price-field {
    flex: 1;
}

.price-field label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.price-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-fast);
}

.price-input-wrap:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.08);
}

.price-symbol {
    padding: 0 0 0 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    pointer-events: none;
}

.price-input-wrap input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0.375rem 0.5rem;
    font-size: 0.8125rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: transparent;
}

.price-input-wrap input::-webkit-inner-spin-button {
    display: none;
}

.price-dash {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-bottom: 0.375rem;
}

.price-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3125rem;
    margin-top: 0.75rem;
}

.price-preset {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
}

.price-preset:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.price-apply {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.4375rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.price-apply:hover {
    background: var(--text-dark);
}

/* Applied filter pills */
.applied-filters {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.applied-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--blush-dark);
    background: var(--blush-light);
    border: 1px solid var(--blush);
    border-radius: 100px;
    padding: 0.1875rem 0.625rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.applied-pill .pill-x {
    font-size: 0.625rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.applied-pill:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.applied-pill:hover .pill-x {
    color: var(--accent-color);
}

/* ===== RESULTS HEADER ===== */
.results-header {
    padding: 0.875rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.results-header h2 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}

.results-count {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.375rem;
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.results-controls .form-select {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 0.75rem;
    padding: 0.3125rem 1.75rem 0.3125rem 0.625rem;
    color: var(--text-body);
}

.per-page-select {
    opacity: 0.5;
    transition: var(--transition-fast);
}

.per-page-select:hover,
.per-page-select:focus-within {
    opacity: 1;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    border: none;
    border-radius: 0;
    transition: box-shadow 0.25s ease;
    overflow: visible;
    background: transparent;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-light);
    aspect-ratio: 3/4;
}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image {
    opacity: 0.97;
}

.main-product-image {
    cursor: pointer;
}

.additional-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.additional-image.active {
    opacity: 1;
}

.image-indicators {
    display: flex;
    gap: 4px;
    z-index: 3;
}

.image-indicators .indicator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.image-indicators .indicator.active {
    background: white;
    transform: scale(1.4);
}

/* Image arrow navigation */
.img-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.88);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.15s ease;
    padding: 0;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.product-image-container:hover .img-arrow {
    opacity: 1;
}

.img-arrow:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.img-arrow-prev { left: 6px; }
.img-arrow-next { right: 6px; }

/* Sale badge */
.sale-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--accent-color);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.1875rem 0.5rem;
    border-radius: 2px;
    letter-spacing: 0.03em;
    z-index: 2;
}

/* Product info */
.product-info {
    padding: 0.5rem 0.125rem;
}

.product-info .product-brand {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.125rem;
}

.product-info .product-name {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.product-info .product-price {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.product-info .product-price .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.375rem;
}

.product-info .product-price .sale-price {
    color: var(--accent-color);
}

/* ===== PRODUCT META (rating, colors, sizes, badges) ===== */
.product-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.1875rem;
    min-height: 1rem;
}

.product-rating {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.product-rating .fa-star {
    color: #f59e0b;
    font-size: 0.625rem;
    margin-right: 0.0625rem;
}

.product-rating .review-count {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.625rem;
}

.color-count {
    font-size: 0.625rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.size-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1875rem;
    margin-top: 0.25rem;
}

.size-chip {
    font-size: 0.5625rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 0 0.3125rem;
    line-height: 1.5;
    white-space: nowrap;
}

.size-chip-more {
    color: var(--text-muted);
    border-style: dashed;
}

.product-badges {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 2;
}

.product-badge {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    padding: 0.125rem 0.375rem;
    border-radius: 2px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--shadow-xs);
}

/* ===== PAGINATION ===== */
.pagination-wrapper {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.pagination .page-link {
    border: none;
    color: var(--text-body);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    margin: 0 0.0625rem;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.pagination .page-link:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 2px var(--blush-light);
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    background: transparent;
}

/* ===== PRODUCT DETAIL ===== */
.breadcrumb {
    font-size: 0.8125rem;
    padding: 1rem 0;
    margin-bottom: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--text-dark);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* Vertical thumbnail gallery */
.product-gallery-wrap {
    display: flex;
    gap: 0.75rem;
}

.thumbnail-strip {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 72px;
}

.thumbnail-strip img {
    width: 72px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.thumbnail-strip img:hover,
.thumbnail-strip img.active {
    border-color: var(--text-dark);
    opacity: 1;
}

.main-image-wrap {
    flex: 1;
    min-width: 0;
}

.main-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* Detail info panel */
.detail-source {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.detail-brand {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}

.detail-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.detail-price {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.detail-price .sale-price {
    color: var(--accent-color);
}

.detail-price .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.75rem;
    font-size: 1rem;
}

.detail-price .savings-badge {
    display: inline-block;
    background: #fef2f2;
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    margin-left: 0.75rem;
}

.detail-meta {
    font-size: 0.875rem;
    color: var(--text-body);
    margin-bottom: 0.75rem;
}

.detail-meta label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.detail-availability {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-retailer {
    display: block;
    width: 100%;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-retailer:hover {
    background: var(--primary-color);
    color: white;
}

.btn-share {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--text-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    margin-top: 0.5rem;
}

.btn-share:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

/* Related products */
.related-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.related-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a2e !important;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

footer h6 {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

footer .footer-brand {
    font-family: var(--font-display);
    font-style: normal;
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.625rem;
}

footer .footer-desc {
    font-size: 0.8125rem;
    color: #9ca3af;
    line-height: 1.7;
    max-width: 280px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.375rem;
}

footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: var(--transition-fast);
}

footer ul li a:hover {
    color: white;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}

/* ===== NO RESULTS ===== */
.no-results {
    text-align: center;
    padding: 5rem 0;
}

.no-results i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.no-results p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.no-results-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: var(--transition);
}

.no-results-btn:hover {
    background: var(--blush-dark);
    color: white;
    box-shadow: var(--shadow-md);
}

/* ===== FORM ELEMENTS ===== */
.form-select,
.form-control {
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
    font-size: 0.8125rem;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.08);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--text-dark);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.8125rem;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-color);
}

/* ===== BADGES ===== */
.badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.375rem 0.625rem;
    border-radius: 2px;
    letter-spacing: 0.02em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .product-gallery-wrap {
        flex-direction: column;
    }

    .thumbnail-strip {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        order: 2;
    }

    .thumbnail-strip img {
        width: 60px;
        height: 75px;
    }

    .main-image-wrap {
        order: 1;
    }
}

@media (max-width: 768px) {
    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-brand {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 576px) {
    .detail-name {
        font-size: 1.375rem;
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-dark);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* ===== FOCUS STATES ===== */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== ADD TO LIST BUTTON ===== */
.product-info-header {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.product-info-link {
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.product-info-link:hover .product-name {
    color: var(--blush-dark);
}

.add-to-list-btn {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--blush);
    background: var(--blush-light);
    color: var(--blush-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.6875rem;
    margin-top: 0.125rem;
    box-shadow: 0 1px 4px rgba(196,145,123,0.18);
}

.add-to-list-btn:hover {
    background: var(--blush);
    border-color: var(--blush);
    color: white;
    transform: scale(1.1);
}

.add-to-list-btn.in-list {
    background: var(--blush);
    border-color: var(--blush);
    color: white;
}

.add-to-list-btn.in-list:hover {
    background: var(--blush-dark);
    border-color: var(--blush-dark);
}

/* ===== NAVBAR RIGHT (mobile) ===== */
.navbar-right-mobile {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

@media (min-width: 992px) {
    .navbar-right-mobile .nav-list-icon-mobile {
        display: none;
    }
}

/* ===== NAVBAR LIST ICON ===== */
.nav-list-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-body);
    text-decoration: none;
    font-size: 1.0625rem;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.nav-list-icon-desktop {
    display: none;
    margin-left: 0.75rem;
}

@media (min-width: 992px) {
    .nav-list-icon-desktop {
        display: flex;
    }
}

.nav-list-icon:hover {
    color: var(--blush-dark);
}

.nav-list-badge {
    position: absolute;
    top: 0;
    right: -2px;
    background: var(--blush);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 4px;
}

/* ===== MY LIST PAGE ===== */
.list-empty {
    text-align: center;
    padding: 4rem 1rem;
}

.list-empty i {
    font-size: 2.5rem;
    color: var(--blush);
    margin-bottom: 1rem;
}

.list-empty h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.list-empty p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.list-empty-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.list-empty-btn:hover {
    background: var(--blush-dark);
    color: white;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.list-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.list-count {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 1rem;
}

.list-hint {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0.25rem 0 0;
}

.list-hint i {
    font-size: 0.6875rem;
    margin-right: 0.25rem;
}

.list-header-actions {
    display: flex;
    gap: 0.375rem;
    align-items: center;
}

.list-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.875rem;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    background: var(--bg-white);
    color: var(--text-body);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.list-view-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.list-view-btn:hover:not(.active) {
    border-color: var(--text-dark);
}

.list-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.875rem;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    background: var(--bg-white);
    color: var(--text-light);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.list-clear-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Retailer groups */
.retailer-group {
    margin-bottom: 1.5rem;
}

.retailer-group-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-lighter);
}

.retailer-group-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.retailer-group-meta {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.list-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-top: 2px solid var(--text-dark);
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* ===== FITTING ROOM CTA ===== */
.fitting-room-cta {
    text-align: center;
    padding: 1.25rem 0 1.5rem;
}

.fitting-room-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--blush);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 0.875rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 12px rgba(212,160,160,0.3);
}

.fitting-room-btn:hover {
    background: var(--blush-dark);
    box-shadow: 0 4px 16px rgba(212,160,160,0.4);
    transform: translateY(-1px);
}

.fitting-room-btn i {
    font-size: 1rem;
}

.fitting-room-sub {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0.625rem 0 0;
}

/* ===== REVIEW MODE ===== */
#reviewView {
    display: flex;
    flex-direction: column;
}

.review-progress {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.25rem 0;
    flex-shrink: 0;
}

.review-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
    min-height: 0;
}

.review-image-area {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0;
}

.review-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
}

.review-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    color: var(--text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.review-arrow:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.review-arrow-prev { left: 0.75rem; }
.review-arrow-next { right: 0.75rem; }

.review-info {
    text-align: center;
    flex-shrink: 0;
    padding: 0.5rem 0 0.25rem;
}

.review-brand {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.125rem;
}

.review-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-price {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.review-price .sale-price { color: var(--accent-color); }
.review-price .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.375rem;
}

.review-shop-link {
    font-size: 0.75rem;
    color: var(--blush-dark);
    text-decoration: none;
}

.review-shop-link:hover {
    text-decoration: underline;
}

.review-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.625rem 0 0.5rem;
}

.review-btn {
    flex: 1;
    max-width: 160px;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.review-btn-keep {
    background: var(--blush);
    color: white;
}

.review-btn-keep:hover {
    background: var(--blush-dark);
}

.review-btn-remove {
    background: var(--bg-light);
    color: var(--text-body);
    border: 1px solid var(--border-light);
}

.review-btn-remove:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.review-key-hints {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    padding-top: 0.375rem;
    flex-shrink: 0;
}

.review-key-hints span {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.review-key-hints kbd {
    display: inline-block;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 3px;
    padding: 0 0.3rem;
    font-family: inherit;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-body);
    min-width: 1.1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .review-key-hints {
        display: none;
    }
}

/* Review done */
.review-done-msg {
    text-align: center;
    padding: 4rem 1rem;
}

.review-done-msg i {
    font-size: 2.5rem;
    color: var(--blush);
    margin-bottom: 1rem;
    display: block;
}

.review-done-msg h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.review-done-msg p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.review-done-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--blush);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    border: none;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.review-done-btn:hover {
    background: var(--blush-dark);
}

@media (max-width: 768px) {
    .list-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    .review-card {
        max-width: 100%;
    }
    .fitting-room-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ===== EMAIL LIST SECTION ===== */
.email-list-section {
    margin-bottom: 1.5rem;
}

.email-list-bottom {
    margin-top: 2rem;
}

.email-list-form {
    background: var(--blush-light);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.email-list-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.email-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.email-input-icon {
    position: absolute;
    left: 0.875rem;
    color: var(--blush);
    font-size: 0.875rem;
    pointer-events: none;
}

.email-input {
    width: 100%;
    padding: 0.625rem 0.75rem 0.625rem 2.375rem;
    border: 1.5px solid #e0d5d0;
    border-radius: 100px;
    font-size: 0.875rem;
    background: white;
    color: var(--text-body);
    outline: none;
    transition: border-color 0.2s;
}

.email-input:focus {
    border-color: var(--blush);
}

.email-input::placeholder {
    color: #b5a9a4;
}

.email-send-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0 1.25rem;
    background: var(--blush);
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.email-send-btn:hover {
    background: var(--blush-dark);
}

.email-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.email-optin-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.625rem;
    font-size: 0.75rem;
    color: var(--text-light);
    cursor: pointer;
    user-select: none;
}

.email-optin-label input[type="checkbox"] {
    accent-color: var(--blush);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.email-feedback {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0;
}

.email-feedback-ok {
    color: #2d7d46;
}

.email-feedback-error {
    color: var(--accent-color);
}

@media (max-width: 480px) {
    .email-list-form {
        padding: 0.875rem 1rem;
    }
    .email-send-label {
        display: none;
    }
    .email-send-btn {
        padding: 0 0.875rem;
    }
}

/* ===== SEO PAGES ===== */
.seo-breadcrumbs {
    padding: 0.625rem 0 0;
    font-size: 0.8125rem;
    color: var(--text-light);
}
.seo-breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
}
.seo-breadcrumbs a:hover {
    color: var(--blush-dark);
    text-decoration: underline;
}
.seo-breadcrumbs .bc-sep {
    margin: 0 0.375rem;
    opacity: 0.5;
}
.seo-intro {
    padding: 0.75rem 0 0.5rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 720px;
}
.seo-faq {
    padding: 1.5rem 0;
    max-width: 720px;
}
.seo-faq h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.seo-faq-item {
    margin-bottom: 1rem;
}
.seo-faq-item dt {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}
.seo-faq-item dd {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}
.seo-related {
    padding: 1rem 0 0.5rem;
}
.seo-related h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
}
.seo-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.seo-related-links a {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s ease;
}
.seo-related-links a:hover {
    border-color: var(--blush);
    color: var(--blush-dark);
    background: var(--blush-light);
}

/* Footer popular searches */
.footer-popular-searches {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-popular-searches h6 {
    margin-bottom: 0.75rem;
}
.popular-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.popular-links a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.15s ease;
}
.popular-links a:hover {
    border-color: var(--blush);
    color: #fff;
    background: rgba(196,145,123,0.2);
}

/* ===== LOADING ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}
