/* ===== FRONTEND - Classic Royal Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
    --royal-dark: #0D0D1A;
    --royal-navy: #1A1A2E;
    --royal-deep: #16213E;
    --royal-blue: #0F3460;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #A88B3A;
    --gold-glow: rgba(201,168,76,0.15);
    --cream: #FAF8F5;
    --cream-dark: #F2EDE8;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-body: #3A3A52;
    --text-muted: #7A7A8A;
    --border: #E8E4DF;
    --success: #2E7D32;
    --danger: #C62828;
    --shadow-sm: 0 2px 8px rgba(13,13,26,0.06);
    --shadow-md: 0 4px 20px rgba(13,13,26,0.1);
    --shadow-lg: 0 8px 40px rgba(13,13,26,0.15);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.2);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--cream);
    line-height: 1.6;
}

/* ===== MOBILE RESPONSIVE ===== */
/* Smartphones (320px and up) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .site-header .container {
        flex-direction: column;
        gap: 8px;
    }
    
    .main-nav {
        flex-direction: column;
        padding: 10px;
    }
    
    .main-nav a {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .hero-section {
        padding: 40px 16px;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .amz-prod-slider {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .amz-prod-item {
        padding: 12px;
    }
    
    .amz-prod-img {
        height: 200px;
    }
    
    .amz-prod-name {
        font-size: 14px;
    }
    
    .amz-prod-price {
        font-size: 16px;
    }
    
    .cart-summary {
        margin: 20px 0;
        padding: 20px;
    }
    
    .checkout-form {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .btn-royal {
        padding: 16px;
        font-size: 16px;
    }
}

/* Tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .amz-prod-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hero-section {
        padding: 60px 24px;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .contact-page {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        flex-direction: row;
        gap: 16px;
    }
}

/* Desktop (769px and up) */
@media (min-width: 769px) {
    .amz-prod-slider {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .hero-section {
        padding: 80px 24px;
        min-height: 500px;
    }
    
    .contact-page {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .amz-prod-slider {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Touch-friendly buttons and inputs */
@media (max-width: 768px) {
    .btn-royal, .btn-primary, .btn-secondary {
        min-height: 48px;
        font-size: 16px;
        padding: 12px 20px;
    }
    
    input, textarea, select {
        min-height: 48px;
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .amz-prod-item {
        min-height: 120px;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 250px;
    }
    
    .main-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Mobile App Install Modal */
.app-install-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.app-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.app-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: var(--royal-navy);
    color: white;
}

.app-modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.app-modal-body {
    padding: 20px;
}

.app-install-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.app-option {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.app-option h4 {
    margin: 0 0 10px 0;
    color: var(--royal-navy);
}

.app-option p {
    margin: 0 0 15px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.app-instructions {
    background: var(--cream);
    padding: 20px;
    border-radius: 8px;
}

.app-instructions h5 {
    margin: 0 0 15px 0;
    color: var(--royal-navy);
}

.app-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.app-instructions li {
    margin-bottom: 8px;
    color: var(--text-body);
}

/* Mobile App Button */
.nav-mobile-app-btn {
    display: inline-flex;
    align-items: center;
    background: var(--royal-dark);
    color: #FFD700 !important;
    border: 1px solid #FFD700;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin-right: 12px;
}

.nav-mobile-app-btn span {
    color: #FFD700 !important;
}

.nav-mobile-app-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    color: var(--royal-dark);
}

/* QR Code Modal */
.qr-code-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.qr-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.qr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: var(--royal-navy);
    color: white;
}

.qr-modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.qr-modal-body {
    padding: 20px;
}

.qr-code-container {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code-container h4 {
    margin: 0 0 10px 0;
    color: var(--royal-navy);
}

.qr-code-container p {
    margin: 0 0 15px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.app-instructions {
    background: var(--cream);
    padding: 20px;
    border-radius: 8px;
}

.app-instructions h5 {
    margin: 0 0 15px 0;
    color: var(--royal-navy);
}

.app-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.app-instructions li {
    margin-bottom: 8px;
    color: var(--text-body);
}

@media (max-width: 768px) {
    .nav-mobile-app-btn {
        display: inline-flex !important;
        margin: 3px;
        font-size: 10px;
        padding: 4px 8px;
        min-height: auto;
    }
    
    /* Footer Mobile - Two Lines for Categories */
    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1px !important;
        grid-template-rows: auto auto !important;
        width: 100% !important;
        max-width: 100% !important;
        row-gap: 1px !important;
        column-gap: 1px !important;
    }
    
    .footer-col {
        margin-bottom: 1px !important;
        width: 100% !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-bottom: 0 !important;
    }
    
    /* Category One - More Space */
    .footer-col:nth-child(3) {
        margin-bottom: 8px !important;
    }
    
    /* Other Categories - Less Space */
    .footer-col:nth-child(4),
    .footer-col:nth-child(5),
    .footer-col:nth-child(6) {
        margin-bottom: 0px !important;
    }
    
    .footer-col h4 {
        font-size: 14px !important;
        margin-bottom: 10px !important;
        word-wrap: break-word;
    }
    
    .footer-col ul {
        padding: 0 8px !important;
        margin: 0 !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }
    
    .footer-col {
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .footer-col li {
        margin-bottom: 5px !important;
        font-size: 12px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-col a {
        font-size: 12px !important;
        line-height: 1.4 !important;
        padding: 2px 10px !important;
        display: inline-block;
    }
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; height: auto; }

/* ===== UTILITY ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.text-gold { color: var(--gold); }
.text-royal { color: var(--royal-navy); }

.royal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

.royal-divider::before, .royal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.royal-divider span {
    color: var(--gold);
    font-size: 18px;
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
    background: var(--royal-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.top-bar {
    background: var(--royal-navy);
    padding: 8px 0;
    font-size: 13px;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--gold); }

.navbar {
    padding: 0;
}

.navbar .container {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
}

.navbar-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-search-row {
    width: 100%;
    margin-top: 10px;
}

/* New three-part navbar layout */
.navbar-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-login-link {
    padding: 8px 16px;
    background: var(--gold);
    color: var(--royal-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
    white-space: nowrap;
}

.nav-login-link:hover {
    background: var(--gold-light);
}

.nav-search-center {
    flex: 1;
    max-width: 850px;
}

.nav-search-center .nav-search-form {
    display: flex;
    width: 100%;
}

.nav-search-center .nav-search-input {
    flex: 1;
    height: 42px;
    padding: 0 16px;
    border: 2px solid var(--gold);
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    background: white;
    width: 100%;
}

.nav-search-center .nav-search-btn {
    height: 42px;
    padding: 0 20px;
    background: var(--gold);
    color: var(--royal-dark);
    border: 2px solid var(--gold);
    border-left: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-search-center .nav-search-btn:hover {
    background: var(--gold-light);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-cart-icon {
    position: relative;
    font-size: 24px;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-cart-icon:hover {
    color: var(--gold-light);
}

/* Mobile/Desktop visibility helpers */
.mobile-cart,
.mobile-login,
.mobile-only {
    display: none;
}

.desktop-login,
.desktop-only {
    display: flex;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .brand-icon {
    font-size: 28px;
    color: var(--gold);
}

.navbar-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.navbar-brand span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #E8E4DF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    color: #E8E4DF;
    font-size: 20px;
    position: relative;
}

.nav-icons a:hover { color: var(--gold); }

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: var(--royal-dark);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Button */
.mobile-menu-btn,
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover,
.mobile-toggle:hover {
    color: var(--gold-light);
    transform: scale(1.1);
}

/* ===== NAV SEARCH ===== */
.nav-search {
    width: 100%;
}

.nav-search-form {
    display: flex;
    width: 100%;
}

.nav-search-input {
    flex: 1;
    height: 40px;
    padding: 0 16px;
    border: 2px solid rgba(201,168,76,0.3);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    background: white;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.nav-search-input:focus {
    outline: none;
    border-color: var(--gold);
}

.nav-search-btn {
    height: 40px;
    padding: 0 20px;
    background: var(--gold);
    color: var(--royal-dark);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-search-btn:hover {
    background: var(--gold-light);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal-navy) 50%, var(--royal-deep) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.hero-slider {
    width: 100%;
    position: relative;
}

.hero-slide {
    display: none;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: slideFade 0.8s ease;
}

.hero-slide.active {
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15,15,30,0.85) 0%, rgba(26,26,46,0.7) 50%, rgba(30,30,60,0.5) 100%);
    z-index: 1;
}

@keyframes slideFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.4);
    color: var(--white);
    border: 1px solid rgba(201,168,76,0.4);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(201,168,76,0.3);
    border-color: var(--gold);
}

.hero-arrow-left { left: 24px; }
.hero-arrow-right { right: 24px; }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 650px;
}

.hero-content .hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--gold-glow);
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h2 .gold-text {
    color: var(--gold);
    font-style: italic;
}

.hero-content p {
    font-size: 18px;
    color: #B8B8CC;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dots .dot.active {
    background: var(--gold);
}

/* ===== BUTTONS ===== */
.btn-royal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: #e74c3c;
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-royal:hover {
    background: #c0392b;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transform: translateY(-2px);
}

.btn-royal:disabled {
    background: #999;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-outline-royal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-royal:hover {
    background: var(--gold);
    color: var(--royal-dark);
    transform: translateY(-2px);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--royal-navy);
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-dark:hover {
    background: var(--royal-deep);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ===== SECTION HEADING ===== */
.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading .overline {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--royal-navy);
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== AMAZON-STYLE CATEGORY CAROUSEL ===== */
.amazon-cat-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.amazon-cat-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.amazon-cat-slider::-webkit-scrollbar {
    display: none;
}

.amazon-cat-item {
    flex: 0 0 auto;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px 12px;
    border-radius: 12px;
    transition: all 0.25s ease;
    scroll-snap-align: start;
    text-decoration: none;
    background: var(--white);
    border: 1px solid transparent;
}

.amazon-cat-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.amazon-cat-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
    margin-bottom: 10px;
    border: 2px solid var(--border);
    transition: border-color 0.25s ease;
}

.amazon-cat-item:hover .amazon-cat-img {
    border-color: var(--gold);
}

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

.amazon-cat-placeholder {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.amazon-cat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--royal-navy);
    line-height: 1.3;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.amazon-cat-item:hover .amazon-cat-name {
    color: var(--gold-dark);
}

.amazon-cat-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 80px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--royal-navy);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.amazon-cat-arrow:hover {
    background: var(--gold);
    color: var(--royal-dark);
    border-color: var(--gold);
}

.amazon-cat-prev {
    left: -23px;
    border-radius: 4px 0 0 4px;
}

.amazon-cat-next {
    right: -23px;
    border-radius: 0 4px 4px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.category-card:hover::before { opacity: 1; }

.category-card .cat-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--royal-navy);
    margin-bottom: 4px;
}

.category-card .cat-count {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== PRODUCT CARDS ===== */
.products-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.products-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.products-slider .product-card {
    flex: 0 0 270px;
    scroll-snap-align: start;
}

.prod-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: var(--white);
    color: var(--royal-navy);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.prod-slider-arrow:hover {
    background: var(--gold);
    color: var(--royal-dark);
    border-color: var(--gold);
}

.prod-slider-prev { left: -20px; }
.prod-slider-next { right: -20px; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Note: Product grid responsive styles are in the comprehensive media queries at the end of this file */

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.product-card .product-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--cream-dark);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card .badge-sale {
    background: var(--danger);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.product-card .badge-new {
    background: var(--royal-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.product-card .badge-featured-front {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--royal-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.product-card .product-actions {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card .product-actions button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card .product-actions button:hover {
    background: var(--gold);
    color: var(--royal-dark);
    border-color: var(--gold);
}

.product-card .product-info {
    padding: 20px;
}

.product-card .product-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--royal-navy);
    margin-bottom: 10px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.product-card h3 a:hover { color: var(--gold-dark); }

.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card .price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--royal-navy);
}

.product-card .price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card .add-to-cart {
    width: 100%;
    margin-top: 14px;
    padding: 10px;
    background: var(--royal-navy);
    color: var(--gold);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.product-card .add-to-cart:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--royal-dark);
}

.product-card .add-to-cart:disabled {
    background: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
}

.product-colors-shop {
    margin-bottom: 12px;
}

.color-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: inherit;
    color: var(--royal-navy);
    background: var(--white);
    cursor: pointer;
}

.color-select:focus {
    outline: none;
    border-color: var(--gold);
}

/* ===== FEATURES STRIP ===== */
.features-strip {
    background: var(--royal-navy);
    padding: 48px 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.features-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    color: #E8E4DF;
}

.feature-item .feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--gold);
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--gold-light);
}

.feature-item p {
    font-size: 13px;
    color: #9A9AAA;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--royal-dark), var(--royal-navy));
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
}

.newsletter-section p {
    color: #B8B8CC;
    margin-bottom: 28px;
    position: relative;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(201,168,76,0.3);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder { color: #888; }

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--royal-dark);
    font-weight: 700;
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--royal-dark);
    padding: 60px 0 0;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col p {
    color: #9A9AAA;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-col .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--royal-dark);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--royal-dark);
    color: var(--gold);
    transform: translateY(-3px);
}

.social-links a svg {
    fill: currentColor;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #9A9AAA;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 20px 0;
    text-align: center;
    color: #6A6A7A;
    font-size: 13px;
}

/* ===== SHOP PAGE ===== */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding: 40px 0;
}

.shop-sidebar .filter-section {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 20px;
}

.shop-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--royal-navy);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.shop-sidebar .filter-list {
    list-style: none;
}

.shop-sidebar .filter-list li {
    margin-bottom: 8px;
}

.shop-sidebar .filter-list a {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-body);
    padding: 4px 0;
}

.shop-sidebar .filter-list a:hover,
.shop-sidebar .filter-list a.active {
    color: var(--gold-dark);
    font-weight: 600;
}

.price-range {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.shop-toolbar .result-count {
    font-size: 14px;
    color: var(--text-muted);
}

.shop-toolbar select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    background: var(--cream);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 0;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery .main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.product-gallery .thumb-list {
    display: flex;
    gap: 10px;
}

.product-gallery .thumb-list img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    background: var(--cream);
}

.product-gallery .thumb-list img:hover,
.product-gallery .thumb-list img.active {
    border-color: var(--gold);
}

.description-below-gallery {
    margin-top: 24px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.description-below-gallery h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--royal-navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.description-below-gallery .description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
}

/* Product Description Full Width */
.product-description-full {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.product-description-full .container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--royal-navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
}

.product-description-full .description-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 100%;
}

/* Product Colors Display */
.product-colors {
    margin: 20px 0;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.product-colors label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--royal-navy);
    margin-bottom: 12px;
}

.color-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-option-select {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 8px;
}

/* Product Variations */
.product-variations {
    margin: 20px 0;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.product-variations label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--royal-navy);
    margin-bottom: 12px;
}

.variation-color-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.variation-color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.variation-color-option:hover {
    border-color: var(--gold);
}

.variation-color-option input[type="radio"] {
    display: none;
}

.variation-color-option input[type="radio"]:checked + .variation-color-img,
.variation-color-option input[type="radio"]:checked + .variation-color-placeholder {
    border-color: var(--royal-navy);
    box-shadow: 0 0 0 3px var(--gold);
}

.variation-color-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
}

.variation-color-placeholder {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    background: var(--white);
    font-size: 12px;
    color: var(--royal-navy);
}

.variation-color-name {
    display: none;
}

.variation-size-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.variation-size-option {
    cursor: pointer;
}

.variation-size-option input[type="radio"] {
    display: none;
}

.variation-size-name {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-size: 13px;
    transition: all 0.3s ease;
}

.variation-size-option:hover .variation-size-name {
    border-color: var(--gold);
}

.variation-size-option input[type="radio"]:checked + .variation-size-name {
    border-color: var(--royal-navy);
    background: var(--royal-navy);
    color: var(--gold);
}

.variation-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.variation-item-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.variation-item-option:hover {
    border-color: var(--gold);
}

.variation-item-option input[type="radio"] {
    display: none;
}

.variation-item-option input[type="radio"]:checked + .variation-item-img,
.variation-item-option input[type="radio"]:checked + .variation-item-placeholder {
    border-color: var(--royal-navy);
    box-shadow: 0 0 0 3px var(--gold);
}

.variation-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
}

.variation-item-placeholder {
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    background: var(--white);
    font-size: 12px;
    color: var(--royal-navy);
}

.variation-item-details {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text);
    text-align: center;
}

.color-option-select input[type="radio"] {
    display: none;
}

.color-option-select input[type="radio"]:checked {
    border-color: var(--gold);
}

.color-option-select:has(input[type="radio"]:checked) {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.color-option-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 10px;
    border: 2px solid #E8E4DF;
}

.color-option-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
    border-radius: var(--radius);
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--royal-navy);
    text-align: center;
    border: 2px solid #E8E4DF;
}

.color-option-name {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--royal-navy);
    text-align: center;
}

.product-info-detail .product-category-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info-detail h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--royal-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-info-detail .price-box {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
}

.product-info-detail .price-box .current {
    font-size: 28px;
    font-weight: 700;
    color: var(--royal-navy);
}

.product-info-detail .price-box .original {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-info-detail .price-box .discount {
    background: #FFEBEE;
    color: var(--danger);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.product-info-detail .stock-status {
    font-size: 14px;
    margin-bottom: 20px;
}

.product-info-detail .stock-status.in-stock { color: var(--success); }
.product-info-detail .stock-status.out-of-stock { color: var(--danger); }

.product-info-detail .description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.product-info-detail .features-list {
    list-style: none;
    margin-bottom: 28px;
}

.product-info-detail .features-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-info-detail .features-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 12px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.quantity-selector button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--cream);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-selector button:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.quantity-selector button:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.quantity-selector button:hover {
    background: var(--gold);
    color: var(--royal-dark);
    border-color: var(--gold);
}

.quantity-selector input {
    width: 60px;
    height: 44px;
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.product-actions-detail {
    display: flex;
    gap: 12px;
}

/* ===== CART PAGE ===== */
.cart-page {
    padding: 40px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.cart-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: var(--cream);
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-table .cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-table .cart-product img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.cart-table .cart-product h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--royal-navy);
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 0;
}

.cart-qty button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: var(--cream);
    cursor: pointer;
    font-size: 14px;
}

.cart-qty button:first-child { border-radius: 4px 0 0 4px; }
.cart-qty button:last-child { border-radius: 0 4px 4px 0; }

.cart-qty input {
    width: 40px;
    height: 32px;
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 14px;
}

.cart-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 18px;
}

.cart-summary {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px;
    margin-top: 24px;
}

.cart-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--royal-navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}

.cart-summary .summary-row.total {
    font-weight: 700;
    font-size: 20px;
    color: var(--royal-navy);
    border-top: 2px solid var(--gold);
    margin-top: 8px;
    padding-top: 16px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

/* ===== CHECKOUT ===== */
.checkout-form {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    padding: 40px 0;
}

.checkout-form .form-section {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px;
    margin-bottom: 24px;
}

.checkout-form .form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--royal-navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--royal-navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 440px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.auth-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--royal-navy);
    text-align: center;
    margin-bottom: 8px;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.auth-card .auth-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-card .auth-link a {
    color: var(--gold-dark);
    font-weight: 600;
}

.auth-card .auth-link a:hover {
    color: var(--gold);
}

/* ===== ALERTS ===== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #E8F5E9;
    color: var(--success);
    border: 1px solid #C8E6C9;
}

.alert-error {
    background: #FFEBEE;
    color: var(--danger);
    border: 1px solid #FFCDD2;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state .empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.empty-state h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--royal-navy);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 40px;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-body);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.pagination .active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--royal-dark);
    border-color: var(--gold);
    font-weight: 700;
}

/* ===== ACCOUNT PAGE ===== */
.account-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    padding: 40px 0;
}

.account-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 20px;
}

.account-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--royal-navy);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.account-sidebar ul {
    list-style: none;
}

.account-sidebar ul li {
    margin-bottom: 6px;
}

.account-sidebar ul a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-body);
    border-radius: var(--radius);
    transition: var(--transition);
}

.account-sidebar ul a:hover,
.account-sidebar ul a.active {
    background: var(--gold-glow);
    color: var(--gold-dark);
    font-weight: 600;
}

.account-content {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px;
}

/* ===== SEARCH PAGE ===== */
.search-hero {
    background: var(--royal-navy);
    padding: 40px 0;
    text-align: center;
}

.search-hero h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 16px;
}

.search-hero .search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.search-hero .search-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(201,168,76,0.3);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 15px;
}

.search-hero .search-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-hero .search-form button {
    padding: 14px 24px;
    background: var(--gold);
    color: var(--royal-dark);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .features-strip .container { grid-template-columns: repeat(2, 1fr); }
    .checkout-form { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--royal-dark);
    z-index: 2000;
    padding: 24px;
    overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav .close-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
    float: right;
}

.mobile-nav ul {
    list-style: none;
    clear: both;
    padding-top: 40px;
}

.mobile-nav ul li {
    margin-bottom: 16px;
}

.mobile-nav ul a {
    color: #E8E4DF;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.mobile-nav ul a:hover { color: var(--gold); }

/* ===== AMAZON-STYLE HOMEPAGE ===== */
.amz-hero {
    position: relative;
    min-height: 400px;
    width: 100%;
}

.amz-hero-slider {
    width: 100%;
    position: relative;
}

.amz-hero-slide {
    display: none;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    animation: amzFade 0.6s ease;
}

.amz-hero-slide.active {
    display: flex;
    align-items: center;
}

.amz-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(19,25,33,0.9) 0%, rgba(35,47,62,0.6) 50%, transparent 100%);
}

.amz-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px 60px;
    max-width: 550px;
    margin-left: max(0px, calc((100% - 1200px) / 2));
}

.amz-hero-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.amz-hero-content p {
    font-size: 17px;
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.6;
}

.amz-hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #febd69;
    color: #131921;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.amz-hero-btn:hover {
    background: #f3a847;
}

.amz-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 90px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amz-hero-arrow:hover { background: rgba(0,0,0,0.8); }
.amz-hero-prev { left: 0; border-radius: 0 4px 4px 0; }
.amz-hero-next { right: 0; border-radius: 4px 0 0 4px; }

.amz-hero-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.amz-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s;
}

.amz-dot.active { background: #fff; }

@keyframes amzFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Amazon Sections */
.amz-section {
    padding: 6px 0;
    background: #e3e6e6;
}

.amz-bg-white {
    background: #fff;
}

/* Category Circle Slider */
.amz-cat-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.amz-cat-slider {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #C9A84C #e3e6e6;
    -ms-overflow-style: auto;
    width: calc(100% - 88px);
    margin: 0 auto;
}

.amz-cat-slider::-webkit-scrollbar { height: 8px; }
.amz-cat-slider::-webkit-scrollbar-track { background: #e3e6e6; border-radius: 4px; }
.amz-cat-slider::-webkit-scrollbar-thumb { background: #C9A84C; border-radius: 4px; }
.amz-cat-slider::-webkit-scrollbar-thumb:hover { background: #A88B3A; }

.amz-cat-item {
    flex: 0 0 auto;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 2px;
    scroll-snap-align: start;
    transition: transform 0.2s;
}

.amz-cat-item:hover { transform: translateY(-4px); }

.amz-cat-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 2px;
    transition: border-color 0.2s;
}

.amz-cat-item:hover .amz-cat-circle { border-color: #febd69; }

.amz-cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amz-cat-icon {
    font-size: 18px;
}

.amz-cat-label {
    font-size: 10px;
    font-weight: 600;
    color: #0f1111;
    max-width: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.amz-cat-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 28px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.amz-cat-arrow:hover {
    background: #febd69;
    color: #131921;
    border-color: #febd69;
}

.amz-cat-prev { left: 0; border-radius: 4px 0 0 4px; }
.amz-cat-next { right: 0; border-radius: 0 4px 4px 0; }

/* Amazon Card */
.amz-card {
    background: #fff;
    padding: 20px;
    border-radius: 0;
}

.amz-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 16px;
    padding-bottom: 0;
}

/* Amazon Product Slider */
.amz-prod-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.amz-prod-slider {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: #C9A84C #e3e6e6;
    -ms-overflow-style: auto;
    width: 100%;
}

.amz-prod-slider::-webkit-scrollbar { height: 8px; }
.amz-prod-slider::-webkit-scrollbar-track { background: #e3e6e6; border-radius: 4px; }
.amz-prod-slider::-webkit-scrollbar-thumb { background: #C9A84C; border-radius: 4px; }
.amz-prod-slider::-webkit-scrollbar-thumb:hover { background: #A88B3A; }

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 10px 0;
}

.amz-prod-item {
    flex: 0 0 auto;
    width: 200px;
    text-decoration: none;
    scroll-snap-align: start;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.amz-prod-slider .amz-prod-item {
    width: 200px;
    min-width: 200px;
}

.featured-products-grid .amz-prod-item {
    text-decoration: none;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    width: auto;
    min-width: 0;
}

.amz-prod-link {
    text-decoration: none;
    display: block;
}

.amz-add-cart-form {
    margin-top: 8px;
    padding: 0 2px;
}

.amz-add-cart-form .btn-royal {
    width: 100%;
}

.amz-prod-item:hover { transform: scale(1.03); }

.amz-prod-img {
    width: 100%;
    height: 250px;
    background: #f7f7f7;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.amz-badge-deal {
    position: absolute;
    bottom: 8px;
    left: 0;
    background: #cc0c39;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px 3px 6px;
    border-radius: 2px 2px 0 0;
}

.amz-badge-new {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #067d62;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
}

.amz-prod-info {
    padding: 8px 2px 0;
}

.amz-prod-name {
    font-size: 16px;
    color: #0f1111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.amz-prod-item:hover .amz-prod-name { color: #c7511f; }

.amz-prod-price {
    margin-top: 6px;
}

.amz-price-now {
    font-size: 20px;
    font-weight: 700;
    color: #0f1111;
}

.amz-price-was {
    font-size: 12px;
    color: #565959;
    text-decoration: line-through;
    margin-left: 6px;
}

.amz-prod-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 80px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.amz-prod-arrow:hover {
    background: #febd69;
    color: #131921;
    border-color: #febd69;
}

.amz-prod-prev { left: -22px; border-radius: 4px 0 0 4px; }
.amz-prod-next { right: -22px; border-radius: 0 4px 4px 0; }

.amz-see-all {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    color: #007185;
    text-decoration: none;
}

.amz-see-all:hover {
    color: #c7511f;
    text-decoration: underline;
}

/* Amazon 4-Column Category Cards Grid */
.amz-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.amz-card-products {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amz-card-row {
    display: flex;
    gap: 8px;
}

.amz-card-prod {
    flex: 1;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.amz-card-prod:hover { background: #f5f5f5; }

.amz-card-prod img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 6px;
}

.amz-card-prod span {
    font-size: 12px;
    color: #0f1111;
    text-align: center;
    line-height: 1.3;
}

.amz-card-prod:hover span { color: #c7511f; }

/* Sign-in Banner */
.amz-signin-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 24px 32px;
    border-radius: 4px;
}

.amz-signin-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 4px;
}

.amz-signin-text p {
    font-size: 13px;
    color: #565959;
}

.amz-signin-text a {
    color: #007185;
    text-decoration: none;
}

.amz-signin-text a:hover { text-decoration: underline; }

.amz-signin-btn {
    display: inline-block;
    padding: 10px 40px;
    background: #febd69;
    color: #131921;
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.amz-signin-btn:hover { background: #f3a847; }

/* Amazon Responsive */
@media (max-width: 1024px) {
    .amz-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .amz-cards-grid { grid-template-columns: 1fr; }
    .amz-hero-content { padding: 40px 20px; max-width: 100%; margin-left: 0; }
    .amz-hero-content h2 { font-size: 28px; }
    .amz-hero-slide { min-height: 400px; }
    .amz-hero { min-height: 400px; }
    .amz-signin-banner { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===== CUSTOMER REVIEWS ===== */
.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-rating-summary .stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 14px;
    color: #565959;
}

.reviews-section {
    padding: 40px 0;
    background: #fff;
}

.reviews-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 24px;
}

.review-form-card {
    background: #f7f7f7;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.review-form-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 16px;
}

.review-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.review-form-group {
    flex: 1;
    margin-bottom: 16px;
}

.review-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0f1111;
    margin-bottom: 6px;
}

.review-form-group input,
.review-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.review-form-group input:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: #febd69;
}

.star-input {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-btn {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s;
    user-select: none;
}

.star-btn:hover,
.star-btn.active {
    color: #f59e0b;
}

.review-success {
    background: #dff0d8;
    color: #3c763d;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-weight: 600;
}

.review-error {
    background: #f2dede;
    color: #a94442;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-weight: 600;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.review-item:last-child {
    border-bottom: none;
}

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

.review-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 1px;
}

.review-author {
    font-weight: 600;
    color: #0f1111;
    font-size: 14px;
}

.review-date {
    font-size: 13px;
    color: #565959;
}

.review-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 6px;
}

.review-comment {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.no-reviews {
    color: #565959;
    font-size: 14px;
    font-style: italic;
}

@media (max-width: 768px) {
    .review-form-row { flex-direction: column; gap: 0; }
}

/* ===== IMAGE ZOOM ===== */
.img-zoom-container {
    position: relative;
    cursor: crosshair;
}

.img-zoom-lens {
    position: absolute;
    border: 2px solid #febd69;
    background: rgba(254,189,105,0.15);
    pointer-events: none;
    display: none;
    z-index: 2;
}

.img-zoom-result {
    position: absolute;
    top: 0;
    left: 105%;
    width: 600px;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-repeat: no-repeat;
    display: none;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .img-zoom-result {
        position: relative;
        left: 0;
        top: 10px;
        width: 100%;
        height: 300px;
    }
}

/* ===== RELATED PRODUCTS SLIDER ===== */
.related-section {
    padding: 60px 0;
    background: var(--cream);
    margin-top: 40px;
}

.related-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--royal-navy);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
}

.related-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    margin: 16px auto 0;
}

.related-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.related-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    scrollbar-width: none;
    width: 100%;
}

.related-slider::-webkit-scrollbar {
    display: none;
}

.related-item {
    flex: 0 0 auto;
    width: 220px;
    text-decoration: none;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--border);
    display: block;
}

.related-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.related-img {
    width: 100%;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--cream-dark);
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-img img {
    transform: scale(1.05);
}

.related-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--royal-navy);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-price {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-dark);
}

.related-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold-dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.related-arrow:hover {
    background: var(--gold);
    color: var(--royal-dark);
    box-shadow: var(--shadow-gold);
}

.related-prev {
    left: -22px;
}

.related-next {
    right: -22px;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile First Approach
   ======================================== */

/* ===== EXTRA LARGE SCREENS (1200px+) ===== */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .hero-content h2 {
        font-size: 56px;
    }
    
    .features-strip .container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== LARGE SCREENS (992px - 1199px) ===== */
@media (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-content h2 {
        font-size: 48px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

/* ===== MEDIUM SCREENS / TABLETS (768px - 991px) ===== */
@media (max-width: 991px) {
    .container {
        padding: 0 16px;
    }
    
    /* Navbar */
    .navbar {
        padding: 0;
    }
    
    .navbar .container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--gold);
        font-size: 24px;
        cursor: pointer;
    }
    
    /* Nav Search - Hide old search */
    .nav-search {
        display: none;
    }
    
    /* New three-part navbar responsive */
    .navbar-main-row {
        gap: 12px;
    }
    
    .nav-left-group {
        gap: 10px;
    }
    
    .nav-login-link {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .nav-search-center {
        max-width: 500px;
    }
    
    .nav-search-center .nav-search-input {
        height: 38px;
        font-size: 13px;
    }
    
    .nav-search-center .nav-search-btn {
        height: 38px;
        padding: 0 14px;
    }
    
    .nav-right-group {
        gap: 12px;
    }
    
    .nav-cart-icon {
        font-size: 22px;
    }
    
    /* Hero */
    .hero-section {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 40px 0;
        max-width: 100%;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .product-card .product-image {
        height: 220px;
    }
    
    /* Featured Products Grid */
    .featured-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .amz-prod-img {
        height: 200px;
    }
    
    /* Best Sellers / Product Slider */
    .amz-prod-slider .amz-prod-item {
        width: 180px;
        min-width: 180px;
    }
    
    .amz-prod-arrow {
        width: 36px;
        height: 60px;
        font-size: 16px;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Features Strip */
    .features-strip .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    /* Shop Layout */
    .shop-layout {
        grid-template-columns: 220px 1fr;
        gap: 20px;
    }
    
    /* Product Detail */
    .product-detail {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .product-gallery .main-image {
        max-height: 400px;
    }
    
    /* Cart */
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Checkout */
    .checkout-form {
        grid-template-columns: 1fr;
    }
    
    /* Account */
    .account-layout {
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Section Padding */
    .section-padding {
        padding: 50px 0;
    }
    
    /* Amazon Hero */
    .amz-hero-content {
        padding: 40px;
        margin-left: 0;
        max-width: 100%;
    }
    
    .amz-hero-content h2 {
        font-size: 32px;
    }
    
    /* Category Slider */
    .amz-cat-item {
        width: 65px;
    }
    
    .amz-cat-circle {
        width: 42px;
        height: 42px;
    }
    
    .amz-cat-label {
        font-size: 9px;
    }
    
    .amz-cat-arrow {
        width: 22px;
        height: 32px;
        font-size: 12px;
    }
}

/* ===== SMALL SCREENS / LARGE PHONES (576px - 767px) ===== */
@media (max-width: 767px) {
    .container {
        padding: 0 12px;
    }
    
    /* Top Bar */
    .top-bar {
        display: none;
    }
    
    /* Navbar */
    .navbar-brand h1 {
        font-size: 16px;
    }
    
    .navbar-brand span {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    
    .navbar-brand .brand-icon {
        font-size: 22px;
    }
    
    .nav-icons a {
        font-size: 18px;
    }
    
    .mobile-menu-btn,
    .mobile-toggle {
        display: block !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    /* Nav Search - Full width on mobile */
    .nav-search {
        width: 100%;
    }
    
    .navbar-search-row {
        margin-top: 8px;
    }
    
    .nav-search-input {
        height: 36px;
        font-size: 13px;
    }
    
    .nav-search-btn {
        height: 36px;
        padding: 0 14px;
    }
    
    /* Banner Slider - Hide on mobile */
    .amz-hero {
        display: none;
    }
    
    /* Mobile navbar - two rows */
    .navbar-main-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-search-center {
        max-width: 100%;
        width: 100%;
        order: 3;
    }
    
    .nav-left-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-right-group {
        display: none;
    }
    
    /* Show mobile elements, hide desktop */
    .mobile-cart,
    .mobile-login,
    .mobile-only {
        display: flex;
    }
    
    .desktop-cart,
    .desktop-login,
    .desktop-only {
        display: none;
    }
    
    /* Hero */
    .hero-section {
        min-height: 350px;
    }
    
    .hero-content {
        padding: 30px 0;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-royal, .btn-outline-royal {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card .product-image {
        height: 180px;
    }
    
    .product-card h3 {
        font-size: 14px;
    }
    
    .product-card .price-current {
        font-size: 16px;
    }
    
    /* Featured Products Grid */
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .amz-prod-img {
        height: 160px;
    }
    
    .amz-prod-name {
        font-size: 13px;
    }
    
    .amz-price-now {
        font-size: 16px;
    }
    
    /* Best Sellers / Product Slider */
    .amz-prod-slider .amz-prod-item {
        width: 160px;
        min-width: 160px;
    }
    
    .amz-prod-arrow {
        width: 32px;
        height: 50px;
        font-size: 14px;
    }
    
    .amz-card-title {
        font-size: 18px;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        padding: 20px 12px;
    }
    
    .category-card .cat-icon {
        font-size: 28px;
    }
    
    .category-card h3 {
        font-size: 14px;
    }
    
    /* Section Heading */
    .section-heading h2 {
        font-size: 24px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    /* Features Strip */
    .features-strip {
        padding: 30px 0;
    }
    
    .features-strip .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .feature-item .feature-icon {
        font-size: 24px;
    }
    
    .feature-item h4 {
        font-size: 14px;
    }
    
    .feature-item p {
        font-size: 12px;
    }
    
    /* Shop Layout */
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        order: 2;
    }
    
    .shop-sidebar .filter-section {
        margin-bottom: 12px;
    }
    
    /* Product Detail */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 0;
    }
    
    .product-gallery {
        position: static;
        order: 1;
    }
    
    .product-gallery .main-image {
        max-height: 300px;
    }
    
    .product-gallery .thumb-list img {
        width: 60px;
        height: 60px;
    }
    
    .product-info-detail {
        order: 2;
    }
    
    .product-info-detail h1 {
        font-size: 22px;
    }
    
    .product-info-detail .price-box .current {
        font-size: 22px;
    }
    
    /* Cart */
    .cart-page {
        padding: 20px 0;
    }
    
    .cart-table {
        font-size: 13px;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 12px 8px;
    }
    
    .cart-table .cart-product {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .cart-table .cart-product img {
        width: 50px;
        height: 50px;
    }
    
    .cart-table .cart-product h4 {
        font-size: 13px;
    }
    
    /* Auth Pages */
    .auth-card {
        width: 100%;
        max-width: 360px;
        padding: 30px 20px;
        margin: 0 12px;
    }
    
    .auth-card h2 {
        font-size: 22px;
    }
    
    /* Account */
    .account-layout {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        order: 2;
    }
    
    .account-content {
        order: 1;
        margin-bottom: 20px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        font-size: 12px;
        padding: 12px 0;
    }
    
    /* Form Rows */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Pagination */
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    /* Search Hero */
    .search-hero h2 {
        font-size: 22px;
    }
    
    .search-hero .search-form {
        flex-direction: column;
        padding: 0 12px;
    }
    
    .search-hero .search-form input,
    .search-hero .search-form button {
        border-radius: var(--radius);
        width: 100%;
    }
    
    .search-hero .search-form input {
        border-right: 2px solid rgba(201,168,76,0.3);
        margin-bottom: 8px;
    }
    
    /* Newsletter */
    .newsletter-section h2 {
        font-size: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 0 12px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: var(--radius);
        width: 100%;
    }
    
    .newsletter-form input {
        border-right: 2px solid rgba(201,168,76,0.3);
        margin-bottom: 8px;
    }
    
    /* Shop Toolbar */
    .shop-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .shop-toolbar form {
        width: 100%;
    }
    
    .shop-toolbar select {
        width: 100%;
    }
    
    /* Amazon Hero */
    .amz-hero {
        min-height: 300px;
    }
    
    .amz-hero-content {
        padding: 30px 16px;
        text-align: center;
    }
    
    .amz-hero-content h2 {
        font-size: 26px;
    }
    
    .amz-hero-content p {
        font-size: 14px;
    }
    
    .amz-hero-arrow {
        width: 36px;
        height: 60px;
        font-size: 18px;
    }
    
    /* Category Slider */
    .amz-cat-item {
        width: 55px;
    }
    
    .amz-cat-circle {
        width: 36px;
        height: 36px;
    }
    
    .amz-cat-label {
        font-size: 8px;
    }
    
    .amz-cat-arrow {
        width: 20px;
        height: 28px;
        font-size: 10px;
    }
    
    /* Mobile Nav */
    .mobile-nav {
        padding: 16px;
    }
    
    .mobile-nav ul {
        padding-top: 30px;
    }
    
    .mobile-nav ul a {
        font-size: 16px;
        padding: 12px 0;
    }
}

/* ===== EXTRA SMALL SCREENS / SMALL PHONES (up to 575px) ===== */
@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }
    
    /* Navbar */
    .navbar .container {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    .navbar-brand h1 {
        font-size: 14px;
    }
    
    .navbar-brand span {
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    .navbar-brand .brand-icon {
        font-size: 18px;
    }
    
    .mobile-menu-btn,
    .mobile-toggle {
        display: block !important;
        font-size: 22px;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .navbar-search-row {
        margin-top: 8px;
    }
    
    .nav-search-input {
        height: 36px;
        font-size: 12px;
    }
    
    .nav-search-btn {
        height: 36px;
        padding: 0 14px;
    }
    
    /* Banner Slider - Hide on mobile */
    .amz-hero {
        display: none;
    }
    
    /* Hero */
    .hero-section {
        min-height: 300px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .hero-content .hero-badge {
        font-size: 10px;
        padding: 4px 12px;
    }
    
    /* Products Grid - 2 columns on small phones */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    /* Featured Products Grid - 2 columns */
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .amz-prod-img {
        height: 140px;
    }
    
    .amz-prod-name {
        font-size: 12px;
    }
    
    .amz-price-now {
        font-size: 14px;
    }
    
    /* Best Sellers / Product Slider */
    .amz-prod-slider .amz-prod-item {
        width: 140px;
        min-width: 140px;
    }
    
    .amz-prod-arrow {
        width: 28px;
        height: 44px;
        font-size: 12px;
    }
    
    .amz-card-title {
        font-size: 16px;
    }
    
    /* Section Heading */
    .section-heading h2 {
        font-size: 20px;
    }
    
    .section-heading .overline {
        font-size: 10px;
    }
    
    .product-card .product-image {
        height: 150px;
    }
    
    .product-card .product-category {
        font-size: 10px;
    }
    
    .product-card h3 {
        font-size: 12px;
    }
    
    .product-card .price-current {
        font-size: 14px;
    }
    
    .product-card .add-to-cart {
        padding: 8px;
        font-size: 12px;
    }
    
    /* Categories - 2 columns */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-card {
        padding: 16px 8px;
    }
    
    /* Features Strip - Single column */
    .features-strip .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Product Detail */
    .product-gallery .main-image {
        max-height: 250px;
    }
    
    .product-info-detail h1 {
        font-size: 20px;
    }
    
    .product-actions-detail {
        flex-direction: column;
    }
    
    .product-actions-detail .btn-royal,
    .product-actions-detail .btn-outline-royal {
        width: 100%;
        justify-content: center;
    }
    
    /* Cart Table */
    .cart-table {
        font-size: 12px;
    }
    
    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
        display: none;
    }
    
    /* Empty State */
    .empty-state {
        padding: 60px 16px;
    }
    
    .empty-state h2 {
        font-size: 20px;
    }
    
    /* Alerts */
    .alert {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    /* Section Padding */
    .section-padding {
        padding: 30px 0;
    }
    
    /* Section Heading */
    .section-heading h2 {
        font-size: 22px;
    }
    
    .section-heading .overline {
        font-size: 11px;
    }
}

/* ===== LANDSCAPE ORIENTATION FIXES ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 250px;
    }
    
    .hero-content {
        padding: 20px 0;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .product-card .product-actions {
        opacity: 1;
        transform: translateX(0);
        right: 8px;
    }
    
    .product-card .product-actions button {
        width: 32px;
        height: 32px;
    }
    
    .category-card:hover {
        transform: none;
    }
    
    .btn-royal:hover,
    .btn-outline-royal:hover,
    .btn-dark:hover {
        transform: none;
    }
}

/* ===== HIGH DPI / RETINA DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .site-footer,
    .mobile-nav,
    .hero-section,
    .newsletter-section,
    .btn-royal,
    .btn-outline-royal,
    .btn-dark {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
    
    .product-detail {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== ACCESSIBILITY - REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --cream: #1a1a2e;
        --cream-dark: #16213e;
        --white: #232946;
        --text-body: #e8e4df;
        --text-muted: #9a9aaa;
        --border: #3a3a52;
    }
    
    body {
        background: var(--royal-dark);
        color: var(--text-body);
    }
}

/* ===== SAFE AREA INSETS FOR NOTCH DEVICES ===== */
@supports (padding-top: env(safe-area-inset-top)) {
    .site-header {
        padding-top: env(safe-area-inset-top);
    }
    
    .mobile-nav {
        padding-top: calc(24px + env(safe-area-inset-top));
    }
    
    .container {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }
}
