:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --primary: #000000;
    --primary-hover: #555555;
    --secondary: #f8f8f8;
    --white: #ffffff;
    --glass-bg: #ffffff;
    --border-color: #e5e5e5;
    --font-main: 'Mulish', sans-serif;
    --font-heading: 'Mulish', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-main); 
    background-color: var(--bg-color); 
    color: var(--text-color); 
    line-height: 1.7; 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
h1, h2, h3, h4, h5, h6, .logo, .title { 
    font-family: var(--font-heading); 
    font-weight: 500; 
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Announcement Bar */
.announcement-bar { 
    background-color: var(--text-color); 
    color: var(--white); 
    text-align: center; 
    padding: 10px 0; 
    font-size: 0.75rem; 
    font-weight: 400; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

/* Header */
.main-header { 
    position: sticky; top: 0; z-index: 100; 
    padding: 15px 0; 
    transition: var(--transition); 
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color); 
}
.main-header.scrolled { 
    background: var(--white); 
    padding: 10px 0; 
}
.header-container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.header-left { display: flex; align-items: center; gap: 40px; }
.logo { 
    font-size: 2rem; 
    font-weight: 600; 
    letter-spacing: 4px; 
    color: var(--text-color); 
    text-transform: uppercase;
}
.desktop-nav { display: flex; gap: 40px; }
.nav-link { 
    font-size: 0.85rem;
    font-weight: 600; 
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative; 
    padding: 5px 0; 
    color: #555;
}
.nav-link::after { 
    content: ''; position: absolute; bottom: 0; left: 0; 
    width: 0; height: 1px; background: var(--text-color); 
    transition: var(--transition); 
}
.nav-link:hover { color: var(--text-color); }
.nav-link:hover::after { width: 100%; }

.header-icons { display: flex; gap: 25px; align-items: center; }
.icon-link { position: relative; color: var(--text-color); transition: color 0.3s; }
.icon-link:hover { color: var(--primary); }
.cart-count { 
    position: absolute; top: -6px; right: -8px; 
    background: var(--primary); color: var(--white); 
    font-size: 0.65rem; font-weight: 600; 
    width: 16px; height: 16px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
}
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text-color); }

/* Hero Section */
.hero-section { position: relative; height: 85vh; display: flex; align-items: center; overflow: hidden; background: #e9e5e1; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&q=80') center/cover no-repeat; opacity: 0.6; mix-blend-mode: multiply; filter: contrast(1.1); }
.hero-content { position: relative; z-index: 10; max-width: 700px; text-align: center; margin: 0 auto; }
.subtitle { display: block; font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; font-weight: 400; color: var(--primary); }
.title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; font-weight: 500; color: #fff; letter-spacing: 2px; }
.hero-content .description { font-size: 1.1rem; margin-bottom: 40px; color: #eee; font-weight: 300; letter-spacing: 1px; }

/* Buttons */
.btn { 
    display: inline-block; 
    padding: 12px 30px; 
    font-size: 0.8rem; 
    font-weight: 600; 
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer; 
    transition: var(--transition); 
    text-align: center; 
    border: 1px solid transparent; 
    border-radius: 0; 
}
.btn-primary { background: var(--text-color); color: var(--white); }
.btn-primary:hover { background: var(--white); color: var(--text-color); border-color: var(--text-color); }
.btn-outline { background: transparent; color: var(--text-color); border-color: var(--text-color); }
.btn-outline:hover { background: var(--text-color); color: var(--white); }

/* Marquee */
.marquee-container { background: var(--secondary); color: var(--text-color); padding: 15px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; }
.marquee { display: inline-block; font-size: 0.85rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; }
.marquee .dot { margin: 0 40px; color: var(--primary); }

/* Sections */
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 15px; font-weight: 400; letter-spacing: 1px; }
.section-header p { color: #888; font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* Category Banners */
.category-banners-section { margin-top: 20px; margin-bottom: 40px; }
.category-banner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cat-banner-item { position: relative; overflow: hidden; display: block; padding-top: 133%; background: #eee; }
.cat-banner-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-banner-item:hover img { transform: scale(1.03); }
.cat-banner-overlay { position: absolute; bottom: 30px; left: 0; width: 100%; text-align: center; z-index: 2; }
.cat-banner-title { display: inline-block; background: #fff; color: #000; padding: 10px 25px; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; }

/* Mooi Tabs */
.mooi-tabs { display: flex; justify-content: center; list-style: none; padding: 0; margin: 0 0 40px 0; gap: 40px; }
.mooi-tabs li { font-size: 1rem; font-weight: 500; color: #888; cursor: pointer; padding-bottom: 10px; position: relative; transition: color 0.3s; letter-spacing: 1px; }
.mooi-tabs li:hover { color: #000; }
.mooi-tabs li.active { color: #000; font-weight: 600; }
.mooi-tabs li.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: #000; }

/* Products Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 40px; }
.product-card { background: transparent; transition: var(--transition); }
.product-img-wrapper { position: relative; display: block; overflow: hidden; aspect-ratio: 3/4; background: #f5f5f5; margin-bottom: 10px; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease, opacity 0.5s ease; }
.hover-img { position: absolute; top: 0; left: 0; opacity: 0; z-index: 1; }
.product-card.has-hover-img:hover .main-img { opacity: 0; }
.product-card.has-hover-img:hover .hover-img { opacity: 1; transform: scale(1.04); }
.product-card:not(.has-hover-img):hover .product-img { transform: scale(1.04); }
.placeholder-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #aaa; font-style: italic; font-family: var(--font-heading); }

.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 5; }
.mooi-new-badge { background: #000; color: #fff; font-size: 0.65rem; padding: 4px 8px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.mooi-fav-btn { position: absolute; top: 10px; right: 10px; background: transparent; border: none; color: #000; z-index: 5; cursor: pointer; transition: transform 0.2s; padding: 5px; }
.mooi-fav-btn:hover { transform: scale(1.1); }
.mooi-fav-btn svg { fill: transparent; transition: fill 0.3s; }
.mooi-fav-btn:hover svg { fill: #000; }

.product-info { position: relative; text-align: left; padding-top: 5px; }
.mooi-cart-btn-wrapper { position: absolute; right: 0; top: 5px; }
.mooi-cart-btn { background: none; border: none; cursor: pointer; color: #000; padding: 5px; transition: transform 0.2s; }
.mooi-cart-btn:hover { transform: scale(1.1); }

.product-brand { font-size: 0.9rem; font-weight: 700; margin: 0 0 5px 0; color: #000; text-transform: uppercase; letter-spacing: 1px; }
.product-brand a { color: #000; }
.product-title { font-size: 0.85rem; font-weight: 400; margin: 0 0 10px 0; color: #555; line-height: 1.4; padding-right: 30px; text-transform: none; letter-spacing: 0; }
.product-title a { color: #555; }
.mooi-product-bottom { display: flex; flex-direction: column; gap: 8px; }
.product-price { color: #000; font-weight: 700; font-size: 1.05rem; }
.mooi-color-swatches { display: flex; gap: 6px; }
.mooi-color-swatches span { display: block; width: 14px; height: 14px; border-radius: 50%; border: 1px solid #ddd; }
/* Category Circles */
.category-circles-section { padding: 60px 0 20px 0; background: var(--bg-color); }
.category-circles-wrapper { display: flex; justify-content: center; gap: 40px; overflow-x: auto; padding: 20px 0; scrollbar-width: none; }
.category-circles-wrapper::-webkit-scrollbar { display: none; }
.category-circle-item { display: flex; flex-direction: column; align-items: center; gap: 15px; flex-shrink: 0; transition: transform 0.3s; }
.category-circle-item:hover { transform: translateY(-5px); }
.category-circle-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); padding: 3px; transition: border-color 0.3s; }
.category-circle-item:hover .category-circle-img { border-color: var(--primary); }
.category-circle-title { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 500; color: var(--text-color); text-transform: uppercase; letter-spacing: 1px; }

/* Favorite Button */
.btn-fav { position: absolute; top: 15px; right: 15px; width: 35px; height: 35px; border-radius: 50%; background: var(--glass-bg); display: flex; justify-content: center; align-items: center; border: none; cursor: pointer; color: #999; z-index: 3; transition: all 0.3s; opacity: 0; transform: translateY(-10px); }
.product-card:hover .btn-fav { opacity: 1; transform: translateY(0); }
.btn-fav:hover { color: var(--primary); background: #fff; }

/* Banner Section */
.banner-section { margin-top: 60px; }
.banner-box { background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&q=80') center/cover no-repeat; padding: 120px 40px; text-align: center; color: var(--white); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.banner-box::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.3); z-index: 1; }
.banner-text { position: relative; z-index: 2; max-width: 600px; }
.banner-text h2 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 400; letter-spacing: 2px; }
.banner-text p { margin-bottom: 35px; font-size: 1.1rem; font-weight: 300; letter-spacing: 1px; }

/* Footer */
.main-footer { background: var(--bg-color); padding-top: 80px; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; margin-bottom: 60px; }
.footer-logo { font-size: 2rem; font-weight: 600; letter-spacing: 4px; margin-bottom: 25px; color: var(--text-color); font-family: var(--font-heading); }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 25px; font-weight: 500; letter-spacing: 1px; }
.footer-col a { display: block; margin-bottom: 12px; color: #777; font-size: 0.95rem; }
.footer-col a:hover { color: var(--primary); }
.newsletter-form { display: flex; margin-top: 20px; border-bottom: 1px solid #ccc; padding-bottom: 5px; }
.newsletter-form input { flex: 1; padding: 10px 5px; border: none; background: transparent; outline: none; font-size: 0.95rem; }
.newsletter-form button { background: transparent; color: var(--text-color); border: none; padding: 0 10px; cursor: pointer; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem; }
.newsletter-form button:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding: 25px 0; border-top: 1px solid var(--border-color); color: #999; font-size: 0.85rem; letter-spacing: 1px; }

/* Mobile Menu */
.mobile-sidebar { position: fixed; top: 0; right: -320px; width: 320px; height: 100vh; background: var(--bg-color); z-index: 1000; transition: right 0.4s ease; padding: 30px; box-shadow: -5px 0 30px rgba(0,0,0,0.05); }
.mobile-sidebar.open { right: 0; }
.mobile-sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.close-sidebar-btn { background: none; border: none; cursor: pointer; color: var(--text-color); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav-link { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-color); transition: color 0.2s; }
.mobile-nav-link:hover { color: var(--primary); }
.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 999; display: none; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(3px); }
.sidebar-overlay.active { display: block; opacity: 1; }

/* Cart Drawer */
.cart-drawer { position: fixed; top: 0; right: -400px; width: 400px; max-width: 100%; height: 100vh; background: var(--bg-color); z-index: 1001; transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); padding: 30px; box-shadow: -10px 0 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.cart-drawer.open { right: 0; }
.cart-drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
.cart-drawer-header h2 { font-size: 1.5rem; letter-spacing: 1px; margin: 0; }
.close-cart-btn { background: none; border: none; cursor: pointer; color: var(--text-color); transition: transform 0.3s; }
.close-cart-btn:hover { transform: rotate(90deg); color: var(--primary); }
.cart-drawer-content { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

/* Modal (Quick View) */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(5px); opacity: 0; transition: opacity 0.3s; }
.modal.active { display: flex; opacity: 1; }
.modal-content { background: var(--bg-color); width: 900px; max-width: 95%; max-height: 90vh; border-radius: 4px; position: relative; overflow-y: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.close-modal-btn { position: absolute; top: 20px; right: 20px; background: var(--white); width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); color: var(--text-color); }
.close-modal-btn:hover { transform: rotate(90deg); background: var(--text-color); color: var(--white); }

/* Elite Product Page Styles */
.product-elite-layout { display: flex; gap: 80px; max-width: 1400px; margin: 0 auto; padding: 60px 40px; align-items: flex-start; }
.product-elite-gallery { flex: 0 0 55%; display: flex; flex-direction: column; gap: 20px; }
.elite-main-image-wrapper { width: 100%; position: relative; overflow: hidden; background: #f5f5f5; cursor: crosshair; aspect-ratio: 3/4; margin-bottom: 20px; }
.elite-main-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.1s ease-out; }
.elite-thumbnails { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; }
.elite-thumbnails::-webkit-scrollbar { height: 4px; }
.elite-thumbnails::-webkit-scrollbar-thumb { background: #ddd; }
.elite-thumb { width: 90px; height: 120px; flex-shrink: 0; cursor: pointer; border: 1px solid transparent; opacity: 0.6; transition: all 0.3s; }
.elite-thumb img { width: 100%; height: 100%; object-fit: cover; }
.elite-thumb:hover, .elite-thumb.active { opacity: 1; border-color: var(--text-color); }

/* Video Thumbnails */
.elite-thumb-video { position: relative; }
.elite-thumb-video .video-play-icon { position: absolute; bottom: 4px; right: 4px; width: 24px; height: 24px; background: rgba(0,0,0,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.elite-thumb-video .video-play-icon svg { margin-left: 2px; }
.video-thumb-placeholder { width: 100%; height: 100%; background: #222; display: flex; align-items: center; justify-content: center; }
.elite-main-video { background: #000; border-radius: 0; }
.video-active { cursor: default !important; }
.product-elite-details-wrapper { flex: 0 0 45%; max-width: 500px; }
.product-elite-details { position: sticky; top: 120px; padding-bottom: 60px; }
.elite-breadcrumb { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #999; margin-bottom: 30px; }
.elite-breadcrumb a { color: #555; transition: color 0.3s; }
.elite-breadcrumb a:hover { color: var(--text-color); }
.elite-product-title { font-size: 2.8rem; font-weight: 400; margin-bottom: 20px; color: var(--text-color); letter-spacing: 1px; line-height: 1.2; }
.elite-product-price { font-size: 1.4rem; font-weight: 300; color: #222; margin-bottom: 40px; letter-spacing: 1px; }
.elite-product-desc { font-size: 1.05rem; color: #666; line-height: 1.8; margin-bottom: 40px; font-weight: 300; }
.elite-size-section { margin-bottom: 40px; }
.elite-size-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #333; }
.elite-size-selector { display: flex; flex-wrap: wrap; gap: 15px; }
.elite-size-label { position: relative; display: inline-block; cursor: pointer; color: #333; font-weight: 500; }
.elite-size-label span { display: block; padding: 12px 24px; border: 1px solid #eaeaea; font-size: 0.95rem; transition: all 0.3s; }
.elite-size-label.in-stock:hover span { border-color: #000; }
.elite-size-label input:checked + span { border-color: #000; background: #000; color: #fff; }
.elite-size-label.out-of-stock span { color: #ccc; background: #fafafa; cursor: not-allowed; text-decoration: line-through; border-color: #eee; }
.elite-action-group { display: flex; gap: 15px; align-items: stretch; margin-bottom: 40px; }
.elite-qty-box { display: flex; border: 1px solid #eaeaea; width: 130px; }
.elite-qty-box button { background: none; border: none; width: 40px; font-size: 1.2rem; cursor: pointer; color: #555; transition: color 0.3s; }
.elite-qty-box button:hover { color: var(--text-color); }
.elite-qty-box input { flex: 1; border: none; text-align: center; font-size: 1.1rem; outline: none; background: transparent; width: 50px; }
.elite-add-to-cart-btn { flex: 1; background: var(--text-color); color: #fff; border: none; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; transition: background 0.3s; cursor: pointer; }
.elite-add-to-cart-btn:hover { background: #333; }
.elite-wishlist-btn { width: 54px; border: 1px solid #eaeaea; background: transparent; color: #333; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.elite-wishlist-btn:hover { border-color: var(--text-color); }
.elite-product-meta { border-top: 1px solid #eaeaea; padding-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.meta-item { display: flex; align-items: center; gap: 15px; font-size: 0.9rem; color: #555; font-weight: 300; letter-spacing: 0.5px; }
.meta-item svg { color: var(--text-color); }

/* Elite Reviews Section */
.elite-reviews-header { text-align: center; font-family: var(--font-heading); font-size: 2.2rem; color: var(--text-color); margin-bottom: 60px; letter-spacing: 1px; border-bottom: 1px solid #eaeaea; padding-bottom: 20px; }
.elite-review-form-wrapper { max-width: 600px; margin: 0 auto 80px auto; }
.elite-review-subtitle { text-align: center; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #333; margin-bottom: 40px; }
.elite-review-summary { display: flex; align-items: center; justify-content: center; gap: 12px; margin: -35px 0 45px; color: var(--text-color); }
.elite-review-summary strong { font-size: 1.7rem; font-family: var(--font-heading); }
.elite-review-summary span { color: #d4af37; letter-spacing: 2px; }
.elite-review-summary small { color: #888; }
.elite-review-login-note { text-align: center; background: #fffaf7; border: 1px solid var(--border-color); border-radius: 8px; padding: 18px; margin-bottom: 45px; color: #666; }
.elite-review-login-note a { color: var(--primary); font-weight: 700; text-decoration: underline; }
.elite-empty-reviews { text-align: center; font-style: italic; color: #999; padding: 40px 0; font-weight: 300; }
.elite-reviews-list { display: flex; flex-direction: column; gap: 40px; }
.elite-review-item { border-bottom: 1px solid #f5f5f5; padding-bottom: 30px; }
.review-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-author { font-weight: 500; font-size: 1.05rem; color: #222; }
.verified-purchase-badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; background: #e8f5e9; color: #2e7d32; font-size: 0.72rem; line-height: 1; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; }
.review-stars { color: var(--text-color); font-size: 0.9rem; letter-spacing: 2px; }
.review-date { font-size: 0.8rem; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-left: auto; }
.review-text { font-size: 1.05rem; color: #555; line-height: 1.8; font-weight: 300; font-style: italic; }

.mobile-bottom-nav-container { display: none; }

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; z-index: 100; }
    .header-left { gap: 0; flex: 1; }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; padding: 0; font-size: 1.5rem; z-index: 10; }
    .title { font-size: 2.8rem; }
    .hero-section { height: 70vh; }
    .section-padding { padding: 60px 0; }
    .banner-text { padding: 20px; }
    .banner-text h2 { font-size: 2.2rem; }
    .category-banner-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
    .cat-banner-overlay { bottom: 15px; }
    .cat-banner-title { padding: 6px 15px; font-size: 0.75rem; letter-spacing: 1px; }
    
    .mooi-tabs { gap: 20px; }
    .mooi-tabs li { font-size: 0.9rem; }
    
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-img-wrapper { margin-bottom: 10px; }
    .product-brand { font-size: 0.8rem; }
    .product-title { font-size: 0.75rem; padding-right: 20px; }
    .product-price { font-size: 0.95rem; }
    .mooi-cart-btn-wrapper { top: 0; }
    .mooi-cart-btn svg { width: 16px; height: 16px; }
    
    .product-elite-layout { flex-direction: column; gap: 30px; padding: 30px 20px; }
    .product-elite-gallery { flex: 1; }
    .product-elite-details-wrapper { flex: 1; max-width: 100%; }
    .product-elite-details { position: static; padding-bottom: 0; }
    .elite-product-title { font-size: 2rem; }
    .elite-review-form-wrapper { padding: 0 20px; }
    .elite-review-summary { flex-wrap: wrap; margin-top: -25px; }
    .review-meta { flex-wrap: wrap; }
    .review-date { margin-left: 0; width: 100%; }
    
    /* App Navigation Bar */
    .mobile-bottom-nav-container { display: block !important; }
    .mobile-bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); border-top: 1px solid #f0e6dc; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.03); }
    .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 0.7rem; letter-spacing: 0.5px; transition: all 0.3s; text-transform: uppercase; }
    .nav-item svg { margin-bottom: 4px; color: #888; transition: color 0.3s; }
    .nav-item:hover, .nav-item.active { color: var(--primary); }
    .nav-item:hover svg, .nav-item.active svg { color: var(--primary); }
    body { padding-bottom: 60px; /* space for bottom nav */ }
}

/* Dropdown Menu */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown .nav-link { display: flex; align-items: center; }
.dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 200px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.05); z-index: 1; border-radius: 8px; top: 100%; left: 0; padding: 10px 0; border: 1px solid var(--border-color); }
.dropdown-content a { color: var(--text-color); padding: 10px 20px; text-decoration: none; display: block; font-size: 0.95rem; transition: background 0.2s; }
.dropdown-content a:hover { background-color: #fcfcfc; color: var(--primary); }
.nav-dropdown:hover .dropdown-content { display: block; animation: fadeUp 0.2s ease forwards; }

/* 2026 Boutique Refresh */
:root {
    --bg-color: #fffaf7;
    --surface: #ffffff;
    --surface-warm: #fff3ee;
    --text-color: #251d1d;
    --muted-text: #746765;
    --primary: #8f4f5f;
    --primary-hover: #713946;
    --accent: #c99a7a;
    --accent-soft: #f7d9ce;
    --sage: #7e927f;
    --secondary: #fff0ea;
    --border-color: #eadbd6;
    --shadow-soft: 0 18px 45px rgba(96, 58, 55, 0.12);
    --shadow-card: 0 16px 34px rgba(63, 39, 38, 0.10);
    --font-heading: 'Cormorant Garamond', serif;
}

body {
    background:
        linear-gradient(180deg, #fffaf7 0%, #ffffff 42%, #fff8f4 100%);
    color: var(--text-color);
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6, .logo, .title {
    font-family: var(--font-heading);
}

.announcement-marquee {
    background: #251d1d;
    color: #fffaf7;
    padding: 10px 0;
    border: 0;
}

.announcement-marquee .marquee {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    animation-duration: 24s;
}

.announcement-marquee .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-soft);
    margin: 0 38px;
    align-self: center;
}

.main-header {
    background: rgba(255, 250, 247, 0.92);
    border-bottom: 1px solid rgba(234, 219, 214, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 6px 22px rgba(57, 35, 33, 0.04);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(57, 35, 33, 0.08);
}

.logo {
    color: var(--text-color);
    font-family: 'Mulish', sans-serif;
    font-size: 1.85rem;
    letter-spacing: 5px;
}

.desktop-nav {
    gap: 28px;
}

.nav-link {
    color: #615452;
}

.nav-link::after {
    height: 2px;
    background: var(--primary);
}

.icon-link,
.mobile-menu-btn,
.close-sidebar-btn,
.close-cart-btn {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-btn {
    display: none;
}

.icon-link:hover,
.mobile-menu-btn:hover,
.close-sidebar-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.cart-count {
    background: var(--primary);
}

.hero-section {
    min-height: min(620px, 60vh);
    height: auto;
    padding: 76px 0 44px;
    background: #2a2020;
}

.hero-slider {
    padding: 0;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    min-height: inherit;
    padding: 76px 0 44px;
    background-position: center 34%;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 4s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slider .hero-content {
    position: relative;
    z-index: 3;
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,250,247,0.42);
    background: rgba(255,250,247,0.14);
    color: #fffaf7;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.hero-slider-prev { left: 22px; }
.hero-slider-next { right: 22px; }

.hero-slider-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-slider-dots button {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255,250,247,0.78);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
}

.hero-slider-dots button.active {
    background: #fffaf7;
}

.hero-bg {
    background:
        linear-gradient(90deg, rgba(36, 25, 24, 0.70) 0%, rgba(60, 38, 38, 0.36) 45%, rgba(255, 225, 213, 0.20) 100%),
        url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&q=86') center 34% / cover no-repeat;
    opacity: 1;
    mix-blend-mode: normal;
    filter: saturate(1.02) contrast(1.04);
    transform: scale(1.02);
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-content {
    max-width: 760px;
    text-align: left;
    margin: 0;
}

.elite-color-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.elite-color-option {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-color);
    border-radius: 999px;
    padding: 7px 13px;
    cursor: pointer;
    font: inherit;
    font-size: 0.88rem;
    transition: all 0.25s ease;
}

.elite-color-option span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(37,29,29,0.18);
    box-shadow: 0 0 0 2px #fff;
}

.elite-color-option:hover,
.elite-color-option.active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(143,79,95,0.12);
    transform: translateY(-1px);
}

.subtitle,
.section-kicker {
    color: var(--accent-soft);
    font-family: 'Mulish', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.title {
    color: #fffaf7;
    font-size: clamp(3.2rem, 6.6vw, 5.45rem);
    line-height: 0.94;
    letter-spacing: 0;
    margin-bottom: 28px;
    max-width: 650px;
}

.hero-content .description {
    max-width: 620px;
    color: rgba(255, 250, 247, 0.88);
    font-size: 1.12rem;
    line-height: 1.9;
    letter-spacing: 0.2px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 28px;
    letter-spacing: 1.3px;
}

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

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

.hero-actions .btn-primary {
    background: #fffaf7;
    color: var(--text-color);
    border-color: #fffaf7;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-actions .btn-primary:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.btn-soft {
    background: rgba(255, 250, 247, 0.12);
    color: #fffaf7;
    border-color: rgba(255, 250, 247, 0.48);
    backdrop-filter: blur(8px);
}

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

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    color: #fffaf7;
    border: 1px solid rgba(255, 250, 247, 0.25);
    background: rgba(255, 250, 247, 0.10);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.category-banners-section {
    margin: 0;
    padding: 18px;
    background: #fffaf7;
}

.category-banners-shell {
    width: min(100%, 1480px);
    margin: 0 auto;
}

.category-banner-grid {
    gap: 14px;
}

.cat-banner-item {
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    isolation: isolate;
}

.cat-banner-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 20, 20, 0.04), rgba(30, 20, 20, 0.45));
    z-index: 1;
}

.cat-banner-item img {
    transition: transform 0.7s ease, filter 0.7s ease;
}

.cat-banner-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.cat-banner-overlay {
    bottom: 24px;
    z-index: 2;
}

.cat-banner-title {
    background: rgba(255, 250, 247, 0.94);
    color: var(--text-color);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(31, 20, 20, 0.14);
}

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

.product-section-header {
    margin-bottom: 42px;
}

.section-header h2 {
    color: var(--text-color);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0;
}

.section-header p {
    color: var(--muted-text);
}

.product-section-header .section-kicker {
    color: var(--primary);
    display: inline-block;
    margin-bottom: 12px;
}

.banner-text .section-kicker {
    color: var(--accent-soft);
    display: inline-block;
    margin-bottom: 12px;
}

.mooi-tabs {
    gap: 14px;
    margin-bottom: 34px;
}

.mooi-tabs li {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: #fff;
    color: #81716e;
    font-size: 0.86rem;
    font-weight: 800;
}

.mooi-tabs li.active {
    background: var(--text-color);
    border-color: var(--text-color);
    color: #fff;
}

.mooi-tabs li.active::after {
    display: none;
}

.product-grid {
    gap: 34px 24px;
}

.product-card {
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.product-img-wrapper {
    border-radius: 8px;
    background: #f7efea;
}

.mooi-new-badge {
    background: var(--primary);
    border-radius: 999px;
    padding: 5px 11px;
}

.mooi-fav-btn,
.mooi-cart-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 22px rgba(35, 24, 24, 0.11);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mooi-fav-btn:hover,
.mooi-cart-btn:hover {
    color: var(--primary);
    transform: translateY(-2px) scale(1.03);
}

.mooi-fav-btn:hover svg {
    fill: var(--primary);
}

.product-info {
    padding: 8px 4px 4px;
}

.product-brand {
    font-family: 'Mulish', sans-serif;
    color: var(--primary);
}

.product-title a {
    color: #5f5350;
}

.product-price {
    color: var(--text-color);
}
.sale-price { color: #b11f3a; font-weight: 800; }
.old-price { color: #9b8f8a; text-decoration: line-through; font-size: 0.85em; margin-left: 7px; font-weight: 500; }
.stock-badge, .discount-badge { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.6px; text-transform: uppercase; }
.stock-badge { background: #fff3e0; color: #b45309; }
.stock-badge.out { background: #251d1d; color: #fffaf7; }
.discount-badge { background: #b11f3a; color: #fff; }
.product-elite-details .stock-badge { position: static; }
.modal .stock-badge { position: static; }
.whatsapp-float { position: fixed; right: 18px; bottom: 82px; z-index: 999; width: 54px; height: 54px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #25D366; color: #fff; box-shadow: 0 14px 30px rgba(37,211,102,0.35); transition: transform 0.2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); color: #fff; }
.product-help-box { background: #fffaf7; border: 1px solid var(--border-color); padding: 18px; margin-bottom: 28px; border-radius: 8px; color: #5c514f; line-height: 1.6; }
.product-help-box h3 { margin: 0 0 8px; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-color); }

.mooi-color-swatches span {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--border-color);
}

.empty-state {
    text-align: center;
    padding: 42px 20px;
    color: var(--muted-text);
    background: #fff;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
}

.banner-section {
    margin-top: 20px;
}

.banner-box {
    min-height: 440px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(36, 24, 23, 0.72), rgba(92, 56, 55, 0.28)),
        url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&q=84') center / cover no-repeat;
    box-shadow: var(--shadow-soft);
}

.banner-box::before {
    display: none;
}

.banner-text h2 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: 0;
    line-height: 0.95;
}

.banner-text p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.banner-text .btn-outline {
    border-color: rgba(255, 250, 247, 0.72);
    color: #fffaf7;
}

.banner-text .btn-outline:hover {
    background: #fffaf7;
    color: var(--primary);
}

.main-footer {
    background: #251d1d;
    color: #fffaf7;
    border-top: 0;
}

.footer-logo,
.footer-col h4 {
    color: #fffaf7;
}

.footer-col p,
.footer-col a,
.footer-bottom {
    color: rgba(255, 250, 247, 0.68);
}

.footer-col a:hover {
    color: #ffffff;
}

.newsletter-form {
    border-color: rgba(255, 250, 247, 0.24);
}

.newsletter-form input,
.newsletter-form button {
    color: #fffaf7;
}

.newsletter-form input::placeholder {
    color: rgba(255, 250, 247, 0.52);
}

.footer-bottom {
    border-top-color: rgba(255, 250, 247, 0.12);
}

.mobile-sidebar {
    background: #fffaf7;
    box-shadow: -20px 0 50px rgba(42, 28, 28, 0.18);
}

.mobile-sidebar-header h2 {
    font-size: 2.2rem;
}

.mobile-nav-link {
    font-size: 1.35rem;
}

.mobile-sub-nav-link {
    padding-left: 30px;
    font-size: 0.98rem;
    color: #6c5f5c;
}

.sidebar-overlay {
    background: rgba(37, 29, 29, 0.42);
}

.cart-drawer {
    background: #fffaf7;
}

.nav-item-button {
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

@keyframes heroDrift {
    from { transform: scale(1.02) translateX(0); }
    to { transform: scale(1.06) translateX(-1.5%); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .header-left {
        gap: 24px;
    }

    .desktop-nav {
        gap: 18px;
    }

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

@media (max-width: 768px) {
    .announcement-marquee {
        padding: 8px 0;
    }

    .announcement-marquee .marquee {
        font-size: 0.68rem;
        letter-spacing: 1.1px;
        animation: marqueeScroll 14s linear infinite !important;
    }

    .main-header {
        padding: 10px 0;
    }

    .header-icons {
        gap: 6px;
    }

    .header-icons .icon-link[aria-label="Ara"] {
        display: none;
    }

    .logo {
        font-size: 1.22rem;
        letter-spacing: 3.2px;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .hero-section {
        min-height: 80vh;
        min-height: 80dvh;
        padding: 0;
        align-items: flex-end;
    }

    .hero-slide {
        align-items: flex-end;
        padding: 0 0 44px;
        background-position: center top;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-slider-btn {
        display: none;
    }

    .hero-bg {
        background:
            linear-gradient(180deg, rgba(34, 24, 24, 0.18) 0%, rgba(34, 24, 24, 0.82) 100%),
            url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&q=86') center top / cover no-repeat;
        animation: none;
    }

    .hero-content {
        text-align: left;
        max-width: 100%;
        margin-top: auto;
        width: 100%;
    }

    .subtitle,
    .section-kicker {
        font-size: 0.68rem;
        letter-spacing: 2.2px;
    }

    .title {
        font-size: clamp(3rem, 17vw, 4.7rem);
        margin-bottom: 18px;
    }

    .hero-content .description {
        font-size: 0.98rem;
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust-row {
        gap: 8px;
        margin-top: 18px;
    }

    .hero-trust-row span {
        min-height: 30px;
        font-size: 0.68rem;
    }

    .category-banners-section {
        padding: 10px;
    }

    .category-banner-grid {
        gap: 10px;
    }

    .cat-banner-item {
        border-radius: 7px;
    }

    .cat-banner-title {
        max-width: calc(100% - 18px);
        white-space: normal;
        line-height: 1.25;
    }

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

    .section-header {
        margin-bottom: 34px;
    }

    .section-header h2 {
        font-size: clamp(2.4rem, 12vw, 3.3rem);
    }

    .mooi-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .mooi-tabs::-webkit-scrollbar {
        display: none;
    }

    .mooi-tabs li {
        flex: 0 0 auto;
        font-size: 0.72rem;
        padding: 0 14px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 10px;
    }

    .product-card {
        padding: 5px;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .mooi-new-badge {
        font-size: 0.58rem;
    }

    .mooi-fav-btn,
    .mooi-cart-btn {
        width: 34px;
        height: 34px;
    }

    .banner-section {
        margin-top: 0;
    }

    .banner-box {
        min-height: 390px;
        padding: 70px 22px;
    }

    .footer-grid {
        gap: 34px;
    }

    .newsletter-form {
        gap: 8px;
    }

    .mobile-sidebar {
        width: min(88vw, 360px);
        right: min(-88vw, -360px);
        padding: 28px 24px;
    }

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

    .mobile-bottom-nav {
        padding: 9px 0 calc(9px + env(safe-area-inset-bottom));
        background: rgba(255, 250, 247, 0.96);
        border-top-color: var(--border-color);
    }

    .nav-item {
        min-width: 58px;
        min-height: 46px;
        justify-content: center;
        color: #736562;
    }

    body {
        padding-bottom: calc(66px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .product-grid {
        gap: 14px 8px;
    }

    .product-title {
        min-height: 40px;
    }

    .product-price {
        font-size: 0.9rem;
    }

    .mooi-color-swatches span {
        width: 13px;
        height: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== ABOUT PAGE ==================== */
.about-hero { position: relative; height: 50vh; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; background: url('../../uploads/about_hero_bg.png') center/cover no-repeat; overflow: hidden; }
.about-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.about-hero-content { position: relative; z-index: 2; color: #fff; }
.about-tag { display: inline-block; letter-spacing: 4px; font-size: 0.75rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.5); padding: 8px 20px; }
.about-hero-content h1 { font-family: var(--font-heading); font-size: 4rem; font-weight: 300; letter-spacing: 6px; margin: 0 0 15px; }
.about-hero-content p { font-size: 1.1rem; font-weight: 300; opacity: 0.85; letter-spacing: 1px; }

.about-section-tag { display: inline-block; letter-spacing: 3px; font-size: 0.7rem; font-weight: 700; color: #999; margin-bottom: 15px; text-transform: uppercase; }

.about-grid { display: flex; gap: 80px; align-items: center; }
.about-grid-reverse { flex-direction: row-reverse; }
.about-text { flex: 1; }
.about-text h2 { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 300; margin: 0 0 25px; color: #000; letter-spacing: 1px; }
.about-text p { font-size: 1.05rem; line-height: 1.9; color: #555; margin-bottom: 20px; font-weight: 300; }
.about-text p em { font-style: italic; color: #333; }
.about-text p strong { font-weight: 600; color: #222; }

.about-visual { flex: 1; }
.about-visual-inner { position: relative; overflow: hidden; }
.about-visual-inner::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100px; height: 100px; border-top: 2px solid #000; border-left: 2px solid #000; z-index: 2; }
.about-visual-inner::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; border-bottom: 2px solid #000; border-right: 2px solid #000; z-index: 2; }
.about-visual-inner img { width: 100%; display: block; transition: transform 0.6s ease; }
.about-visual:hover .about-visual-inner img { transform: scale(1.03); }

.about-highlight { background: #000; color: #fff; padding: 80px 0; text-align: center; }
.about-highlight-inner { max-width: 700px; margin: 0 auto; }
.about-highlight-inner svg { color: #fff; opacity: 0.4; margin-bottom: 25px; }
.about-highlight blockquote { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 300; line-height: 1.7; letter-spacing: 0.5px; margin: 0; font-style: italic; }

.about-values-header { text-align: center; margin-bottom: 50px; }
.about-values-header h2 { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 300; margin: 0; letter-spacing: 1px; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.about-value-card { text-align: center; padding: 40px 30px; border: 1px solid #eee; transition: all 0.3s; }
.about-value-card:hover { border-color: #000; transform: translateY(-5px); }
.value-icon { margin-bottom: 20px; color: #000; }
.about-value-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin: 0 0 15px; letter-spacing: 1px; text-transform: uppercase; }
.about-value-card p { font-size: 0.95rem; color: #666; line-height: 1.7; margin: 0; font-weight: 300; }

.about-closing { background: #000; color: #fff; padding: 80px 0; text-align: center; }
.about-closing-content { max-width: 500px; margin: 0 auto; }
.closing-wish { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 300; margin: 0 0 10px; letter-spacing: 1px; }
.closing-sign { font-size: 1rem; opacity: 0.7; margin: 0 0 5px; font-style: italic; }
.closing-family { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; letter-spacing: 3px; margin: 0 0 35px; text-transform: uppercase; }
.about-cta-btn { display: inline-block; padding: 14px 40px; border: 1px solid #fff; color: #fff; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; font-weight: 600; transition: all 0.3s; }
.about-cta-btn:hover { background: #fff; color: #000; }

@media (max-width: 768px) {
    .about-hero { height: 40vh; min-height: 300px; }
    .about-hero-content h1 { font-size: 2.4rem; letter-spacing: 3px; }
    .about-grid, .about-grid-reverse { flex-direction: column; gap: 40px; }
    .about-text h2 { font-size: 1.8rem; }
    .about-text p { font-size: 0.95rem; }
    .about-highlight blockquote { font-size: 1.2rem; }
    .about-highlight { padding: 50px 20px; }
    .about-values-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-value-card { padding: 30px 20px; }
    .about-visual-inner::before, .about-visual-inner::after { width: 60px; height: 60px; top: -12px; left: -12px; }
    .about-visual-inner::after { bottom: -12px; right: -12px; top: auto; left: auto; }
    .about-closing { padding: 50px 20px; }
    .closing-wish { font-size: 1.3rem; }
}

/* ==================== POLICY PAGE ==================== */
.policy-hero { padding: 100px 0 50px; background: #faf9f7; text-align: left; }
.policy-hero h1 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 300; letter-spacing: 1px; margin: 15px 0 10px; color: #000; }
.policy-hero-sub { font-size: 1rem; color: #888; font-weight: 300; margin: 0; }

.policy-layout { display: flex; gap: 60px; align-items: flex-start; }

.policy-sidebar { flex: 0 0 220px; position: sticky; top: 110px; }
.policy-nav { display: flex; flex-direction: column; gap: 0; border-left: 2px solid #eee; }
.policy-nav-link { display: block; padding: 10px 20px; font-size: 0.85rem; color: #888; letter-spacing: 0.5px; transition: all 0.3s; border-left: 2px solid transparent; margin-left: -2px; }
.policy-nav-link:hover { color: #000; }
.policy-nav-link.active { color: #000; font-weight: 600; border-left-color: #000; }

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

.policy-section { margin-bottom: 50px; padding-top: 20px; }
.policy-section-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 200; color: #eee; line-height: 1; margin-bottom: -5px; }
.policy-section h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; color: #000; margin: 0 0 20px; letter-spacing: 0.5px; display: flex; align-items: center; gap: 12px; }
.policy-badge { display: inline-block; background: #000; color: #fff; font-size: 0.65rem; padding: 4px 10px; letter-spacing: 1px; font-weight: 700; text-transform: uppercase; }
.policy-intro { font-size: 0.95rem; color: #666; margin: 0 0 15px; line-height: 1.6; }

.policy-card { border: 1px solid #f0f0f0; padding: 0; }
.policy-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 25px; border-bottom: 1px solid #f5f5f5; }
.policy-item:last-child { border-bottom: none; }
.policy-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #f8f8f8; border-radius: 50%; color: #333; }
.policy-icon-check { background: #e8f5e9; color: #2e7d32; }
.policy-item p { margin: 0; font-size: 0.95rem; line-height: 1.7; color: #555; }
.policy-item p strong { color: #222; }

.policy-exceptions { padding: 25px; }
.policy-exception-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f8f8f8; }
.policy-exception-item:last-child { border-bottom: none; }
.policy-exception-item svg { flex-shrink: 0; margin-top: 2px; }
.policy-exception-item span { font-size: 0.95rem; color: #555; line-height: 1.5; }

.policy-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.policy-contact-card { border: 1px solid #f0f0f0; padding: 30px 25px; text-align: center; transition: all 0.3s; }
.policy-contact-card:hover { border-color: #000; transform: translateY(-3px); }
.policy-contact-card svg { color: #000; margin-bottom: 15px; }
.policy-contact-card h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 8px; }
.policy-contact-card p { font-size: 0.9rem; color: #666; margin: 0; line-height: 1.5; }

.policy-footer-note { margin-top: 40px; padding: 25px 30px; background: #faf9f7; border-left: 3px solid #000; }
.policy-footer-note p { margin: 0; font-size: 0.95rem; color: #555; line-height: 1.6; }

@media (max-width: 768px) {
    .policy-hero h1 { font-size: 1.8rem; }
    .policy-layout { flex-direction: column; gap: 30px; }
    .policy-sidebar { position: static; flex: none; width: 100%; }
    .policy-nav { flex-direction: row; overflow-x: auto; border-left: none; border-bottom: 2px solid #eee; padding-bottom: 0; gap: 0; scrollbar-width: none; }
    .policy-nav-link { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; margin-left: 0; margin-bottom: -2px; padding: 10px 15px; font-size: 0.8rem; }
    .policy-nav-link.active { border-left-color: transparent; border-bottom-color: #000; }
    .policy-section-number { font-size: 2rem; }
    .policy-section h2 { font-size: 1.3rem; }
    .policy-item { padding: 15px; gap: 12px; }
    .policy-contact-grid { grid-template-columns: 1fr; }
}

/* Shipping Highlights */
.shipping-highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.shipping-highlight-card { text-align: center; padding: 35px 20px; border: 1px solid #eee; transition: all 0.3s; }
.shipping-highlight-card:hover { border-color: #000; transform: translateY(-4px); }
.shipping-highlight-icon { margin-bottom: 15px; color: #000; }
.shipping-highlight-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 8px; }
.shipping-highlight-card p { font-size: 0.85rem; color: #888; margin: 0; font-weight: 300; }

@media (max-width: 768px) {
    .shipping-highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .shipping-highlight-card { padding: 20px 12px; }
    .shipping-highlight-card h3 { font-size: 0.85rem; }
}

/* ==================== CONTACT PAGE ==================== */
.contact-hero { position: relative; height: 45vh; min-height: 350px; display: flex; align-items: center; justify-content: center; text-align: center; background: #0a0a0a; overflow: hidden; }
.contact-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(30,30,30,0.7) 100%); }
.contact-hero-content { position: relative; z-index: 2; color: #fff; }
.contact-hero-content h1 { font-family: var(--font-heading); font-size: 3rem; font-weight: 300; margin: 15px 0 12px; letter-spacing: 1px; }
.contact-hero-content p { font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 300; }

/* İletişim Kartları */
.contact-cards-section { padding: 0; margin-top: -50px; position: relative; z-index: 3; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.contact-card-item { background: #fff; padding: 40px 25px; text-align: center; border: 1px solid #f0f0f0; transition: all 0.3s; }
.contact-card-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); z-index: 2; }
.contact-card-icon { margin-bottom: 18px; color: #000; }
.contact-card-whatsapp .contact-card-icon { color: #25D366; }
.contact-card-item h3 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 10px; }
.contact-card-item p { font-size: 0.9rem; color: #444; margin: 0 0 4px; }
.contact-card-detail { color: #999 !important; font-size: 0.82rem !important; }
.contact-card-btn { display: inline-block; margin-top: 10px; padding: 8px 20px; background: #25D366; color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; }
.contact-card-btn:hover { background: #1da851; color: #fff; transform: scale(1.05); }

/* Form + Info Layout */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: flex-start; }
.contact-form-wrapper h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 300; margin: 0 0 10px; }
.contact-form-desc { color: #888; font-size: 0.9rem; margin: 0 0 30px; font-weight: 300; }

.contact-alert { display: flex; align-items: center; gap: 10px; padding: 15px 20px; margin-bottom: 25px; font-size: 0.9rem; font-weight: 500; }
.contact-alert-success { background: #e8f5e9; color: #2e7d32; border-left: 3px solid #2e7d32; }
.contact-alert-error { background: #fef2f2; color: #b91c1c; border-left: 3px solid #b91c1c; }
.contact-alert svg { flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form-group { display: flex; flex-direction: column; gap: 6px; }
.contact-form-group label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: #555; }
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea { padding: 12px 15px; border: 1px solid #ddd; font-size: 0.92rem; font-family: inherit; transition: border-color 0.3s; background: #fafafa; }
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus { border-color: #000; outline: none; background: #fff; }
.contact-form-group textarea { resize: vertical; min-height: 120px; }
.contact-form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.contact-submit-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 40px; background: #000; color: #fff; border: none; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: all 0.3s; align-self: flex-start; }
.contact-submit-btn:hover { background: #222; transform: translateY(-2px); }

/* Sağ: Bilgi */
.contact-info-wrapper { display: flex; flex-direction: column; gap: 35px; }
.contact-info-block h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid #eee; }

/* FAQ */
.contact-faq { display: flex; flex-direction: column; gap: 0; }
.contact-faq-item { border-bottom: 1px solid #f0f0f0; }
.contact-faq-item summary { padding: 14px 0; font-size: 0.9rem; font-weight: 500; color: #333; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.contact-faq-item summary::-webkit-details-marker { display: none; }
.contact-faq-item summary::after { content: '+'; font-size: 1.2rem; font-weight: 300; color: #999; transition: transform 0.3s; }
.contact-faq-item[open] summary::after { content: '−'; }
.contact-faq-item[open] summary { color: #000; font-weight: 600; }
.contact-faq-item p { padding: 0 0 14px; font-size: 0.88rem; color: #666; line-height: 1.7; margin: 0; }
.contact-faq-item p a { color: #000; text-decoration: underline; }

/* Sosyal */
.contact-social-block { padding: 30px; background: #faf9f7; }
.contact-social-block h3 { border-bottom: none; padding-bottom: 0; }
.contact-social-block p { font-size: 0.88rem; color: #888; margin: 0 0 18px; line-height: 1.6; }
.contact-social-links { display: flex; gap: 12px; }
.contact-social-link { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid #ddd; color: #333; transition: all 0.3s; }
.contact-social-link:hover { background: #000; color: #fff; border-color: #000; }

@media (max-width: 768px) {
    .contact-hero-content h1 { font-size: 2rem; }
    .contact-cards-section { margin-top: -30px; }
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-submit-btn { width: 100%; }
}

/* ==================== PRODUCT SHARE BAR ==================== */
.product-share-bar { display: flex; align-items: center; gap: 15px; padding: 16px 0; margin-top: 15px; border-top: 1px solid #f0f0f0; }
.share-label { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: #999; white-space: nowrap; }
.share-buttons { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.share-btn { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #e8e8e8; background: #fff; color: #555; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; }
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

.share-whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; }
.share-facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.share-x:hover { background: #000; color: #fff; border-color: #000; }
.share-pinterest:hover { background: #E60023; color: #fff; border-color: #E60023; }
.share-copy:hover { background: #333; color: #fff; border-color: #333; }
.share-native:hover { background: #000; color: #fff; border-color: #000; }

.share-copied { background: #2e7d32 !important; color: #fff !important; border-color: #2e7d32 !important; }

@media (max-width: 768px) {
    .product-share-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
    .share-btn { width: 36px; height: 36px; }
}

/* ==================== ORDER TRACKING CARD ==================== */
.order-tracking-card { display: flex; flex-direction: column; gap: 8px; text-align: right; font-size: 0.85rem; background: #fafafa; padding: 12px 15px; border-radius: 10px; border: 1px solid #eee; }
.tracking-company { display: flex; align-items: center; justify-content: flex-end; gap: 6px; font-weight: 600; color: #333; font-size: 0.82rem; }
.tracking-number-row { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.tracking-no-label { color: #999; font-size: 0.8rem; }
.tracking-no-value { font-weight: 700; color: var(--primary); font-size: 0.88rem; font-family: 'SF Mono', 'Consolas', monospace; letter-spacing: 0.5px; }
.tracking-copy-btn { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: #fff; border: 1px solid #ddd; color: #888; cursor: pointer; transition: all 0.2s; border-radius: 4px; }
.tracking-copy-btn:hover { background: #000; color: #fff; border-color: #000; }
.tracking-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 18px; background: #000; color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s; margin-top: 4px; border-radius: 4px; }
.tracking-btn:hover { background: #1565c0; color: #fff; transform: translateY(-1px); }
