:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #F4E4B8;
    --charcoal: #2C2C2C;
    --charcoal-light: #3D3D3D;
    --cream: #FAF8F3;
    --text-primary: #1A1A1A;
    --text-secondary: #6C6C6C;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    background-color: var(--cream);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* Header Styles */
.luxury-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
}

.showroom-text {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    display: block;
    margin-top: -8px;
    color: var(--gold-light);
}

.text-gold {
    color: var(--gold) !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Search and Filter Bar */
.search-filter-bar {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.search-input {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    padding-left: 2.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--cream);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background-color: white;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.search-clear-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear-btn:hover {
    color: var(--gold-dark);
    transform: translateY(-50%) scale(1.1);
}

.filter-btn {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.sort-select {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Product Grid */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card-link:hover .product-card,
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--gold-light);
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.product-card-link:hover .product-image,
.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* StyleBar badges - positioned on left side, stacking vertically */
.product-badge.stylebar-badge {
    background: #1a365d;
    top: 12px;
    right: auto;
    left: 12px;
}

.product-badge.stylebar-badge:nth-of-type(2) {
    top: 42px;
}

.product-badge.stylebar-badge:nth-of-type(3) {
    top: 72px;
}

/* Specific styleBar colors */
.product-badge.stylebar-nyvault {
    background: #0d6efd;
}

.product-badge.stylebar-show-special,
.product-badge.stylebar-showspecial {
    background: #b91c1c;
}

/* Detail page stylebar badges */
.product-badge-detail.stylebar-badge-detail {
    background: #1a365d;
    top: 20px;
    right: auto;
    left: 20px;
}

.product-badge-detail.stylebar-badge-detail:nth-of-type(2) {
    top: 55px;
}

.product-badge-detail.stylebar-badge-detail:nth-of-type(3) {
    top: 90px;
}

.product-badge-detail.stylebar-nyvault {
    background: #0d6efd;
}

.product-badge-detail.stylebar-show-special,
.product-badge-detail.stylebar-showspecial {
    background: #b91c1c;
}

.product-details {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-sku {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.product-tag {
    background: var(--cream);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.06);
}

.product-tag.nyvault-tag {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.product-price .list-price {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 400;
}

.product-price .sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.view-btn {
    background: var(--charcoal);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateX(4px);
}

/* Selected Filters Display */
.selected-filters {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.selected-filters-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-light);
    color: var(--charcoal);
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.filter-chip:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.filter-chip i {
    font-size: 1.1rem;
    font-weight: bold;
}

.clear-all-filters {
    color: var(--text-secondary);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.clear-all-filters:hover {
    color: var(--gold-dark);
}

/* Result Count */
.result-count {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Filter Sidebar (for desktop) */
.filter-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
}

.filter-sidebar::-webkit-scrollbar {
    width: 8px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 10px;
    margin: 10px 0;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Sticky filters sidebar */
.filters-sidebar {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-right: 1rem;
}

.filters-sidebar::-webkit-scrollbar {
    width: 8px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Facet search box */
.facet-search-box {
    margin-bottom: 0.75rem;
}

.facet-search-box input {
    font-size: 0.875rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
}

/* Filter options with scrollbar */
.filter-options {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.filter-options::-webkit-scrollbar {
    width: 6px;
}

.filter-options::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.filter-options::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 10px;
}

.filter-options::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.filter-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.facet-search {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    background-color: var(--cream);
    transition: all 0.3s ease;
}

.facet-search:focus {
    outline: none;
    border-color: var(--gold);
    background-color: white;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.filter-options-container {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

.filter-options-container::-webkit-scrollbar {
    width: 6px;
}

.filter-options-container::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 10px;
}

.filter-options-container::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.filter-options-container::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    transition: opacity 0.2s ease;
}

.filter-option.hidden {
    display: none;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.filter-option label {
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0;
    user-select: none;
}

/* Hierarchical Category Styles */
.category-group-header {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--gold-light);
    color: var(--text-primary);
    font-size: 0.85rem;
}

.category-group-header:first-child {
    margin-top: 0;
}

.main-group-header {
    font-size: 0.9rem;
    color: var(--gold-dark);
    border-bottom: 2px solid var(--gold);
}

.sub-group-header {
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--gold-light);
    margin-left: 0.5rem;
}

.sub-group-item {
    margin-left: 1.5rem;
    position: relative;
}

.sub-group-item::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
}

.main-group-item {
    font-weight: 500;
}

/* Footer */
.luxury-footer {
    background: white;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
    .brand-text {
        font-size: 1.25rem;
    }

    .showroom-text {
        font-size: 0.65rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.25rem;
    }

    .search-filter-bar {
        padding: 1rem !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Product Detail Page */
.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.back-link:hover {
    color: var(--gold);
}

.product-detail-image-container {
    position: relative;
}

.product-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-detail-image:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-detail-image:hover .zoom-hint {
    opacity: 1;
}

.zoom-hint i {
    font-size: 1.1rem;
}

.product-badge-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Image Viewer Modal - Mobile First */
.image-viewer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    touch-action: none;
}

.image-viewer-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-viewer-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: none;
}

.viewer-image {
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.1s ease-out;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
}

.close-viewer {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.close-viewer:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.zoom-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10000;
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.zoom-level {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

/* Mobile Optimizations for Image Viewer */
@media (max-width: 767.98px) {
    .zoom-hint span {
        display: none;
    }

    .zoom-hint i {
        font-size: 1.5rem;
    }

    .close-viewer {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .zoom-controls {
        bottom: 20px;
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }

    .zoom-btn {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .zoom-level {
        font-size: 0.9rem;
        min-width: 50px;
    }
}

.product-info {
    padding: 1rem 0;
}

.product-meta {
    display: flex;
    align-items: center;
}

.category-badge {
    background: var(--cream);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sku-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.collection-text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.price-section {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.product-detail-list-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 0.75rem;
}

.product-detail-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-left: 0.75rem;
    vertical-align: middle;
}

.price-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.quick-specs {
    padding: 1.5rem 0;
}

.spec-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.spec-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.spec-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
}

.btn-share {
    flex: 1;
    background: var(--charcoal);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-share:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-favorite {
    background: white;
    color: var(--text-primary);
    border: 2px solid rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
}

.specifications-section {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label-full {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value-full {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.features-section {
    background: var(--cream);
    border-radius: 12px;
    padding: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Mobile Optimizations for Detail Page */
@media (max-width: 991.98px) {
    .product-detail-title {
        font-size: 2rem;
    }

    .product-detail-price {
        font-size: 2rem;
    }

    .specifications-section {
        padding: 1.5rem;
    }

    .features-section {
        padding: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-favorite {
        order: -1;
    }
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f0f0f0 4%, #e8e8e8 25%, #f0f0f0 36%);
    background-size: 1000px 100%;
}

/* Mobile Filter Toggle Button - Sticky at bottom */
.filter-toggle-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1030;
    padding: 0.75rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.filter-toggle-btn:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transform: translateX(-50%) translateY(-2px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1040;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold-dark);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* Adjust scroll to top position when mobile filter button is visible */
@media (max-width: 991.98px) {
    .scroll-to-top {
        bottom: 90px;
    }
}

/* Rep Landing Page Styles */
.rep-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    color: white;
}

.rep-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
}

.rep-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--charcoal-light);
    border: 4px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
}

.rep-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.rep-title {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.rep-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.rep-contact-item {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.rep-contact-item:hover {
    color: var(--gold);
}

.rep-bio {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 576px) {
    .rep-photo,
    .rep-photo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .rep-name {
        font-size: 1.75rem;
    }

    .rep-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   CART (Shopping Cart) Styles
   ============================================ */

/* Cart Count Badge */
.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    background: var(--gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 0 4px;
    margin-left: 0.5rem;
}

/* Cart Panel Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: white;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    background: var(--cream);
}

.cart-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.cart-close:hover {
    color: var(--text-primary);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f5f5;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-sku {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    margin-top: 0.25rem;
}

.cart-item-price .list-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.cart-item-price .sale-price {
    font-weight: 600;
    color: var(--gold);
    font-size: 1rem;
}

.cart-item-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: #dc3545;
}

/* Tray Quantity Controls */
.tray-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--charcoal);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    padding: 0;
}

.qty-btn:hover {
    background: var(--charcoal);
    color: white;
}

.qty-minus:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.qty-value {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    font-size: 0.9rem;
}

/* Cart Footer */
.cart-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    background: var(--cream);
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-summary-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-summary-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--gold);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cart-checkout-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.cart-checkout-btn:active {
    transform: translateY(0);
}

/* Cart/Tray Notification */
.cart-notification,
.tray-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1060;
}

.cart-notification.show,
.tray-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cart-notification i,
.tray-notification i {
    color: #4caf50;
    font-size: 1.25rem;
}

.tray-notification.error i {
    color: #f44336;
}

/* Add to Cart Button - gold, same size as Share with Collector */
.btn-add-to-cart {
    flex: 1;
    background: var(--gold);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: var(--gold-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Mobile Cart Panel */
@media (max-width: 576px) {
    .cart-panel {
        width: 100vw;
        right: -100vw;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-notification {
        bottom: 80px;
        width: calc(100% - 2rem);
        max-width: 400px;
    }
}

/* ============================================
   WISHLIST Panel Styles
   ============================================ */

.wishlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wishlist-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: white;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.wishlist-panel.active {
    right: 0;
}

.wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    background: var(--cream);
}

.wishlist-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.wishlist-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.wishlist-close:hover {
    color: var(--text-primary);
}

.wishlist-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
}

.wishlist-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--gold);
}

.wishlist-empty p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.wishlist-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    color: var(--text-muted);
}

/* Wishlist Item */
.wishlist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
    align-items: center;
}

.wishlist-item:last-child {
    border-bottom: none;
}

.wishlist-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f5f5;
}

.wishlist-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wishlist-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wishlist-item-sku {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wishlist-item-price {
    margin-top: 0.25rem;
}

.wishlist-item-price .list-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.wishlist-item-price .sale-price {
    font-weight: 600;
    color: var(--gold);
    font-size: 1rem;
}

.wishlist-item-actions {
    display: flex;
    gap: 0.5rem;
}

.wishlist-add-to-cart,
.wishlist-item-remove {
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.wishlist-add-to-cart:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.wishlist-item-remove:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.wishlist-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    background: var(--cream);
}

.wishlist-summary {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Wishlist Notification */
.wishlist-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wishlist-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.wishlist-notification i {
    color: var(--gold);
    font-size: 1.25rem;
}

.wishlist-notification.error i {
    color: #dc3545;
}

/* Wishlist Heart Button on Product Cards */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn i {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.wishlist-btn.active i,
.wishlist-btn:hover i {
    color: var(--gold);
}

.wishlist-btn.active i {
    color: #e91e63;
}

/* Favorite button on Product Detail page */
.btn-favorite.active i {
    color: #e91e63;
}

.btn-favorite.active i::before {
    content: "\f415"; /* bi-heart-fill */
}

/* Email Prompt Modal */
.email-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.email-prompt-modal {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    position: relative;
    text-align: center;
}

.email-prompt-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}

.email-prompt-close:hover {
    color: var(--text-primary);
}

.email-prompt-modal h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.email-prompt-modal p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.email-prompt-modal input[type="email"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.email-prompt-modal input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-save-email {
    width: 100%;
    background: var(--gold);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save-email:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Wishlist count badge in navbar */
.wishlist-count {
    background: var(--gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

/* Mobile Wishlist Panel */
@media (max-width: 576px) {
    .wishlist-panel {
        width: 100vw;
        right: -100vw;
    }

    .wishlist-item-image {
        width: 60px;
        height: 60px;
    }

    .wishlist-notification {
        bottom: 80px;
        width: calc(100% - 2rem);
        max-width: 400px;
    }

    .email-prompt-modal {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* ============================================
   CHECKOUT Page Styles
   ============================================ */

.checkout-page {
    background: var(--cream);
    min-height: calc(100vh - 200px);
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.checkout-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkout-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--gold-primary, #b8860b);
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f5f5;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.checkout-item-sku {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.checkout-item-price {
    font-weight: 600;
    color: var(--gold);
}

.checkout-totals {
    font-size: 0.95rem;
}

.checkout-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-submit-request {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gold);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-submit-request:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.btn-submit-request:active {
    transform: translateY(0);
}

.btn-submit-request:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Success Modal */
.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 3rem;
    color: #4caf50;
}

.btn-gold {
    background: var(--gold);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: white;
}

/* Store Search */
.store-search-container {
    position: relative;
}

.store-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.store-result-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.store-result-item:last-child {
    border-bottom: none;
}

.store-result-item:hover {
    background: var(--cream);
}

.store-result-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.store-result-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.store-result-empty {
    padding: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.selected-store {
    background: var(--cream);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.selected-store-info {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-clear-store {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.btn-clear-store:hover {
    color: #dc3545;
}

/* Mobile Checkout */
@media (max-width: 576px) {
    .checkout-title {
        font-size: 1.5rem;
    }

    .checkout-card {
        padding: 1rem;
    }

    .checkout-item-image {
        width: 60px;
        height: 60px;
    }
}
