/* Tajawal Font */
@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

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

/* Prevent horizontal scroll and gaps */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Ensure all sections don't exceed page width */
section,
article,
main,
header,
footer,
div {
    max-width: 100%;
}

/* Language Support */
/* Default: Show Arabic, Hide English */
.en-text {
    display: none !important;
}

.ar-text {
    display: inline !important;
}

/* When LTR: Show English, Hide Arabic */
body[dir="ltr"] .en-text {
    display: inline !important;
}

body[dir="ltr"] .ar-text {
    display: none !important;
}

body[dir="ltr"] {
    direction: ltr;
}

body[dir="rtl"] {
    direction: rtl;
}

.lang-toggle {
    font-size: 13px;
    color: #1a1a1a;
    transition: color 0.3s;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 500;
}

.lang-toggle:hover {
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

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

input,
textarea {
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Top Bar */
.top-bar {
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 12px;
}

.top-bar-item,
.delivery-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar .icon {
    width: 16px;
    height: 16px;
}

/* Main Header */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    will-change: box-shadow;
    transition: box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Header Top Row */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-right,
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hide mobile logo on desktop */
.mobile-logo-between {
    display: none !important;
}

.currency-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.currency-selector:hover {
    background-color: #f5f5f5;
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.currency-selector:hover .currency-dropdown,
.currency-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
}

.currency-option:hover {
    background-color: #f5f5f5;
}

.currency-option .flag-icon {
    width: 24px;
    height: 16px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
}

.flag-icon {
    width: 20px;
    height: 14px;
}

.arrow-down {
    width: 14px;
    height: 14px;
}

.divider {
    color: #ccc;
}

.lang-link {
    font-size: 13px;
}

/* Search Box */
.header-center {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #666;
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
    border-color: #1a1a1a;
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: -1px;
}

.search-suggestions-header {
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f5f5f5;
}

.search-suggestion-item:hover {
    background: #f9f9f9;
}

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

.suggestion-icon {
    width: 16px;
    height: 16px;
    color: #666;
    flex-shrink: 0;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-meta {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.suggestion-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.search-no-results {
    padding: 20px 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Header Links */
.header-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    position: relative;
}

/* Hide mobile menu button on desktop */
.mobile-menu-btn {
    display: none;
}

/* Hide mobile logo on desktop */
.mobile-logo {
    display: none;
}

/* Hide search button on desktop */
.header-search-btn {
    display: none;
}

/* Hide mobile wishlist button on desktop */
.mobile-wishlist-btn {
    display: none;
}

.header-link .icon {
    width: 20px;
    height: 20px;
}

.badge {
    background: #1a1a1a;
    color: #ffffff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-right: 2px;
}

/* Logo */
.logo-container,
.header-middle {
    text-align: center;
    /* padding: 20px 0; */
}

.logo-image {
    height: 100px;
    width: auto;
    display: inline-block;
}

.logo-svg {
    height: 40px;
}

.logo-tagline {
    font-size: 9px;
    letter-spacing: 3px;
    margin-top: 5px;
    color: #666;
}

/* Main Navigation */
.main-nav,
.header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 0;
    border-top: 0;
    position: relative;
    max-width: 100%;
    overflow: visible;
}

/* Keep the separator line only where needed */
.header-bottom {
    border-top: 1px solid #f0f0f0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 8px 0;
}

.nav-link.has-dropdown {
    position: relative;
}

.nav-link.cyber-sale {
    color: #2d1300;
}

.dropdown-trigger .arrow-down,
.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.nav-item:hover .arrow-down {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown-menu {
    position: fixed;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #e5e5e5;
    opacity: 0;
    transition: opacity 0.18s ease, max-height 0.26s ease;
    z-index: 1000;
    margin-top: 0;
    /* Roll-down effect: closed height is 0, open expands downward */
    max-height: 0;
    overflow: hidden;
    overscroll-behavior: contain;
    pointer-events: none;
}

/* Ultra-thin, professional scrollbar for ALL dropdown menus.
   It will only appear automatically when content overflows. */
.dropdown-menu {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #cfcfcf transparent;
}

.dropdown-menu::-webkit-scrollbar {
    width: 2px;
}

/* Hide default scrollbar arrows/buttons (Windows/WebKit) */
.dropdown-menu::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.dropdown-menu::-webkit-scrollbar-corner {
    background: transparent;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 999px;
}

.dropdown-menu:hover::-webkit-scrollbar-thumb {
    background: #bdbdbd;
}

.dropdown-menu:hover::-webkit-scrollbar-thumb:hover {
    background: #a6a6a6;
}

/* Open state is controlled by JS to avoid hover/scroll "sticky" behavior */
.nav-item.dropdown.is-open > .dropdown-menu {
    opacity: 1;
    max-height: calc(100vh - var(--dropdown-top, 0px) - 16px);
    overflow-y: auto;
    pointer-events: auto;
}

.mega-menu {
    /* Match hero-banner max width for perfect alignment */
    width: 1198px;
    max-width: 1198px;
    box-sizing: border-box;
}

.designers-menu {
    width: 1198px;
    max-width: 1198px;
    box-sizing: border-box;
}

.dropdown-wrapper {
    display: flex;
    width: 100%;
    min-height: 450px;
    box-sizing: border-box;
    /* Prevent the image column from stretching when content gets tall */
    align-items: flex-start;
    /* Make physical placement deterministic (independent of text direction) */
    direction: ltr;
    flex-direction: row;
}

/* RTL: keep a consistent gap between image and content */
[dir="rtl"] .dropdown-wrapper {
    column-gap: 20px;
}

/* Default order (LTR): content left, image right */
.dropdown-content { order: 0; }
.dropdown-image-wrapper { order: 1; }

/* RTL: image on the left, content on the right */
[dir="rtl"] .dropdown-content { order: 1; }
[dir="rtl"] .dropdown-image-wrapper { order: 0; }

.dropdown-content {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap */
    padding: 22px 30px;
    gap: 0px;
    flex: 1;
    box-sizing: border-box;
    /* Default layout (LTR physical flow) */
    flex-direction: row;
    justify-content: flex-start;
}

/* RTL: start columns from the RIGHT edge (beginning of menu in Arabic) */
[dir="rtl"] .dropdown-content {
    direction: rtl;
    flex-direction: row;
    justify-content: flex-start;
}

/* LTR: normal */
[dir="ltr"] .dropdown-content {
    direction: ltr;
    flex-direction: row;
    justify-content: flex-start;
}

.dropdown-column {
    /* Force exactly 5 columns per row: (100% - 4 gaps of 30px) / 5 = 19.04% each */
    flex: 0 0 calc(19.04% - 0px);
    width: calc(19.04%);
    max-width: calc(19.04%);
    min-width: calc(19.04%);
    box-sizing: border-box;
    /* Default is RTL */
    text-align: right;
}

body[dir="ltr"] .dropdown-column {
    text-align: left;
}

body[dir="rtl"] .dropdown-column {
    text-align: right;
}

/* Image wrapper - separate from columns */
.dropdown-image-wrapper {
    flex: 0 0 256px;
    width: 256px;
    position: relative;
    overflow: hidden;
    /* Lock banner size (never stretch with long columns) */
    height: 417px;
    max-height: 450px;
    flex-shrink: 0;
    align-self: flex-start;
    background: #fff;
    margin-top: 18px;
    /* Default (LTR): image on right, so add space on its left */
    margin-left: 20px;
    margin-right: 14px;
}

/* RTL spacing (as requested) */
[dir="rtl"] .dropdown-image-wrapper {
    /* margin-right: 20px; */
    margin-left: 20px;
}

/* Smaller desktop screens (1025px - 1499px): keep the same mega-menu design, but tighter spacing */
@media (max-width: 1499px) and (min-width: 1025px) {
    .dropdown-wrapper {
        min-height: 430px;
    }

    .dropdown-content {
        padding: 0 22px;
        gap: 22px;
    }

    .dropdown-column {
        /* Same 5-column desktop layout, just tighter spacing */
        flex: 0 0 calc(19.04% - 0px);
        width: calc(19.04%);
        max-width: calc(19.04%);
        min-width: calc(19.04%);
    }

    .dropdown-image-wrapper {
        flex: 0 0 clamp(240px, 18vw, 256px);
        width: clamp(240px, 18vw, 256px);
        /* Fill the reserved vertical space (min-height 430px - margin-top 14px) */
        height: 416px;
        max-height: none;
        margin-top: 14px;
        margin-left: 20px;
        margin-right: 12px;
    }

    [dir="rtl"] .dropdown-image-wrapper {
        /* margin-right: 20px; */
        margin-left: 20px;
    }
}

.dropdown-image {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Banner layout: image with overlayed text (like the correct screenshot) */
.dropdown-image {
    padding: 0;
    box-sizing: border-box;
}

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

.dropdown-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}

.dropdown-image-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    color: #ffffff;
    z-index: 1;
    /* Default is RTL */
    text-align: center;
}

body[dir="ltr"] .dropdown-image-content {
    text-align: left;
}

body[dir="rtl"] .dropdown-image-content {
    text-align: center;
}

.dropdown-image-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dropdown-image-content p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.dropdown-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    border: 2px solid #ffffff;
}

.dropdown-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

/* Deferred rendering for huge menus is handled by JS (on-demand build). */

.dropdown-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #1a1a1a;
    white-space: nowrap;
    /* Default is RTL */
    text-align: right;
}

body[dir="ltr"] .dropdown-title {
    text-align: left;
}

body[dir="rtl"] .dropdown-title {
    text-align: right;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column ul.no-title {
    margin-top: 35px;
}

.dropdown-column ul li {
    margin-bottom: 12px;
    line-height: 1.4;
}

.dropdown-column ul li a {
    font-size: 13px;
    color: #666;
    transition: color 0.3s;
    display: block;
    white-space: nowrap;
    /* Default is RTL */
    text-align: right;
}

body[dir="ltr"] .dropdown-column ul li a {
    text-align: left;
}

body[dir="rtl"] .dropdown-column ul li a {
    text-align: right;
}

.dropdown-column ul li a:hover {
    color: #1a1a1a;
}

/* Nested subcategories styling */
.dropdown-column ul ul {
    padding-right: 15px;
    margin-top: 8px;
}

body[dir="ltr"] .dropdown-column ul ul {
    padding-left: 15px;
    padding-right: 0;
}

.dropdown-column ul ul li {
    margin-bottom: 8px;
}

.dropdown-column ul ul li a {
    font-size: 13px;
    color: #666;
    position: relative;
    padding-right: 12px;
}

body[dir="ltr"] .dropdown-column ul ul li a {
    padding-left: 12px;
    padding-right: 0;
}

.dropdown-column ul ul li a:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #999;
    border-radius: 50%;
}

body[dir="ltr"] .dropdown-column ul ul li a:before {
    left: 0;
    right: auto;
}

.dropdown-column ul ul li a:hover {
    color: #1a1a1a;
}

.dropdown-column ul ul li a:hover:before {
    background: #1a1a1a;
}

/* زر مشاهدة المزيد في القوائم المنسدلة - يظهر على سطح المكتب فقط */
.view-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b7355;
    border: 1px solid #8b7355;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.view-more-btn:hover {
    background: #8b7355;
    color: #ffffff;
    border-color: #8b7355;
}

/* RTL alignment */
[dir="rtl"] .view-more-btn {
    text-align: center;
}

[dir="ltr"] .view-more-btn {
    text-align: center;
}

/* إخفاء الزر على الأجهزة المحمولة */
@media (max-width: 1024px) {
    .view-more-btn,
    .view-more-container,
    .view-more-btn-single {
        display: none;
    }
}

/* View More Container - Single Button at Bottom */
.view-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.view-more-btn-single {
    display: inline-block;
    padding: 12px 32px;
    background: #b78953;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.view-more-btn-single:hover {
    background: #956f42;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Skeleton loader for mega menu */
.skeleton-item {
    margin-bottom: 12px;
    animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-loading {
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-title {
    margin-bottom: 10px;
}

.skeleton-title .skeleton-line {
    width: 80%;
    height: 14px;
}

.skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin: 8px 0;
}

.skeleton-item .skeleton-line {
    margin: 6px 0;
    height: 13px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Hero Banner */
.hero-banner {
    height: 660px;
    max-width: 1198px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #8b7355 0%, #6b5645 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 1;
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* 1025px - 1499px: fill hero area completely (no background showing) */
@media (max-width: 1499px) and (min-width: 1025px) {
    .hero-banner-image {
        object-fit: cover;
        object-position: center;
    }
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: #1a1a1a;
}

@media (min-width: 1400px) {
    .hero-banner {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Desktop only (min-width: 1025px) - Hide mobile sidebar */
@media (min-width: 1025px) {
    .mobile-sidebar,
    .mobile-menu-overlay {
        display: none !important;
    }
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.hero-text {
    color: #ffffff;
    text-align: left;
}

body[dir="rtl"] .hero-text {
    text-align: right;
}

body[dir="ltr"] .hero-text {
    text-align: left;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-tap-highlight-color: transparent;
}

/* Cyber Sale Banner */
.cyber-sale-banner {
    display: flex;
    background: linear-gradient(135deg, #4a1a1a 0%, #2a0a0a 100%);
    padding: 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: 281px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cyber-sale-banner picture,
.cyber-sale-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

.cyber-sale-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cyber-sale-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(74, 26, 26, 0);
    z-index: 0;
    pointer-events: none;
}

.cyber-sale-banner > * {
    position: relative;
    z-index: 1;
}

.cyber-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cyber-discount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.extra-discount {
    font-size: 36px;
}

.cyber-code {
    font-size: 14px;
    margin-bottom: 20px;
}

.cyber-btn {
    display: inline-block;
    padding: 16px 50px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-tap-highlight-color: transparent;
}

/* Gifts Section */
.gifts-section {
    padding: 80px 0px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gift-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4.7;
    pointer-events: auto;
}

.gift-card * {
    transition: none !important;
    transform: none !important;
}

.gift-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    transition: none !important;
    transform: none !important;
    will-change: auto;
    display: block;
}

.gift-title {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 80%;
    display: none;
}

/* D&G Banner */
.dg-banner {
    display: flex;
    height: 500px;
    position: relative;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
}

.dg-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dg-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.dg-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.dg-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dg-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.dg-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Section */
.must-have-section,
.perfect-present-section,
.perfect-gift-section {
    padding: 80px 0px;
    max-width: 1282px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

/* Prevent image download/right-click on product sections */
.must-have-section img,
.perfect-gift-section img,
.must-have-section .product-card,
.perfect-gift-section .product-card {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: auto;
}

.must-have-section img,
.perfect-gift-section img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.shop-all {
    color: #2d1300;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2d1300;
    padding-bottom: 2px;
}

.products-slider {
    position: relative;
    padding: 0 0px;
    overflow: visible;
    z-index: 1;
}

.products-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    position: relative;
    z-index: 1;
}

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

.product-card {
    min-width: 350px;
    max-width: 350px;
    width: 350px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.product-card * {
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
}

.product-image-wrapper {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: #f5f5f5;
    margin-bottom: 15px;
    overflow: hidden;
    text-decoration: none;
}

.product-image-wrapper * {
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper img.product-image-primary {
    opacity: 1;
    z-index: 2;
}

.product-image-wrapper img.product-image-secondary {
    opacity: 0;
    z-index: 1;
}

/* Image swap on hover - using product-card to avoid overlay interference */
.product-card:hover .product-image-primary {
    opacity: 0 !important;
}

.product-card:hover .product-image-secondary {
    opacity: 1 !important;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    will-change: auto;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-btn svg {
    width: 18px;
    height: 18px;
}

.wishlist-btn:hover,
.wishlist-btn:active {
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.badge.new-season {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.product-info * {
    transition: none !important;
    transform: none !important;
}

.product-brand {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    color: #2d1300;
}

.size-selector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0 24px;
}

.product-card:hover .size-selector {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.size-options-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
    align-items: center;
}

.size-options-wrapper::-webkit-scrollbar {
    display: none;
}

.size-option {
    padding: 0;
    border: none;
    background: transparent;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: auto;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.size-option:hover {
    color: #1a1a1a;
    font-weight: 500;
}

.size-option.selected {
    color: #1a1a1a;
    font-weight: 600;
}

.size-arrow {
    position: relative;
    width: 16px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.size-arrow:hover {
    opacity: 1;
}

.size-arrow.prev {
    order: 1;
}

.size-arrow.next {
    order: -1;
}

.size-arrow svg {
    width: 12px;
    height: 12px;
    stroke: #1a1a1a;
    fill: none;
    stroke-width: 2.5;
}

/* Color Selector */
.color-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    margin-top: 4px;
}

.color-options-wrapper {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
    align-items: center;
    scroll-behavior: smooth;
}

.color-options-wrapper::-webkit-scrollbar {
    display: none;
}

.color-option {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
}

.color-option:hover {
    transform: scale(1.2);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.color-option.selected {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1a1a1a;
}

.color-arrow {
    position: relative;
    width: 10px;
    height: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.color-arrow:hover {
    opacity: 0.8;
}

.color-arrow.prev {
    order: 1;
}

.color-arrow.next {
    order: -1;
}

.color-arrow svg {
    width: 8px;
    height: 8px;
    stroke: #1a1a1a;
    fill: none;
    stroke-width: 2.5;
}

/* Featured Section Styles */
.featured-colors-wrapper {
    display: block;
    margin-top: 8px;
}

.featured-color-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.featured-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.featured-color-more {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    margin-left: 2px;
}

/* Featured Product Overlay */
.featured-product-overlay,
.perfect-gift-overlay {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-card:hover .featured-product-overlay,
.product-card:hover .perfect-gift-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.overlay-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
}

.overlay-image-section {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: #f5f5f5;
    overflow: hidden;
}

.overlay-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.overlay-main-image.overlay-image-primary {
    opacity: 1;
    z-index: 2;
}

.overlay-main-image.overlay-image-secondary {
    opacity: 0;
    z-index: 1;
}

/* Change overlay images on hover */
.product-card:hover .overlay-image-primary {
    opacity: 0 !important;
}

.product-card:hover .overlay-image-secondary {
    opacity: 1 !important;
}

.overlay-wishlist-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer !important;
    pointer-events: all !important;
    z-index: 9999 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overlay-wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.overlay-wishlist-btn:active {
    transform: scale(0.95);
}

.overlay-wishlist-btn.active svg {
    fill: #e91e63;
    stroke: #e91e63;
}

.overlay-wishlist-btn svg {
    width: 18px;
    height: 18px;
    pointer-events: none !important;
}

.overlay-wishlist-btn svg * {
    pointer-events: none !important;
}

.overlay-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #ffffff;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overlay-info-section {
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-20%);
    z-index: 10;
    pointer-events: all !important;
}

.overlay-product-brand {
    font-size: 11px;
    color: #000000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 5px 0;
    text-align: center;
}

.overlay-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    text-align: center;
    line-height: 1.3;
}

.overlay-product-price {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    text-align: center;
}

.overlay-sale-price {
    color: #2d1300;
    margin-right: 8px;
}

.overlay-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

.overlay-gallery-section {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 100;
    pointer-events: all !important;
}

.overlay-gallery-images {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    max-width: calc(60px * 3 + 8px * 2);
    justify-content: flex-start;
    pointer-events: all !important;
}

.overlay-gallery-images::-webkit-scrollbar {
    display: none;
}

.overlay-gallery-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
    position: relative;
    cursor: pointer !important;
    pointer-events: all !important;
    transition: opacity 0.2s ease;
}

.overlay-gallery-link.active {
    opacity: 1;
}

.overlay-gallery-link:not(.active) {
    opacity: 0.6;
}

.overlay-gallery-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer !important;
}

.overlay-gallery-thumb {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: block;
    border: 2px solid transparent;
}

.overlay-gallery-link.active .overlay-gallery-thumb {
    border-color: #000;
    transform: scale(1.05);
}

.overlay-gallery-thumb:hover,
.overlay-gallery-link:hover .overlay-gallery-thumb {
    transform: scale(1.05);
}

.overlay-gallery-nav {
    width: 28px !important;
    height: 28px !important;
    background: #ffffff !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    z-index: 99999 !important;
    pointer-events: all !important;
    position: relative !important;
}

.overlay-gallery-nav:hover {
    background: #1a1a1a !important;
    transform: scale(1.1) !important;
}

.overlay-gallery-nav:hover svg {
    stroke: #ffffff !important;
}

.overlay-gallery-nav svg {
    width: 16px !important;
    height: 16px !important;
    stroke: #1a1a1a !important;
    fill: none !important;
    stroke-width: 2.5 !important;
    pointer-events: none !important;
}

.overlay-gallery-nav svg path,
.overlay-gallery-nav svg *,
.overlay-gallery-nav path {
    pointer-events: none !important;
}

/* Force gallery navigation buttons to be clickable */
.overlay-gallery-section {
    pointer-events: all !important;
}

.overlay-gallery-nav,
button.overlay-gallery-nav,
.overlay-gallery-nav.prev-gallery,
.overlay-gallery-nav.next-gallery {
    pointer-events: all !important;
    cursor: pointer !important;
}

.overlay-sizes-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 100;
    pointer-events: all !important;
}

.overlay-sizes-section {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    max-width: calc(28px * 3 + 8px * 2);
    justify-content: flex-start;
}

.overlay-sizes-section::-webkit-scrollbar {
    display: none;
}

.overlay-size-item {
    font-size: 12px;
    padding: 2px 0;
    color: #1a1a1a;
    font-weight: 400;
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.overlay-sizes-nav {
    width: 28px !important;
    height: 28px !important;
    background: #ffffff !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    z-index: 99999 !important;
    pointer-events: all !important;
    position: relative !important;
}

.overlay-sizes-nav:hover {
    background: #1a1a1a !important;
    transform: scale(1.1) !important;
}

.overlay-sizes-nav:hover svg {
    stroke: #ffffff !important;
}

.overlay-sizes-nav svg {
    width: 16px !important;
    height: 16px !important;
    stroke: #1a1a1a !important;
    fill: none !important;
    stroke-width: 2.5 !important;
    pointer-events: none !important;
}

.overlay-sizes-nav svg path,
.overlay-sizes-nav svg *,
.overlay-sizes-nav path {
    pointer-events: none !important;
}

/* Force sizes navigation buttons to be clickable */
.overlay-sizes-wrapper {
    pointer-events: all !important;
}

.overlay-sizes-nav,
button.overlay-sizes-nav,
.overlay-sizes-nav.prev-sizes,
.overlay-sizes-nav.next-sizes {
    pointer-events: all !important;
    cursor: pointer !important;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
    opacity: 0.7;
    pointer-events: all !important;
}

.slider-btn:hover {
    opacity: 1;
    box-shadow: none;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    right: -70px;
}

.slider-btn.next {
    left: -70px;
}

.slider-btn svg {
    width: 32px;
    height: 32px;
    stroke: #333;
    stroke-width: 2;
    transform: rotate(180deg);
    pointer-events: none !important;
}

.slider-btn svg *,
.slider-btn svg path,
.slider-btn svg polyline {
    pointer-events: none !important;
}

/* Gucci Spotlight */
.gucci-spotlight {
    display: flex;
    height: 500px;
    background: linear-gradient(135deg, #0d3d2d 0%, #1a5a47 100%);
    position: relative;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
}

.gucci-spotlight-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gucci-spotlight::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

}

.gucci-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-align: center;
}

.gucci-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.gucci-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.gucci-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Discover Section */
.discover-section {
    padding: 80px 0px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Vertical Images Section */
.vertical-images-section {
    padding: 60px 0px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.vertical-images-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vertical-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vertical-image-card {
    position: relative;
    aspect-ratio: 3/4.7;
    overflow: hidden;
    cursor: pointer;
}

.vertical-image-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.vertical-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.vertical-image-card:hover .vertical-image {
    transform: scale(1.05);
}

.vertical-image-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    width: 90%;
    margin: 0;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.discover-card {
    position: relative;
    aspect-ratio: 3/4.5;
    overflow: hidden;
    cursor: pointer;
}

.discover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.discover-title {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    width: 80%;
}

.discover-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.discover-card-wide {
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
}

.discover-wide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.discover-card-wide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.discover-card-wide.fragrance {
    background-color: #1a3d3d;
}

.discover-card-wide.watches {
    background-color: #f5f5dc;
}

.discover-title-wide {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Promo Section */
.promo-section {
    padding: 0 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.promo-card {
    padding: 60px 40px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.promo-card.membership {
    background: #1a1a1a;
    color: #ffffff;
}

.promo-card.app-download {
    grid-column: span 2;
    background: #f8f8f8;
}

.promo-logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.promo-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

/* Black color for app download card only */
.app-download .promo-title {
    color: #1a1a1a;
}

/* White color for membership card */
.membership .promo-title,
.membership h3 {
    color: #ffffff;
}

.promo-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

.promo-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ffffff;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.app-badge img {
    height: 45px;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding-top: 60px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.main-footer *,
.main-footer *::before,
.main-footer *::after {
    max-width: 100%;
}

/* Footer Social + Newsletter Row */
.footer-social-newsletter {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    gap: 30px;
    overflow: hidden;
}

.newsletter-inline {
    flex: 1;
}

.newsletter-inline .newsletter-title {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.newsletter-inline .newsletter-form {
    display: flex;
    gap: 0;
    max-width: 450px;
}

.newsletter-inline .newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    background: #2a2a2a;
    border: 1px solid #333;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
}

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

.newsletter-inline .newsletter-form button {
    padding: 10px 25px;
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-inline .newsletter-form button:hover {
    background: #f0f0f0;
}

.social-inline {
    text-align: left;
}

.social-inline .social-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.social-inline .social-icons {
    display: flex;
    gap: 10px;
}

.social-inline .social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.social-inline .social-icon:hover {
    background: #333;
}

.social-inline .social-icon svg {
    width: 16px;
    height: 16px;
}

/* Old footer-newsletter - keep for backward compatibility but hide */
.footer-newsletter {
    display: none;
}

/* Old footer-social - keep for backward compatibility but hide */
.footer-social {
    display: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    display: grid;
    grid-template-columns: repeat(7, auto);
    gap: 30px;
    border-bottom: 1px solid #333;
    overflow: hidden;
}

.footer-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-column {
    min-width: 0;
}

.footer-apps-column {
    display: flex;
    flex-direction: column;
}

.footer-apps-column .apps-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-apps-column .app-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-apps-column .app-badge-small img {
    height: 32px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.footer-links-inline {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

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

.apps-title {
    font-size: 12px;
    margin-bottom: 10px;
}

.app-badge-small img {
    height: 32px;
}

.footer-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.footer-contact {
    font-size: 12px;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: #ffffff;
    font-weight: 600;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #666;
}

.tayer-logo {
    height: 30px;
}

/* Responsive Design */

/* Smaller Desktop Screens (1025px - 1499px) */
@media (max-width: 1499px) and (min-width: 1025px) {
    /* Section containers */
    .section-container {
        max-width: 1200px;
        padding: 0 30px;
    }

    /* Product sections */
    .designers-grid-section,
    .shop-by-category-section {
        max-width: 1200px;
        padding: 60px 30px;
    }

    .must-have-section,
    .perfect-present-section {
        padding: 70px 30px;
        max-width: 1200px;
    }

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

    .section-title {
        font-size: 32px;
        margin-bottom: 45px;
    }

    /* Product cards - optimized for 3 columns without clipping */
    .products-container {
        gap: 18px;
    }

    .product-card {
        /* Calculate to fit exactly 3 cards: (container_width - 2*padding - 2*gap) / 3 */
        /* For 1025px: (1025 - 60 - 36) / 3 = 309.67px */
        /* For 1499px: (1200 - 60 - 36) / 3 = 368px */
        /* Use safe value that works across the range */
        min-width: 305px;
        max-width: 305px;
        width: 305px;
    }

    .product-image-wrapper {
        aspect-ratio: 3/4;
        margin-bottom: 14px;
    }

    .product-info {
        padding: 12px 0;
    }

    .product-brand {
        font-size: 11px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 13px;
    }

    /* Cyber Sale Banner */
    .cyber-sale-banner {
        height: 380px;
        max-width: 1200px;
        margin-bottom: 35px;
    }

    .cyber-title {
        font-size: 30px;
    }

    .cyber-discount {
        font-size: 44px;
    }

    .extra-discount {
        font-size: 34px;
    }

    .cyber-code {
        font-size: 13px;
    }

    .cyber-btn {
        padding: 15px 46px;
        font-size: 13px;
    }

    /* Gifts Section */
    .gifts-section {
        padding: 70px 30px;
        max-width: 1200px;
    }

    .gifts-grid {
        gap: 22px;
    }

    .gift-title {
        font-size: 26px;
        bottom: 35px;
    }

    /* D&G Banner */
    .dg-banner {
        height: 460px;
        max-width: 1200px;
        margin-bottom: 35px;
    }

    .dg-content {
        padding: 0 70px;
    }

    .dg-title {
        font-size: 44px;
    }

    .dg-subtitle {
        font-size: 15px;
    }

    .dg-btn {
        padding: 13px 38px;
    }

    /* Discover section */
    .discover-section {
        padding: 70px 30px;
        max-width: 1200px;
    }

    .discover-grid {
        gap: 22px;
        margin-bottom: 22px;
    }

    .discover-title {
        font-size: 26px;
        bottom: 35px;
    }

    .discover-row {
        gap: 22px;
    }

    .discover-title-wide {
        font-size: 30px;
    }

    /* Gucci spotlight */
    .gucci-spotlight {
        height: 460px;
        max-width: 1200px;
        margin-bottom: 35px;
    }

    .gucci-content {
        padding: 0 70px;
    }

    .gucci-title {
        font-size: 44px;
    }

    .gucci-subtitle {
        font-size: 15px;
    }

    .gucci-btn {
        padding: 13px 38px;
    }

    /* Promo section */
    .promo-section {
        padding: 0 30px 70px;
        max-width: 1200px;
    }

    .promo-grid {
        gap: 22px;
    }

    .promo-card {
        padding: 55px 35px;
    }

    /* Slider buttons */
    .slider-btn {
        width: 46px;
        height: 46px;
    }

    .slider-btn svg {
        width: 19px;
        height: 19px;
    }
}

/* Large Tablets & Small Laptops (1024px - 1199px) */
@media (max-width: 1199px) {
    .header-container {
        padding: 0 30px;
    }

    .hero-content,
    .dg-content,
    .gucci-content {
        padding: 0 60px;
    }

    .main-nav {
        gap: 20px;
    }

    .product-card {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
    }

    .product-image-wrapper {
        height: 373px;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .header-container {
        padding: 0 20px;
    }

    .header-top {
        flex-wrap: wrap;
    }

    .header-right,
    .header-left {
        gap: 15px;
    }

    .header-center {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 15px 0 0 0;
    }

    .main-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 12px 0;
        gap: 25px;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    /* Dropdown adjustments for tablets */
    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100%;
        max-height: 70vh;
        overflow-y: auto;
        margin-top: 0;
    }

    .nav-item:hover .dropdown-menu {
        margin-top: 0;
    }

    .mega-menu,
    .designers-menu {
        width: 100%;
    }

    .dropdown-content {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
    }

    .dropdown-column.dropdown-image {
        flex: 1;
        min-height: 250px;
        margin: 0 !important;
    }

    .hero-banner {
        height: 450px;
        margin: 0 auto 30px;
    }

    .hero-dots {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-content {
        padding: 0 50px;
    }

    .hero-title {
        font-size: 56px;
    }

    .cyber-sale-banner {
        padding: 60px 30px;
    }

    .cyber-title {
        font-size: 36px;
    }

    .cyber-discount {
        font-size: 52px;
    }

    .extra-discount {
        font-size: 40px;
    }

    .gifts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gifts-section,
    .must-have-section,
    .perfect-present-section,
    .discover-section {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .dg-banner,
    .gucci-spotlight {
        height: 450px;
    }

    .dg-content,
    .gucci-content {
        padding: 0 50px;
    }

    .dg-title,
    .gucci-title {
        font-size: 40px;
    }

    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .discover-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .discover-card-wide {
        aspect-ratio: 16/9;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-card.app-download {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 20px 30px;
    }

    .footer-apps-column {
        grid-column: span 1;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }

    .slider-btn.prev {
        right: -22px;
    }

    .slider-btn.next {
        left: -22px;
    }
}


/* STEP 1: disable only images */
/* footer img {
  display: none !important;
} */
