/* DEER DERI V5 Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Colors */
    --bg-color: #FFFFFF;
    --text-color: #1A1A1A;
    --text-light: #666666;
    --primary-color: #3E2723;
    /* Dark Brown */
    --accent-color: #FFD54F;
    /* Gold/Yellow for announcements */
    --accent-text: #000000;
    --border-color: #E0E0E0;
    --hover-bg: #F5F5F5;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1400px;
    --header-height: 80px;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

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

.btn-secondary {
    background-color: transparent;
    color: #000;
    border-color: #000;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

.btn-lg {
    padding: 14px 40px;
    font-size: 15px;
}

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

.mb-2 {
    margin-bottom: 20px;
}

.mb-4 {
    margin-bottom: 40px;
}

/* HEADER */
.announcement-bar {
    background-color: var(--accent-color);
    color: var(--accent-text);
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    z-index: 1002;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 60s linear infinite;
    white-space: nowrap;
}

.delete-btn-header {
    color: #999;
    cursor: pointer;
    font-size: 14px;
    padding: 0 5px;
    transition: color 0.3s;
}

.delete-btn-header:hover {
    color: #D32F2F;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

header {
    background-color: #fff;
    position: sticky;
    /* Make basic sticky first */
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: padding 0.3s;
}

.header-main {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shipping-info-box {
    border: 1px solid #000;
    color: #000;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
}

.nav-desktop {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
    padding: 10px 0;
    /* Create hover area */
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width 0.3s;
}

.nav-item:hover .nav-link::after {
    width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    /* Align slightly left */
    background: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #555;
    font-size: 14px;
    text-transform: none;
    transition: all 0.2s;
}

.nav-dropdown a:hover {
    background: #f9f9f9;
    color: #000;
    padding-left: 25px;
    /* Slight movement on hover */
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Reduced gap */
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #D32F2F;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO SLIDER */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    /* Left aligned per spec? Or center? Spec says "Sol veya sağ tarafa". */
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    /* Text above overlay */
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.slide-title {
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    /* Updated to match announcement bar yellow */
}

.slide-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* CATEGORY SPLIT */
.category-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.split-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.split-card:hover .split-img {
    transform: scale(1.05);
}

.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.split-card:hover .split-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.split-title {
    color: #fff;
    font-size: 2.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

/* NEW COLLECTION / PROMO */
.promo-section {
    padding: 80px 0;
    text-align: center;
    background-color: #FAF9F6;
}

.promo-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.promo-subtitle {
    color: var(--text-light);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* PRODUCT GRID */
.product-grid-section {
    padding: 60px 0;
}

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

.section-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin: 0;
}

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

.product-card {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
    /* Smooth edges */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background-color: #f9f9f9;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
}

.product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.2s ease-out;
    /* Fast fade */
    z-index: 1;
}

.product-thumb img.active {
    opacity: 1;
    z-index: 2;
}

.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 3;
    width: 80%;
    justify-content: center;
    pointer-events: none;
    /* Let mouse pass through to image */
}

.slider-bar {
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    flex-grow: 1;
    border-radius: 2px;
    transition: background-color 0.2s;
}

.slider-bar.active {
    background-color: #fff;
    /* Active white */
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    z-index: 10;
    /* Increased to stay above active images */
    pointer-events: none;
    /* Let mouse interaction pass through */
}

.badge-sale {
    background-color: #D32F2F;
}

.badge-new {
    background-color: #388E3C;
}

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

.product-name {
    font-size: 18px;
    /* Increased from 15px */
    font-weight: 500;
    margin-bottom: 5px;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}

.product-name a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.2s;
}

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

.star-rating {
    color: #FFC107;
    /* Gold */
    font-size: 12px;
    margin-bottom: 5px;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-current {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.vat-text {
    font-size: 11px;
    color: #888;
}

.add-to-cart-listing {
    background: linear-gradient(135deg, #8B6F47 0%, #5D4E37 100%);
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart-listing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A0826D 0%, #6F5C47 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.add-to-cart-listing:hover::before {
    left: 0;
}

.add-to-cart-listing:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 78, 55, 0.4);
}

.product-colors {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

/* USP SECTION */
.usp-section {
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.usp-item i {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.usp-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.usp-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* FOOTER */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    /* First column wider */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

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

.footer-links a {
    font-size: 14px;
    color: #999;
}

.footer-links a:hover {
    color: #fff;
}

.bottom-bar {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

/* SEO Keyword Buttons */
.keyword-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px);
}

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

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

    .category-split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .nav-desktop {
        display: none;
    }

    .slide-title {
        font-size: 2.5rem;
    }

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

    .usp-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 30px;
    }

    .usp-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

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

/* Slider Animation (Ken Burns Effect) */
@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.slide.active img {
    animation: kenburns 8s ease-out forwards;
}

/* Faded Overlay for Slider */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Dark overlay */
    z-index: 1;
    /* Overlay above video */
    pointer-events: none;
}

/* Ensure Dropdown Button Text is White */
.cart-dropdown .btn-primary,
.login-dropdown .btn-primary {
    color: #fff !important;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Critical for clipping video */
    background: #000;
    z-index: 0;
    /* Base level, below overlay */
    pointer-events: none;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
}

.icon-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    /* Reduced gap */
    cursor: pointer;
    padding: 10px 0;
}

.icon-group a {
    color: var(--text-color);
    font-size: 14px;
    /* Reduced from 18px */
    text-decoration: none;
    transition: color 0.3s;
}

.icon-group i {
    font-size: 16px;
    /* Reduced icon size */
}

.icon-label {
    font-size: 12px;
    /* Reduced label size */
    font-weight: 500;
    color: var(--text-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    /* More premium shadow */
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    /* Higher z-index */
    border-radius: 8px;
}

/* Dropdown Arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.03);
}

.icon-group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Shipping Progress Bar */
.shipping-progress-container {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.shipping-text {
    font-size: 12px;
    margin-bottom: 5px;
    color: #555;
    text-align: center;
}

.shipping-text strong {
    color: #2E7D32;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    width: 0%;
    transition: width 0.5s ease;
}

/* Cart Dropdown Buttons */
.dropdown-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-checkout {
    background: #000;
    color: #fff !important;
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-radius: 4px;
}

.btn-view-cart {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-radius: 4px;
}

.btn-checkout:hover {
    background: #333;
    color: #fff;
}

.btn-view-cart:hover {
    background: #f5f5f5;
}

/* Login Dropdown */
.login-dropdown {
    width: 280px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.login-form .register-btn {
    background: #f5f5f5;
    color: #333;
    width: 100%;
    padding: 10px;
    text-align: center;
    display: block;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* Cart Dropdown Preview */
.cart-dropdown {
    width: 400px;
    padding: 0;
}

.cart-preview-wrapper {
    display: flex;
    position: relative;
}

.cart-image-preview {
    position: absolute;
    left: -220px;
    top: 0;
    width: 200px;
    height: 200px;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    overflow: hidden;
    z-index: 1001;
}

.cart-image-preview.active {
    opacity: 1;
}

.cart-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-items-list {
    flex: 1;
    padding: 20px;
}

.preview-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 10px;
}

.preview-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.preview-info {
    flex: 1;
    font-size: 13px;
}

.preview-title {
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
}

.preview-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin: 15px 0;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* Mini Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.mini-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 10001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mini-cart.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
}

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

.close-cart {
    cursor: pointer;
    font-size: 20px;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mini-cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 15px;
}

.mini-cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.item-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.item-price {
    font-weight: 700;
    font-size: 14px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .mini-cart {
        width: 100%;
        right: -100%;
    }
}

/* --- MOBILE RESPONSIVE STYLES --- */

/* Mobile Header & Sidebar */
.mobile-header-bar {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    font-size: 20px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    display: block;
    /* Ensure block display, let left:-280px hide it. But on desktop we want display:none */
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.sidebar-close {
    font-size: 20px;
    cursor: pointer;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-item {
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 10px;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
}

/* Horizontal Mobile Nav */
.mobile-horizontal-nav {
    display: none;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
}

.mobile-horizontal-nav::-webkit-scrollbar {
    display: none;
}

.mobile-horizontal-nav a {
    display: inline-block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: none;
}

.mobile-horizontal-nav .nav-item-mobile {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mobile-submenu-container {
    display: none;
    background: #f9f9f9;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.mobile-submenu-container.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.mobile-submenu-container a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-submenu-container a:last-child {
    border-bottom: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-submenu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0 0 15px;
    margin-top: 10px;
    background: #f9f9f9;
}

.sidebar-submenu.active {
    display: flex;
}

.sidebar-submenu a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    padding: 5px 0;
}

/* Responsive Media Queries */

/* Desktop Specific: Hide Mobile Sidebar */
@media (min-width: 992px) {
    .mobile-sidebar {
        display: none;
    }

    .mobile-header-bar {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .nav-desktop {
        display: none;
    }

    .mobile-header-bar {
        display: none;
        /* Hide hamburger menu */
    }

    .mobile-horizontal-nav {
        display: flex;
        /* Show horizontal nav */
    }

    .main-header .container {
        padding: 0 15px;
    }

    .shipping-info-box {
        display: none !important;
        /* Hide on tablet/mobile */
    }
}

@media (max-width: 768px) {

    /* Header Adjustments */
    .header-main {
        padding: 10px 0;
    }

    .logo img {
        height: 50px !important;
        /* Increased from 30px */
    }

    /* Slider Adjustments */
    .slider-container {
        height: 60vh;
        /* Reduce height on mobile */
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    /* Grids */
    .product-grid,
    .grid-products {
        grid-template-columns: 1fr !important;
        /* 1 column on mobile */
        gap: 20px;
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile */
        gap: 15px;
    }

    .usp-grid .usp-item:last-child {
        grid-column: span 2;
        /* Center last item if odd */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* Stack footer */
        gap: 30px;
        text-align: center;
    }

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

    /* Cart Popup on Mobile: Make it full width or adjusted */
    .dropdown-menu {
        width: 300px;
        right: -20px;
        /* Shift a bit */
    }

    .cart-dropdown {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 50vh;
    }

    .slide-title {
        font-size: 2rem;
    }

    .product-grid {
        gap: 10px;
    }

    /* Ensure cart dropdown fits screen */
    .dropdown-menu {
        width: 280px;
        right: -10px;
    }

    /* Fix Mobile Slider Text */
    .slide-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 0 15px;
        /* Add padding to prevent text touching edges */

        /* Flexbox Centering */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /* Align to bottom */
        align-items: center;
        text-align: center;
        padding-bottom: 60px;
        /* Space from bottom */

        opacity: 1 !important;
        z-index: 10;
        transform: none;
        /* Reset transform */
    }

    .slide-title {
        font-size: 1.8rem;
        /* Increased from 1.5rem */
        line-height: 1.2;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .slide-subtitle {
        font-size: 1.1rem;
        /* Increased from 0.9rem */
        margin-bottom: 20px;
        letter-spacing: 1px;
        padding: 0 10px;
    }

    .slide-content .btn {
        padding: 10px 20px;
        font-size: 13px;
        /* Increased from 11px */
    }
}

/* Fix for Desktop Slider Text Visibility */
.slide.active .slide-content {
    opacity: 1;
    transform: translateY(-50%);
}

/* --- ORDER TRACKING STYLES --- */
.btn-track-cargo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-track-cargo:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.tracking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tracking-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.tracking-modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.tracking-modal-overlay.visible .tracking-modal-content {
    transform: translateY(0);
}

.close-tracking-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-tracking-modal:hover {
    color: #333;
}

.tracking-header {
    text-align: center;
    margin-bottom: 30px;
}

.tracking-header h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.order-ref {
    color: #666;
    margin-bottom: 5px;
}

.order-estimated-date {
    font-size: 14px;
    background: #f8f9fa;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 5px;
}

/* Stepper Styles */
.tracking-stepper-container {
    margin: 30px 0;
    position: relative;
}

.stepper-progress-bar {
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #e0e0e0;
    z-index: 1;
    border-radius: 2px;
}

.stepper-progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 1s ease-in-out;
    border-radius: 2px;
}

.stepper-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    text-align: center;
    opacity: 0.5;
    transition: all 0.5s;
}

.step-item.completed,
.step-item.current {
    opacity: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #999;
    margin-bottom: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-item.completed .step-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.step-item.current .step-icon {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(62, 39, 35, 0.1);
}

.step-label {
    font-size: 11px;
    font-weight: 600;
    color: #333;
}

.step-pulse {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.2;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.cancelled-view {
    text-align: center;
    padding: 20px;
}

.cancelled-state .cancelled-icon {
    font-size: 50px;
    color: var(--danger-color);
    margin-bottom: 20px;
}

.tracking-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.tracking-info-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.tracking-info-item {
    flex: 1;
    min-width: 120px;
}

.tracking-info-item label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.tracking-info-item span {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.tracking-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-whatsapp-support {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-whatsapp-support:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .step-item {
        width: 60px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .stepper-progress-bar {
        top: 20px;
        left: 30px;
        right: 30px;
    }

    .step-label {
        font-size: 9px;
    }

    .tracking-info-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Luxury Info Boxes - Premium Design */
.product-info-boxes {
    position: relative;
}

.luxury-info-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

.luxury-info-box:nth-child(1) {
    animation-delay: 0.1s;
}

.luxury-info-box:nth-child(2) {
    animation-delay: 0.2s;
}

.luxury-info-box:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.luxury-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-info-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.luxury-info-box:hover::before {
    opacity: 1;
}

.luxury-info-icon-wrapper {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFE082 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
    position: relative;
}

.luxury-info-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.luxury-info-icon {
    font-size: 22px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 1;
}

.luxury-info-box:hover .luxury-info-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFC107 100%);
    transform: rotate(5deg) scale(1.1);
}

.luxury-info-box:hover .luxury-info-icon {
    transform: scale(1.15);
    color: #000;
}

.luxury-info-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.luxury-info-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.luxury-info-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Trust Badges Section */
.trust-badges-section {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 10px;
    border: 1px dashed #ddd;
    text-align: center;
}

.trust-badges-title {
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 24px;
    color: var(--primary-color);
}

.trust-badge span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 600;
}

/* Last Visited Luxury Style */
.last-visited-luxury {
    margin-top: 30px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.last-visited-header {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    text-align: center;
}

.last-visited-card {
    display: flex;
    gap: 15px;
    padding: 10px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.last-visited-card:hover {
    background: #fafafa;
}

.last-visited-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 2px;
}

.last-visited-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.last-visited-name {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.last-visited-price {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
}


/* CREATIVE MOSAIC SECTION - FULL WIDTH */
.creative-mosaic-section {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Equal Columns */
    gap: 0;
    /* Seamless */
    height: 700px;
    /* Taller height for dramatic effect */
}

.mosaic-item {
    display: block;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle separator */
}

/* Make sure images cover the area */
.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    /* Slightly darker for better text contrast */
    transition: background 0.3s ease;
}

.mosaic-item:hover .mosaic-overlay {
    background: rgba(0, 20, 40, 0.4);
    /* Colored Tint on Hover */
}

.mosaic-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 30px;
    color: #fff;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    text-align: center;
    /* Center text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.mosaic-title {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(0);
    /* Always visible */
    transition: transform 0.4s ease;
}

.mosaic-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 20px;
    transform: translateY(0);
}

.mosaic-btn {
    display: inline-block;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mosaic-item:hover .mosaic-btn {
    opacity: 1;
    transform: translateY(0);
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Animations */
.mosaic-item:hover .mosaic-title {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .mosaic-item {
        height: 500px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Global Page Loader */
#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#global-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(62, 39, 35, 0.1);
    /* --primary-color with opacity */
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    margin-bottom: 20px;
}

.loader-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}