/* Video Wrapper for Hero Section */
.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* Given 16:9 aspect ratio */
    min-height: 100%;
    min-width: 177.77vh;
    /* Given 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

/* Ensure container allows video positioning */
.hero-slider .slide {
    position: relative;
    overflow: hidden;
}

:root {
    /* Premium Color Palette - Deep Space Gray + Champagne Gold */
    --primary-color: #1d1d1f;
    /* Deep Space Gray - Elegant primary */
    --primary-dark: #0a0a0a;
    /* Carbon Black - Deep contrast */
    --accent-color: #c5a059;
    /* Champagne Gold - Luxurious accent */
    --accent-light: #eaddca;
    /* Soft Cream - Warm secondary */
    --text-dark: #0a0a0a;
    /* Carbon Black - Sharp text */
    --text-gray: #86868b;
    /* Warm Gray - Subtle text */
    --light-gray: #f5f5f7;
    /* Off-white - Clean background */
    --border-color: #d2d2d7;
    /* Light border */
    --white: #ffffff;
    /* Pure white */
    --danger: #c41e3a;
    /* Deep Red - Elegant warning */
    --success: #2d7a4f;
    /* Emerald Green - Sophisticated success */

    /* Premium Gradients */
    --gradient-gold: linear-gradient(135deg, #c5a059 0%, #eaddca 100%);
    --gradient-dark: linear-gradient(135deg, #1d1d1f 0%, #0a0a0a 100%);

    /* Typography */
    --font-heading: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Refined Shadows - More subtle and luxurious */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);

    /* Border Radius */
    --radius-lg: 18px;
    --radius-md: 12px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* DARK MODE - Body */
[data-theme="dark"] body {
    background: linear-gradient(180deg, #0f0f11 0%, #1a1a1d 100%);
    color: #f5f5f7;
}

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

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* DARK MODE - Container */
[data-theme="dark"] .container,
[data-theme="dark"] main,
[data-theme="dark"] section {
    background: transparent;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.center-text {
    text-align: center;
}

.py-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-dark {
    background-color: #1a1a1a;
}

.text-white {
    color: var(--white);
}

.text-highlight {
    color: var(--accent-color);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--text-dark);
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 999px;
    letter-spacing: 0px;
}

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

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

/* Top Bar */
.top-bar {
    background-color: #f8f8f8;
    color: var(--text-gray);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-links a {
    margin-left: 20px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 max(1.5rem, env(safe-area-inset-left));
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

.logo img {
    height: 32px;
    width: auto;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-nav ul {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 0 1rem;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    position: relative;
    line-height: 44px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.active {
    color: var(--text-dark);
    font-weight: 500;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

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

.cart-trigger {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.lang-btn {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Hero Slider */
.hero-slider {
    height: 600px;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Overlay for better video display */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Lighter overlay since no text needs high contrast */
    z-index: 1;
}

/* Hero text styles removed - video only display */

/* Features Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box i {
    font-size: 2.5rem;
    margin-right: 1.5rem;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Essential Section */
.col-50 {
    width: 50%;
    padding: 0 1rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.essential-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.ef-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ef-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ========================================
   PREMIUM PROMOTIONS SECTION
   ======================================== */

.promotions-section {
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Promotions Grid handled by .product-grid */

.promo-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 9px 18px;
    /* More spacious */
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    /* Slightly smaller */
    letter-spacing: 1px;
    /* Increased for elegance */
    z-index: 10;
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.35),
        0 2px 4px rgba(197, 160, 89, 0.2);
    /* Multi-layer gold shadow */
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Animation removal per user request */
.promo-card:hover .promo-badge {
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.45);
}

.promo-img {
    height: 240px;
    /* Optimized height */
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    /* Subtle gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    /* Balanced padding */
    position: relative;
    overflow: hidden;
}

.promo-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
    /* Subtle image shadow */
}

.promo-card:hover .promo-img img {
    transform: none;
    /* Gentle zoom removed */
}

.promo-info {
    padding: 20px 22px 22px;
    /* Compact padding */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-title {
    font-size: 1.1rem;
    /* Refined size */
    font-weight: 600;
    margin-bottom: 12px;
    /* More space */
    color: var(--text-dark);
    line-height: 1.35;
    letter-spacing: -0.02em;
    /* Modern tight tracking */
}

.promo-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    /* Increased spacing */
}

.promo-price {
    font-size: 1.5rem;
    /* Balanced prominence */
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -0.02em;
}

.promo-old-price {
    font-size: 1.15rem;
    text-decoration: line-through;
    color: var(--text-gray);
    opacity: 0.7;
}

.promo-btn {
    width: 100%;
    padding: 16px;
    /* More spacious */
    background: var(--gradient-dark);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18),
        0 4px 8px rgba(0, 0, 0, 0.08);
}


/* Products Section */
.tabs {
    display: inline-flex;
    justify-content: center;
    gap: 0;
    margin-top: 1.5rem;
    background: var(--light-gray);
    padding: 4px;
    border-radius: 999px;
}

.tab-btn {
    background: transparent;
    border: none;
    font-size: 0.9rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 8px 24px;
    border-radius: 999px;
    font-weight: 500;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    /* Apple segmented control shadow */
    border-color: transparent;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    /* Optimized for compact elegance */
}

.product-img {
    height: 220px;
    /* Optimized height for compact design */
    width: 100%;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    /* Subtle gradient background */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 22px;
    /* Balanced padding for compact feel */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    /* More subtle border */
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Apple-like bounce easing */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.04));
    /* Subtle image shadow */
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    /* Refined for compact elegance */
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Smooth bounce easing */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    /* Multi-layer shadow for depth */
    border: 1px solid rgba(0, 0, 0, 0.02);
    /* More subtle border */
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    /* Combined lift and subtle scale */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(197, 160, 89, 0.1);
    /* Multi-layer premium shadow with gold accent */
    border-color: rgba(197, 160, 89, 0.15);
    /* Subtle gold border on hover */
    background: rgba(255, 255, 255, 0.98);
    /* Slight glassmorphism */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
    /* Gentle zoom on hover */
}

.product-info {
    padding: 18px 20px 20px;
    /* Compact yet comfortable padding */
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Badges - Premium Styling */
.badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 14px;
    /* Slightly more spacious */
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.8px;
    /* Increased for elegance */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    /* Subtle shadow for depth */
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.badge-out {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.12) 0%, rgba(255, 59, 48, 0.08) 100%);
    color: var(--danger);
    border: 1px solid rgba(255, 59, 48, 0.15);
}

.badge-low {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.12) 0%, rgba(255, 149, 0, 0.08) 100%);
    color: var(--accent-color);
    border: 1px solid rgba(255, 149, 0, 0.15);
}

.badge-in {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.12) 0%, rgba(52, 199, 89, 0.08) 100%);
    color: var(--success);
    border: 1px solid rgba(52, 199, 89, 0.15);
}

.product-actions {
    position: absolute;
    bottom: 20px;
    /* Slightly adjusted position */
    right: 20px;
    display: flex;
    gap: 12px;
    /* Increased gap for better spacing */
    opacity: 0;
    transform: translateY(15px);
    /* Increased initial offset */
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Smooth bounce easing */
    z-index: 3;
}

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

.action-btn {
    width: 46px;
    /* Slightly larger for better touch target */
    height: 46px;
    background: rgba(255, 255, 255, 0.95);
    /* More opaque */
    backdrop-filter: blur(12px);
    /* Stronger blur */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Subtle border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.06);
    /* Multi-layer shadow */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-dark);
}

.action-btn:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: scale(1.15) rotate(5deg);
    /* Playful rotation on hover */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--text-dark);
}

.action-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(200, 200, 200, 0.5);
    transform: none;
}

.product-info {
    padding: 24px 26px 26px;
    text-align: left;
}

.product-cat {
    color: var(--text-gray);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Increased for premium feel */
    margin-bottom: 8px;
    /* More space */
    display: block;
    opacity: 0.85;
    /* Subtle de-emphasis */
}

.product-title {
    font-size: 1rem;
    /* Balanced for compact cards */
    font-weight: 600;
    margin-bottom: 12px;
    /* More space before price */
    color: var(--text-dark);
    line-height: 1.35;
    /* Tightened for elegance */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.02em;
    /* Subtle negative tracking for modern look */
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 4px;
}

.product-price {
    font-weight: 700;
    /* Bolder for emphasis */
    color: var(--text-dark);
    font-size: 1.05rem;
    /* Refined for compact cards */
    letter-spacing: -0.01em;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.7;
    /* Subtle de-emphasis */
}

/* ========================================
   PREMIUM LOCATION SECTION
   ======================================== */

.location-section {
    background: var(--white);
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.premium-map {
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.premium-map:hover {
    filter: grayscale(0%) contrast(1);
}


/* Footer - Premium Professional Design (Identical for Light/Dark) */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Footer Base */
.site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%) !important;
    border-top: 1px solid rgba(197, 160, 89, 0.15) !important;
    padding: 4rem 0 2rem !important;
}

/* Footer Column Headers */
.footer-col h4 {
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
    padding-bottom: 0.75rem !important;
}

.footer-col h4::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 30px !important;
    height: 2px !important;
    background: #c5a059 !important;
}

/* Footer Tagline */
.footer-col>p {
    color: #eaddca !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

/* Footer Links - General */
.site-footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease !important;
}

.site-footer a:hover {
    color: #c5a059 !important;
}

/* Footer Links */
.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-col ul li {
    margin-bottom: 0.75rem !important;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem !important;
    display: inline-block !important;
    position: relative !important;
    padding-left: 0 !important;
    transition: all 0.3s ease !important;
}

.footer-col ul li a:hover {
    color: #c5a059 !important;
    padding-left: 8px !important;
}

/* Footer Contact Info */
.footer-contact-info p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0.75rem !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.footer-contact-info i {
    color: #c5a059 !important;
    width: 20px !important;
    text-align: center !important;
}

/* Social Links - Premium Icons */
.social-links {
    display: flex !important;
    gap: 12px !important;
    margin-top: 1rem !important;
}

.social-links a {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(197, 160, 89, 0.2) !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease !important;
}

.social-links a:hover {
    background: #c5a059 !important;
    border-color: #c5a059 !important;
    color: #000000 !important;
    transform: translateY(-3px) !important;
    /* Match dark mode: add shadow for premium pop */
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease !important;
}

.social-links a i {
    font-size: 1.1rem !important;
    color: inherit !important;
}

/* Footer Logo */
.footer-logo-img {
    background: transparent !important;
    filter: none !important;
    opacity: 0.9 !important;
    max-height: 50px !important;
    margin-bottom: 1rem !important;
}

/* Copyright */
.copyright {
    border-top: 1px solid rgba(197, 160, 89, 0.1) !important;
    padding-top: 2rem !important;
    margin-top: 3rem !important;
}

.copyright p {
    color: #c5a059 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.02em !important;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    padding: 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-open .cart-overlay {
    opacity: 1;
    visibility: visible;
}

.cart-open .cart-sidebar {
    right: 0;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin: 1.5rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background: #f9f9f9;
    object-fit: contain;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 900px) {

    .grid-3,
    .grid-4,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-header .main-nav {
        display: none;
        /* simple hide for prototype */
    }

    .wrap-reverse-mobile {
        flex-wrap: wrap-reverse;
    }

    .col-50 {
        width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {

    .grid-3,
    .grid-4,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider .slide-content h1 {
        font-size: 2.5rem;
    }
}

/* Product Detail Modal */
.detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-modal.open {
    visibility: visible;
    opacity: 1;
}

.detail-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.detail-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 24px;
    position: relative;
    z-index: 2001;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: var(--transition);
}

.detail-modal.open .detail-modal-content {
    transform: scale(1);
}

.close-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-detail:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery */
.detail-gallery {
    padding: 40px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-image-container {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.main-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbs-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumb {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    background: white;
    padding: 4px;
    object-fit: contain;
    transition: var(--transition);
}

.thumb:hover,
.thumb.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Info */
.detail-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.detail-cat {
    color: var(--text-gray);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.detail-header h2 {
    font-size: 2rem;
    margin: 10px 0;
    line-height: 1.1;
}

.detail-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stock-status {
    padding: 4px 10px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.detail-description {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 30px;
}

.detail-description p {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.specs-container {
    background: #f5f5f7;
    padding: 20px;
    border-radius: 12px;
}

.specs-container h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list li span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.specs-list li span:last-child {
    color: #555;
    text-align: right;
    max-width: 60%;
}

.detail-actions .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* ========================================
   SCROLL ANIMATIONS - Premium Effects
   ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays for grid items */
.fade-in-up:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-in-up:nth-child(2) {
    transition-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
    transition-delay: 0.3s;
}

.fade-in-up:nth-child(4) {
    transition-delay: 0.4s;
}

.fade-in-up:nth-child(5) {
    transition-delay: 0.5s;
}

.fade-in-up:nth-child(6) {
    transition-delay: 0.6s;
}