/* ===================================
   Al-Dhurasi Perfumes - Luxury CSS
   =================================== */

/* Root Variables */
:root {
    --luxury-gold: #D4AF37;
    --luxury-gold-light: #F4E4C1;
    --luxury-gold-dark: #B8941E;
    --luxury-black: #0D1117;
    --luxury-black-light: #1C2128;
    --luxury-charcoal: #2D3748;
    --luxury-pearl: #F8F9FA;
    --luxury-cream: #FFF8F0;
    --luxury-white: #FFFFFF;
    --jewel-emerald: #50C878;
    --jewel-ruby: #E0115F;
    --jewel-sapphire: #0F52BA;
    --jewel-amethyst: #9966CC;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.splash-screen.hide {
    animation: splashHide 0.75s ease forwards;
}

@keyframes splashHide {
    to {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.985);
    }
}

@keyframes splashBrandDrop {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.86);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes splashBrandPulse {
    0%, 100% {
        transform: translateZ(0) scale(1);
    }
    50% {
        transform: translateZ(0) scale(1.035);
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-arabic,"Tajawal","Segoe UI", Tahoma, Arial, sans-serif);
    background-color: var(--luxury-pearl);
    color: var(--luxury-black);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Fast Image Loading - تحميل سريع للصور */
img {
    /* تحسين أداء الرسم */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Prevent layout shift during image loading */
img:not([src]):not([srcset]) {
    visibility: hidden;
}

/* Picture element support */
picture {
    display: block;
}

picture img {
    width: 100%;
    height: auto;
}

/* تحسين عرض الصور أثناء التحميل */
/* .product-image, */
.main-product-image,
.brand-logo img {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff8f0 100%);
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--luxury-pearl);
}

::-webkit-scrollbar-thumb {
    background: var(--luxury-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--luxury-gold-dark);
}

/* ===================================
   Splash Screen
   =================================== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(980px 660px at 10% 0%, rgba(212, 175, 55, 0.14) 0, transparent 62%),
        radial-gradient(900px 600px at 92% 100%, rgba(212, 175, 55, 0.08) 0, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 26px;
}

.splash-shell {
    width: min(560px, 100%);
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.splash-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    transform-origin: center;
    animation: splashBrandPulse 2.8s ease-in-out infinite;
    animation-delay: 0.9s;
    animation-fill-mode: both;
}

.splash-logo {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.22), transparent 66%),
        #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 18px 40px rgba(13, 17, 23, 0.08);
    animation: splashBrandDrop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.splash-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(13, 17, 23, 0.12));
}

.splash-text {
    min-width: 0;
    text-align: right;
}

.splash-title {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    color: var(--luxury-black);
    line-height: 1.3;
    animation: splashBrandDrop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.12s;
}

.splash-subtitle {
    margin: 6px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: rgba(13, 17, 23, 0.62);
    line-height: 1.7;
    animation: splashBrandDrop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.26s;
}

/* From Uiverse.io by SchawnnahJ */ 
.loader {
    position: relative;
    width: 2.5em;
    height: 2.5em;
    transform: rotate(165deg);
}

.loader:before, .loader:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-radius: 0.25em;
    transform: translate(-50%, -50%);
}

.loader:before {
    animation: before8 2s infinite;
}

.loader:after {
    animation: after6 2s infinite;
}

@keyframes before8 {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(212, 175, 55, 0.75), -1em 0.5em rgba(184, 148, 30, 0.65);
    }

    35% {
        width: 2.5em;
        box-shadow: 0 -0.5em rgba(212, 175, 55, 0.75), 0 0.5em rgba(184, 148, 30, 0.65);
    }

    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(212, 175, 55, 0.75), 1em 0.5em rgba(184, 148, 30, 0.65);
    }

    100% {
        box-shadow: 1em -0.5em rgba(212, 175, 55, 0.75), -1em 0.5em rgba(184, 148, 30, 0.65);
    }
}

@keyframes after6 {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(212, 175, 55, 0.6), -0.5em -1em rgba(184, 148, 30, 0.55);
    }

    35% {
        height: 2.5em;
        box-shadow: 0.5em 0 rgba(212, 175, 55, 0.6), -0.5em 0 rgba(184, 148, 30, 0.55);
    }

    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(212, 175, 55, 0.6), -0.5em 1em rgba(184, 148, 30, 0.55);
    }

    100% {
        box-shadow: 0.5em 1em rgba(212, 175, 55, 0.6), -0.5em -1em rgba(184, 148, 30, 0.55);
    }
}

.loader {
    position: absolute;
    top: calc(50% - 1.25em);
    left: calc(50% - 1.25em);
}

#splash-screen .loader {
    position: relative;
    top: auto;
    left: auto;
    margin: 18px auto 10px;
}

.splash-hint {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    color: rgba(13, 17, 23, 0.55);
}

@media (max-width: 420px) {
    .splash-brand {
        flex-direction: column;
        text-align: center;
    }
    .splash-text {
        text-align: center;
    }
}
/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

/* Top Bar */
.top-bar {
    background: var(--luxury-black);
    color: white;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none; /* مخفي افتراضياً على الهاتف */
    position: relative;
    z-index: 60;
}

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

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

.lang-toggle,
.top-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 13px;
    transition: var(--transition);
}

.lang-toggle:hover,
.top-link:hover {
    color: var(--luxury-gold);
}

.currency-switcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border: none;
    border-radius: 999px;
    background: transparent;
    backdrop-filter: blur(6px);
}

.currency-switcher:hover {
    background: rgba(255, 255, 255, 0.06);
}

.currency-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.currency-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.currency-trigger {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    padding: 0 0 0 18px;
    line-height: 1;
}

.currency-trigger::after {
    content: "\f078";
    font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    pointer-events: none;
}

.currency-trigger[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
}

.currency-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    padding: 8px;
    background: rgb(13, 17, 23);
    border: none;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    will-change: opacity, transform;
}

.currency-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.currency-option {
    width: 100%;
    text-align: right;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 10px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
}
.currency-option:first-child {
margin-bottom: 4px;
}

.currency-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.currency-option[aria-selected="true"] {
    background: rgba(212, 175, 55, 0.16);
}


/* Main Header */
.main-header {
    background: transparent;
    transition: var(--transition);
    padding: 0;
    position: relative;
    z-index: 40;
}

.header.sticky .main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 20px;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

.logo-circle-header {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(212, 175, 55, 0.1) 40%, 
        transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
    position: relative;
}

.logo-circle-header::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.15) 0%, 
        transparent 65%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.logo:hover .logo-circle-header::before {
    opacity: 1;
}

.logo-circle-header .logo-svg {
    width: 85%;
    height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.logo:hover .logo-circle-header {
    transform: scale(1.15);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(212, 175, 55, 0.4),
        0 0 90px rgba(212, 175, 55, 0.3),
        inset 0 0 40px rgba(212, 175, 55, 0.15);
}

.logo:hover .logo-circle-header .logo-svg {
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.6)) 
            drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    transform: rotate(5deg);
}

.logo-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.header.sticky .logo-title {
    color: var(--luxury-black);
}

.logo-subtitle {
    font-size: 12px;
    color: var(--luxury-gold);
}

/* Desktop Navigation */
.desktop-nav {
    display: none; /* مخفي افتراضياً (Mobile First) */
    gap: 35px;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: white;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.header.sticky .nav-link {
    color: var(--luxury-black);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--luxury-gold);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    z-index: 10;
}

.header-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.header.sticky .header-btn {
    color: var(--luxury-black);
}

.header-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--luxury-gold);
}

.badge {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--luxury-gold);
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    background: rgba(212, 175, 55, 0.1);
    font-size: 20px;
}

.header.sticky .mobile-menu-btn {
    color: var(--luxury-black);
}

/* Mobile Menu */
/* .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
} */

.mobile-menu.active {
    right: 0;
}

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

.mobile-menu-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.close-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--luxury-pearl);
    color: var(--luxury-black);
    font-size: 18px;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--luxury-black);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--luxury-pearl);
    color: var(--luxury-gold);
}

.mobile-nav-link i {
    font-size: 18px;
    width: 25px;
}

/* ===================================
   Search Modal
   =================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

.search-close {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 24px;
    transition: var(--transition);
}

.search-close:hover {
    background: var(--luxury-gold);
    transform: rotate(90deg);
}

.search-box {
    position: relative;
    margin-bottom: 30px;
}

.search-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--luxury-gold);
    font-size: 24px;
}

.search-box input {
    width: 100%;
    padding: 20px 70px 20px 25px;
    background: white;
    border: 1px solid var(--luxury-gold);
    border-radius: 50px;
    font-size: 18px;
    font-family: inherit;
    outline: none;
}

.search-results {
    background: white;
    border-radius: 15px;
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.search-result-item:hover {
    background: var(--luxury-pearl);
}

.search-result-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.search-result-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.search-result-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.search-result-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--luxury-gold);
}

/* ===================================
   Hero Section
   =================================== */
/* .hero {
    margin-top: -120px;
    position: relative;
}

.hero-slider {
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
} */

/* .hero-content {
    max-width: 700px;
    color: white;
    padding-top: 120px;
} */

/* .hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--luxury-gold);
    border-radius: 50px;
    color: var(--luxury-gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
} */

/* .hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
} */

/* .hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
} */

/* .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
} */

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--luxury-gold);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 8px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--luxury-gold);
    width: 30px;
    border-radius: 5px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    /* background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark)); */
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    background: var(--luxury-gold);
    border: 1px solid var(--luxury-gold);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: transparent;
    color: var(--luxury-gold);
}

.btn-outline {
    background: transparent;
    /* border: 2px solid white; */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    /* background: white; */
    color: var(--luxury-gold-dark);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-large {
    padding: 16px 40px;
    font-size: 18px;
    background: transparent;
    color: var(--luxury-black);
    border: 2px solid var(--luxury-gold);
}

.btn-outline-large:hover {
    background: var(--luxury-gold);
    color: white;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0D1117 0%, #1C2128 50%, #2D3748 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.testimonials-section,
.testimonials-section .section-title,
.testimonials-section .section-description {
    color: white;
}

.testimonials-slider {
    margin-top: 50px;
    padding: 20px 10px 60px;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--luxury-gold);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.author-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: rgba(212, 175, 55, 0.15);
    z-index: 0;
}

.testimonial-button-next,
.testimonial-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.testimonial-button-next:hover,
.testimonial-button-prev:hover {
    background: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: var(--luxury-black);
    transform: scale(1.1);
}

.testimonial-button-next::after,
.testimonial-button-prev::after {
    font-size: 20px;
    font-weight: 900;
}

.testimonial-pagination {
    position: relative;
    margin-top: 40px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--luxury-gold);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* ===================================
   Features Section
   =================================== */


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--luxury-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--luxury-black);
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-label {
    display: inline-block;
    padding: 6px 18px;
    background: var(--luxury-gold-light);
    color: var(--luxury-gold-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--luxury-black);
    margin-bottom: 15px;
    /* font-family: 'Playfair Display', serif; */
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 30px;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    position: relative;
    padding: 200px 0 100px;
    margin-top: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.85), rgba(212, 175, 55, 0.3));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content {
    text-align: center;
    color: white;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    font-family: inherit;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    color: white;
}

.breadcrumb a {
    color: var(--luxury-gold);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Products Grid
   =================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.pd-hero {
    position: relative;
    background:
        radial-gradient(circle at 18% 0%, rgba(212, 175, 55, 0.22) 0, transparent 52%),
        radial-gradient(circle at 82% 100%, rgba(212, 175, 55, 0.14) 0, transparent 56%),
        linear-gradient(135deg, rgba(13, 17, 23, 0.98) 0%, rgba(13, 17, 23, 0.86) 55%, rgba(13, 17, 23, 0.95) 100%);
    padding: clamp(140px, 14vh, 190px) 0 34px;
}

.pd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.25) 0%, rgba(13, 17, 23, 0.65) 100%);
    pointer-events: none;
}

.pd-hero-content {
    position: relative;
    z-index: 1;
}

.pd-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.22);
    padding: 10px 16px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

/* Product Card - Price Badge (shared) */
.home-page .product-price-wrapper,
.products-section .product-price-wrapper {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
}

.home-page .product-price-current,
.products-section .product-price-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--luxury-gold), #b8941e);
    color: #111;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.35);
}

/* Product Card - Modern Design */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    contain: layout style paint;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

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

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 80%;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #fff8f0 100%); */
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .product-image-wrapper::after {
    opacity: 1;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* padding: 10px; */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badges {
    display: none;
}

#featured-products .product-badges,
#new-arrivals .product-badges,
#discounted-products .product-badges {
    display: flex;
    position: absolute;
    top: 16px;
    right: -10px;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}

.product-badge {
    padding: 8px 14px 8px 16px;
    border-radius: 14px 0 0 14px;
    font-size: 11px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.3px;
    background: var(--luxury-charcoal);
    box-shadow: 0 10px 22px rgba(45, 55, 72, 0.28);
    border: 1px solid rgba(13, 17, 23, 0.08);
    animation: fadeInDown 0.5s ease forwards;
    transform-origin: top right;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-new {
    background: var(--luxury-charcoal);
}

.badge-sale {
    background: var(--jewel-ruby);
}

.badge-discount {
    background: var(--jewel-ruby);
}

.badge-bestseller {
    background: var(--luxury-charcoal);
}

.product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

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

.product-actions {
    flex-direction: row;
    gap: 8px;
}

.product-action-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-black);
    font-size: 17px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-action-btn:hover {
    background: var(--luxury-gold);
    color: white;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

 .product-action-btn.active {
     background: var(--luxury-gold);
     color: white;
     box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
 }

.product-info {
    padding: 20px 18px 18px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.product-brand {
    font-size: 12px;
    color: var(--luxury-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.product-brand {
    display: none;
}

.product-card:hover .product-brand {
    color: var(--luxury-gold-dark);
}

.product-name {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--luxury-black);
    margin: 0;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 15px;
    font-weight: 900;
    color: var(--luxury-black);
    /* margin-top: 2px; */
}

.product-price.is-discount {
    gap: 8px;
}

.product-price-old {
    opacity: 0.65;
    text-decoration: line-through;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price-new {
    color: var(--jewel-ruby);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.stars {
    display: flex;
    gap: 2px;
    color: var(--luxury-gold);
    font-size: 14px;
}

.rating-count {
    font-size: 13px;
    color: #999;
}

.add-to-cart-btn,
.whatsapp-order-btn {
    width: calc(100% - 36px);
    margin: 0 auto 18px;
    padding: .5rem 1.5rem .625rem;
    border-radius: .75rem;
    background: #ffffff;
    color: var(--luxury-gold-dark);
    border: 1px solid var(--luxury-gold);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

 .add-to-cart-btn:disabled,
 .add-to-cart-btn[disabled],
 .whatsapp-order-btn:disabled,
 .whatsapp-order-btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
 }

 .add-to-cart-btn:disabled:hover,
 .add-to-cart-btn[disabled]:hover,
 .whatsapp-order-btn:disabled:hover,
 .whatsapp-order-btn[disabled]:hover {
    background: #ffffff;
    border-color: var(--luxury-gold);
    transform: none;
    box-shadow: none;
    color: var(--luxury-gold-dark);
 }


.add-to-cart-btn:hover,
.whatsapp-order-btn:hover {
    background: linear-gradient(135deg, var(--luxury-black-light) 0%, var(--luxury-charcoal) 100%);
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 22px rgba(45, 55, 72, 0.28);
    color: var(--luxury-pearl);
}

.add-to-cart-btn::before,
.whatsapp-order-btn::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 223, 0, 0.8) 40%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 223, 0, 0.8) 60%,
        rgba(255, 255, 255, 0.1) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    pointer-events: none;
}

.add-to-cart-btn:hover::before,
.whatsapp-order-btn:hover::before {
    left: 100%;
    opacity: 1;
    transition: left 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s;
}

.add-to-cart-btn::after,
.whatsapp-order-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(212, 175, 55, 0.11) 100%
    );
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

/* Gold shine effect is now handled by the ::before pseudo-element */

.add-to-cart-btn:hover::after,
.whatsapp-order-btn:hover::after {
    opacity: 0.8;
}

/* Hover state is now defined above with the base button styles */

.add-to-cart-btn:active,
.whatsapp-order-btn:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 3px 10px rgba(13, 17, 23, 0.2);
}

.add-to-cart-btn i,
.whatsapp-order-btn i {
    font-size: 22px;
    position: relative;
    z-index: 2;
    animation: pulseIcon 3s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, filter;
    transform-origin: center;
}

.add-to-cart-btn:hover i,
.whatsapp-order-btn:hover i {
    transform: scale(1.2) rotate(0deg);
    animation: none;
    filter: drop-shadow(0 0 8px #d4af37ab);
    color: var(--luxury-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.add-to-cart-btn span,
.whatsapp-order-btn span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.add-to-cart-btn:hover span,
.whatsapp-order-btn:hover span {
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
    letter-spacing: 1.2px;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0));
    }
    50% {
        transform: scale(1.15) rotate(5deg);
        filter: drop-shadow(0 0 6px var(--luxury-gold));
    }
    100% {
        transform: scale(1) rotate(0);
        filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0));
    }
}

/* ===================================
   Perfume Showcase Gallery
   =================================== */
.perfume-showcase {
    position: relative;
    margin: 80px 0;
    overflow: hidden;
}

.showcase-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 600px;
}

.showcase-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.perfume-showcase:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 17, 23, 0.85) 0%,
        rgba(28, 33, 40, 0.75) 50%,
        rgba(212, 175, 55, 0.15) 100%
    );
    z-index: 1;
}

.showcase-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    color: white;
}

.showcase-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--luxury-black);
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.showcase-title {
    font-size: 48px;
    font-weight: 800;
    font-family: inherit;
    line-height: 1.3;
    margin-bottom: 25px;
    max-width: 900px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--luxury-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-description {
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    color: var(--luxury-black);
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--luxury-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-btn:hover::before {
    opacity: 1;
}

.showcase-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.6);
}

.showcase-btn span,
.showcase-btn i {
    position: relative;
    z-index: 1;
}

.showcase-btn i {
    transition: transform 0.4s ease;
}

.showcase-btn:hover i {
    transform: translateX(-5px);
}

/* ===================================
   Brands Showcase - Modern Design
   =================================== */
.brands-showcase {
    background: linear-gradient(135deg, #0D1117 0%, #1C2128 50%, #2D3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.brands-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(80, 200, 120, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.brands-showcase .section-title {
    color: white;
}

.brands-showcase .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.brands-slider-wrapper {
    position: relative;
    padding: 40px 0 50px;
}

.brands-slider {
    overflow: visible !important;
}

.brands-slider .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Brand Card - Modern Design */
.brand-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(212, 175, 55, 0.05) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.brand-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--luxury-gold);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(212, 175, 55, 0.3),
        inset 0 0 40px rgba(212, 175, 55, 0.1);
}

.brand-card-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.brand-card:hover .brand-card-bg {
    opacity: 1;
}

.brand-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px 35px;
    height: 100%;
}

/* Brand Logo Wrapper with Animation */
.brand-logo-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.brand-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: conic-gradient(
        from 180deg,
        var(--luxury-gold) 0deg,
        transparent 60deg,
        transparent 300deg,
        var(--luxury-gold) 360deg
    );
    border-radius: 50%;
    opacity: 0;
    animation: rotate 4s linear infinite;
    transition: opacity 0.5s ease;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-card:hover .brand-logo-wrapper::before {
    opacity: 0.6;
}

.brand-logo {
    position: relative;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card:hover .brand-logo {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 12px 48px rgba(212, 175, 55, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}
.brands-showcase 
.brand-logo img {
   background: none;
   filter: none;
}
.brand-card:hover .brand-logo img {
    transform: scale(1.05);
}

/* Brand Info */
.brand-info {
    text-align: center;
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: inherit;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-name {
    color: var(--luxury-gold);
    transform: translateY(-2px);
}

.brand-name-en {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-family: inherit;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.brand-card:hover .brand-name-en {
    color: rgba(212, 175, 55, 0.9);
}

/* Brand CTA Button */
.brand-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #B8941E 100%);
    color: var(--luxury-black);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.brand-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--luxury-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-cta span,
.brand-cta i {
    position: relative;
    z-index: 1;
}

.brand-card:hover .brand-cta {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.brand-card:hover .brand-cta::before {
    opacity: 1;
}

.brand-cta i {
    transition: transform 0.4s ease;
}

.brand-card:hover .brand-cta i {
    transform: translateX(-4px);
}

/* Shine Effect */
.brand-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.brand-card:hover .brand-shine {
    transform: translateX(100%) rotate(45deg);
}

/* Navigation Buttons */
.brands-button-next,
.brands-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.brands-button-next:hover,
.brands-button-prev:hover {
    background: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: var(--luxury-black);
    transform: scale(1.1);
}

.brands-button-next::after,
.brands-button-prev::after {
    font-size: 18px;
    font-weight: 900;
}


/* ===================================
   Newsletter
   =================================== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
    color: white;
}

.newsletter-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-description {
    font-size: 16px;
    opacity: 0.9;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
}

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

.newsletter-form input:focus {
    background: white;
    color: var(--luxury-black);
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--luxury-black-light);
    color: white;
    /* margin-top: 2rem; */
}
.footer .container{
    padding-bottom: 2rem;
    padding-top: 2rem;
}
.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-bottom: .75rem;
    
}




.footer-logo p {
    font-size: 13px;
    color: var(--luxury-gold);
}

.footer-about {
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 24rem;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid .social-links {
    gap: 12px;
}
.footer-grid .footer-col .social-links {
    display: none;
}
.footer-grid > .social-links {

    display: flex;
    border-top:1px solid hsla(0, 0%, 100%, .1);
    margin-top: 1.25rem;
    padding-top: 1.25rem;
}
.footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.footer .social-link:hover {
    background: var(--luxury-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10PX;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--luxury-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--luxury-gold);
    transform: translateX(-5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--luxury-gold);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--luxury-gold);
}

.footer-bottom {
    background-color: var(--luxury-black);
    padding: 18px 10px;
    border-top: 1px dashed #f8f9fa33;
    margin-top: 20px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--luxury-gold);
}
@media (min-width: 640px) {
    /* .footer {
        margin-top: 4rem;
    } */

}
@media (min-width: 1024px) {
    .footer .container{
        padding-bottom: 4rem;
        padding-top: 4rem;
    }
    .footer-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .footer-grid .footer-col:first-child {
        grid-column: span 3 / span 3;
        padding-left: 5rem;
    }
    .footer-grid .footer-col:nth-child(3){
        padding-right: 60px;
        grid-column: span 2 / span 2;
    }
    .footer-logo {
        margin-bottom: 1.25rem;
    }
    .footer-grid .footer-col .social-links {
        display: flex;
    }
    .footer-grid > .social-links {
        display: none;
    }
}
/* ===================================
   Scroll to Top
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   Responsive Design - Mobile First
   =================================== */

/* ===== Mobile Small (320px - 480px) ===== */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 12px;
    }

    /* Typography */
    html {
        font-size: 14px;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

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

    /* Page Header */
    .page-header {
        padding: 110px 0 40px;
        background-attachment: scroll;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .page-description {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .breadcrumb {
        font-size: 11px;
        padding: 7px 16px;
        gap: 8px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 14px;
        font-weight: 800;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        opacity: 0.95;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .section-label {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    /* Footer */
    /* .footer {
        padding: 40px 0 0;
        margin-top: 50px;
    } */

    /* .footer-grid {
        gap: 30px;
        margin-bottom: 30px;
    } */

    /* Hero Section - محسّن للموبايل */
    .hero {
        margin-top: -80px;
    }

    /* .hero-slider {
        height: auto;
        min-height: 500px;
    }

    .hero-slide {
        height: auto;
        min-height: 500px;
        padding: 0;
        display: flex;
        align-items: center;
    } */

    .hero-label {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
    }

    /* .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    } */

    .btn {
        width: 100%;
        padding: 15px 24px;
        font-size: 15px;
        min-height: 50px;
        border-radius: 12px;
        font-weight: 700;
    }

    .btn i {
        font-size: 16px;
    }

    /* تحسين أزرار Swiper */
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.15);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px !important;
    }

    /* .swiper-pagination {
        bottom: 15px !important;
    } */

    .swiper-pagination-bullet {
        width: 11px;
        height: 11px;
    }

    .swiper-pagination-bullet-active {
        width: 20px;
    }
    /* Products Grid - محسّن للصفحة الرئيسية */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 4px;
    }

    /* Product Card - Mobile Optimized */
    .product-card {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .product-card:active {
        transform: translateY(-8px) scale(0.98);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .product-image-wrapper {
        padding-top: 100%;
        /* background: linear-gradient(135deg, #f8f9fa 0%, #fff8f0 100%);
        border-radius: 14px 14px 0 0; */
    }

    .product-image {
        transition: transform 0.3s ease;
    }

    .product-card:active .product-image {
        transform: scale(1.05);
    }

    .product-badges {
        top: 8px;
        right: 8px;
        gap: 5px;
        z-index: 5;
    }

    .product-badge {
        padding: 6px 10px;
        font-size: 9px;
        border-radius: 12px;
        font-weight: 800;
        letter-spacing: 0.3px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .product-actions {
        top: 10px;
        left: 10px;
    }
    .product-action-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    /* .product-actions {
        display: none !important;
    } */

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

    .product-brand {
        font-size: 10px;
        margin-bottom: 4px;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .product-name {
        font-size: 13px;
        line-height: 1.35;
        /* margin-bottom: 10px; */
        font-weight: 700;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        /* min-height: 36px; */
    }

    .product-rating {
        gap: 6px;
        margin-bottom: 10px;
    }

    .stars {
        font-size: 12px;
        gap: 1px;
    }

    .rating-count {
        font-size: 11px;
    }

    .product-price {
        /* gap: 6px; */
        margin-bottom: 10px;
        /* flex-wrap: wrap; */
        font-weight: 700;
    }

    .current-price {
        font-size: 18px;
        font-weight: 800;
    }

    .original-price {
        font-size: 14px;
    }

    .add-to-cart-btn,
    .whatsapp-order-btn {
        width: calc(100% - 20px);
        margin: 0 10px 12px;
        /* padding: 15px 20px; */
        font-size: 14px;
        min-height: 44px;
        border-radius: 14px;
        /* font-weight: 800; */
        gap: 10px;
        /* box-shadow: 0 5px 17px rgba(0, 0, 0, 0.4); */
    }

    .add-to-cart-btn:active,
    .whatsapp-order-btn:active {
        transform: translateY(-2px) scale(0.97);
    }

    .add-to-cart-btn i,
    .whatsapp-order-btn i {
        font-size: 18px;
    }

    /* Brands Slider - Mobile Optimized */
    .brand-card {
        min-height: 340px;
        border-radius: 20px;
    }

    .brand-card:active {
        transform: translateY(-8px) scale(0.98);
        box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    }

    .brand-card-content {
        padding: 30px 20px 28px;
    }

    .brand-logo {
        width: 110px;
        height: 110px;
        padding: 20px;
    }

    .brand-logo-wrapper {
        margin-bottom: 20px;
    }

    .brand-name {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .brand-name-en {
        font-size: 13px;
    }

    .brand-cta {
        padding: 10px 24px;
        font-size: 14px;
    }

    .brands-button-next,
    .brands-button-prev {
        display: none;
    }

    /* Testimonials Section - Mobile */
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-slider {
        margin-top: 35px;
        padding: 15px 5px 50px;
    }

    .testimonial-card {
        padding: 30px 25px;
        min-height: auto;
    }

    .testimonial-rating {
        font-size: 16px;
        gap: 4px;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-location {
        font-size: 12px;
    }

    .quote-icon {
        font-size: 45px;
        top: 25px;
        right: 25px;
    }

    .testimonial-button-next,
    .testimonial-button-prev {
        display: none;
    }

    .testimonial-pagination {
        margin-top: 30px;
    }

    /* Perfume Showcase - Mobile */
    .perfume-showcase {
        margin: 50px 0;
    }

    .showcase-container {
        padding: 0 12px;
        min-height: 450px;
    }

    .showcase-image-wrapper {
        min-height: 450px;
        border-radius: 20px;
    }

    .showcase-content {
        padding: 30px 20px;
    }

    .showcase-badge {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .showcase-title {
        font-size: 24px;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .showcase-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .showcase-btn {
        padding: 14px 28px;
        font-size: 14px;
        gap: 10px;
    }

    /* Features Section */
    .features {
        padding: 40px 0;
    }

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

    .feature-card {
        padding: 20px 15px;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0;
        flex-shrink: 0;
    }

    .feature-title {
        font-size: 14px;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .feature-description {
        font-size: 11px;
        line-height: 1.4;
    }

    /* Section Spacing */
    .section {
        padding: 40px 0;
    }

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

    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Header - محسّن للموبايل */
    .header-content {
        height: 70px;
        padding: 0 8px;
    }

    .logo {
        gap: 10px;
    }

    .logo-circle-header {
        width: 42px;
        height: 42px;
        font-size: 18px;
        box-shadow: 0 3px 12px rgba(212, 175, 55, 0.25);
    }

    .logo-title {
        font-size: 16px;
        font-weight: 800;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-btn {
        width: 42px;
        height: 42px;
        font-size: 17px;
        border-radius: 10px;
    }

    .header-btn .badge {
        top: -4px;
        left: -4px;
        width: 18px;
        height: 18px;
        font-size: 10px;
        font-weight: 700;
    }

    .mobile-menu-btn {
        display: flex;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 19px;
    }

    .mobile-menu-btn:active {
        transform: scale(0.95);
        background: rgba(212, 175, 55, 0.2);
    }

    /* Mobile Navigation */
    .mobile-nav {
        padding: 8px 0;
    }

    .mobile-nav-link {
        font-size: 11px;
        padding: 8px 4px;
    }

    .mobile-nav-link i {
        font-size: 18px;
    }

    /* Footer */
    /* .footer {
        padding: 40px 0 0;
        margin-top: 50px;
    } */

    /* .footer-grid {
        gap: 30px;
        margin-bottom: 30px;
    } */

    .footer-title {
        font-size: 16px;
    }

    .footer-links li a,
    .footer-contact li {
        font-size: 13px;
    }

    /* .social-links {
        justify-content: center;
    } */



    /* Newsletter */
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .newsletter-input {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

    .newsletter-btn {
        width: 100%;
        padding: 14px;
        min-height: 48px;
    }

    /* Scroll to Top */
    .scroll-top {
        width: 48px;
        height: 48px;
        bottom: 25px;
        left: 15px;
        font-size: 20px;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .scroll-top:active {
        transform: scale(0.95);
    }

    /* Search Modal - محسّن */
    .search-modal-content {
        padding: 0 15px;
        padding-top: 0;
    }

    .search-box {
        margin-bottom: 20px;
    }

    .search-box input {
        padding: 16px 60px 16px 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    .search-box i {
        font-size: 20px;
        right: 20px;
    }

    .search-close {
        top: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .search-results {
        border-radius: 12px;
        padding: 15px;
        max-height: 400px;
    }

    .search-result-item {
        padding: 12px;
        border-radius: 10px;
    }

    .search-result-image {
        width: 70px;
        height: 70px;
        border-radius: 8px;
    }

    .search-result-info h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .search-result-info p {
        font-size: 12px;
    }

    /* Loading & Spinner */
    .loading-container {
        min-height: 300px;
    }

    .luxury-spinner .spinner-circle {
        width: 60px;
        height: 60px;
    }

    .luxury-spinner .spinner-text {
        font-size: 14px;
    }
    /* Products Page - Price Badge tweak on small screens */
    .home-page .product-price-wrapper,
    .products-section .product-price-wrapper{
        margin-top: 6px;
    }

    .home-page .product-price-current,
    .products-section .product-price-current {
        font-size: 12px;
        padding: 3px 9px;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    }

}

/* ===== Mobile Large (481px - 768px) ===== */
@media (min-width: 481px) and (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 18px;
    }

    /* Typography */
    html {
        font-size: 15px;
    }

    /* Sections */
    .section {
        padding: 55px 0;
    }

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

    .section-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .section-description {
        font-size: 15px;
    }

    .section-label {
        font-size: 13px;
        padding: 6px 16px;
    }

    /* Hero Section */
    .hero {
        margin-top: -80px;
    }

    /* .hero-slider {
        min-height: 550px;
    }

    .hero-slide {
        min-height: 550px;
    } */

    .hero-content {
        padding-top: 110px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.3;
        font-weight: 800;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-label {
        font-size: 12px;
        padding: 7px 16px;
    }

    /* Page Header */
    .page-header {
        padding: 140px 0 70px;
        background-attachment: scroll;
    }

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

    .page-description {
        font-size: 17px;
    }

    /* Footer */
    /* .footer {
        padding: 50px 0 0;
        margin-top: 60px;
    } */

    /* .footer-grid {
        gap: 35px;
        margin-bottom: 35px;
    } */

    .section-title {
        font-size: 26px;
    }

    /* Features Section */
    .features {
        padding: 50px 0;
    }

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

    .feature-card {
        padding: 30px 20px;
        text-align: center;
        display: block;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto 15px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 13px;
    }

    /* .hero-buttons {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    } */

    .btn {
        padding: 16px 30px;
        font-size: 16px;
        min-height: 52px;
        border-radius: 12px;
        font-weight: 700;
    }

    .btn i {
        font-size: 17px;
    }

    /* Swiper Enhancements */
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px !important;
    }

    .swiper-pagination-bullet {
        width: 11px;
        height: 11px;
    }

    .swiper-pagination-bullet-active {
        width: 25px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 0 6px;
    }

    .product-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .product-card:active {
        transform: translateY(-3px) scale(0.98);
        box-shadow: 0 8px 18px rgba(212, 175, 55, 0.2);
    }

    /* .product-image-wrapper {
        padding-top: 115%;
        background: linear-gradient(135deg, #f8f9fa 0%, #fff8f0 100%);
    } */

    .product-badges {
        top: 10px;
        right: 10px;
        gap: 6px;
    }

    .product-badge {
        padding: 5px 10px;
        font-size: 10px;
        font-weight: 800;
    }

    .product-info {
        padding: 13px;
    }

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

    .product-name {
        font-size: 14px;
        line-height: 1.4;
        font-weight: 700;
        /* margin-bottom: 10px; */
        /* min-height: 40px; */
    }

    .product-rating {
        gap: 7px;
        margin-bottom: 10px;
    }

    .stars {
        font-size: 13px;
    }

    .rating-count {
        font-size: 12px;
    }

    .current-price {
        font-size: 20px;
        font-weight: 800;
    }

    .original-price {
        font-size: 15px;
    }

    .add-to-cart-btn,
    .whatsapp-order-btn {
        padding: .5rem 1.5rem .625rem;
        font-size: 15px;
        min-height: 44px;
        border-radius: 12px;
        font-weight: 700;
        gap: 8px;
    }

    .add-to-cart-btn:active,
    .whatsapp-order-btn:active {
        transform: scale(0.97);
    }

    .add-to-cart-btn i,
    .whatsapp-order-btn i {
        font-size: 17px;
    }

    /* Brands Slider - Tablet */
    .brand-card {
        min-height: 360px;
    }

    .brand-logo {
        width: 130px;
        height: 130px;
    }

    .brand-name {
        font-size: 24px;
    }

    .brand-name-en {
        font-size: 14px;
    }

    /* Testimonials Section - Tablet */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-slider {
        margin-top: 40px;
        padding: 18px 8px 55px;
    }

    .testimonial-card {
        padding: 35px 30px;
        min-height: 300px;
    }

    .testimonial-rating {
        font-size: 17px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-avatar {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-location {
        font-size: 13px;
    }

    .quote-icon {
        font-size: 55px;
    }

    /* Perfume Showcase - Tablet */
    .perfume-showcase {
        margin: 60px 0;
    }

    .showcase-container {
        padding: 0 18px;
        min-height: 500px;
    }

    .showcase-image-wrapper {
        min-height: 500px;
        border-radius: 25px;
    }

    .showcase-content {
        padding: 40px 30px;
    }

    .showcase-badge {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 25px;
    }

    .showcase-title {
        font-size: 36px;
        margin-bottom: 22px;
    }

    .showcase-description {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .showcase-btn {
        padding: 16px 35px;
        font-size: 16px;
        gap: 12px;
    }

    /* Features Section */
    .features {
        padding: 50px 0;
    }

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

    .feature-card {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .feature-card:active {
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .feature-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Section Spacing */
    .section {
        padding: 50px 0;
    }

    /* Header */
    .header-content {
        height: 75px;
    }

    .logo-circle-header {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    .logo-title {
        font-size: 18px;
        font-weight: 800;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .header-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .header-btn .badge {
        width: 19px;
        height: 19px;
        font-size: 11px;
    }

    .mobile-menu-btn {
        display: flex;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    /* Footer */
    /* .footer {
        padding: 50px 0 0;
    } */

    /* .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    } */

    .footer-title {
        font-size: 18px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 14px;
    }

    /* Page Header */
    .page-header {
        padding: 150px 0 60px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-description {
        font-size: 16px;
    }

    /* Scroll to Top */
    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 80px;
        left: 18px;
    }
}

/* ===== Tablet (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Typography */
    .hero-title {
        font-size: 42px;
    }

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

    /* Hero Section */
    /* .hero-slide {
        min-height: 500px;
    } */

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Mobile Menu Button Visible */
    .mobile-menu-btn {
        display: flex;
    }

    /* Footer */
    /* .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    } */
}

/* ===== Desktop (1025px+) ===== */
@media (min-width: 1025px) {
    /* Header Layout */
    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 40px;
        height: 90px;
    }

    /* Desktop Nav Visible */
    .desktop-nav {
        display: flex;
        justify-content: center;
    }

    /* Mobile Menu Button Hidden */
    .mobile-menu-btn {
        display: none;
    }

    /* Top Bar */
    .top-bar {
        display: block;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }

    /* Mobile Nav Hidden */
    .mobile-nav {
        display: none;
    }

    /* .add-to-cart-btn,
    .whatsapp-order-btn {
        width: calc(100% - 70px);
    } */
}

/* ===== Touch Optimizations ===== */
@media (hover: none) and (pointer: coarse) {
    /* Touch-friendly buttons */
    .btn,
    .header-action-btn{
        min-width: 44px;
        min-height: 44px;
    }

    /* Remove hover effects on touch devices */
    .product-card:hover {
        transform: none;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    /* Show product actions on mobile */
    /* .product-actions {
        opacity: 1;
        transform: translateX(0);
        position: static;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 10px;
        background: transparent;
    } */
/* 
    .product-action-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    } */
}

/* ===== Landscape Orientation ===== */
@media (max-width: 768px) and (orientation: landscape) {
    /* .hero-slide {
        min-height: 350px;
    } */

    .section {
        padding: 35px 0;
    }
}

/* ===================================
   Bottom Navigation - REMOVED
   =================================== */
/* تم حذف Bottom Navigation لأنه غير ضروري */

/* ===================================
   Enhanced Mobile Menu
   =================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: var(--luxury-white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(135deg, var(--luxury-black), var(--luxury-black-light));
    color: var(--luxury-white);
    border-bottom: 2px solid var(--luxury-gold);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-logo .logo-circle-header {
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(212, 175, 55, 0.15) 40%, 
        transparent 70%);
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(212, 175, 55, 0.15);
    position: relative;
}

.mobile-menu-logo .logo-circle-header .logo-svg {
    width: 85%;
    height: 85%;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

.mobile-menu-logo h3 {
    font-size: 16px;
    margin: 0;
    color: var(--luxury-gold);
}

.mobile-menu-logo p {
    font-size: 11px;
    margin: 0;
    color: var(--luxury-pearl);
}

.mobile-menu-header .close-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--luxury-white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-header .close-btn:hover {
    background: var(--luxury-gold);
    transform: rotate(90deg);
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    color: var(--luxury-black);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border-right: 3px solid transparent;
}

.mobile-nav-link i:first-child {
    width: 24px;
    font-size: 18px;
    color: var(--luxury-gold);
}

.mobile-nav-link i:last-child {
    margin-right: auto;
    font-size: 12px;
    color: var(--luxury-charcoal);
    opacity: 0.5;
}

.mobile-nav-link span {
    flex: 1;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
    border-right-color: var(--luxury-gold);
}

.mobile-nav-link:hover i:last-child {
    transform: translateX(-4px);
    opacity: 1;
}

.mobile-menu-footer {
    padding: 20px 20px 25px;
    background: var(--luxury-pearl);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--luxury-charcoal);
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
    border-radius: 8px;
}

.mobile-contact-link:hover {
    background: var(--luxury-white);
    color: var(--luxury-gold);
}

.mobile-contact-link i {
    width: 20px;
    font-size: 14px;
    color: var(--luxury-gold);
}

.mobile-menu-footer .currency-switcher {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: transparent;
    backdrop-filter: none;
}

.mobile-menu-footer .currency-label {
    color: var(--luxury-charcoal);
}

.mobile-menu-footer .currency-trigger {
    color: var(--luxury-charcoal);
}

.mobile-menu-footer .currency-trigger::after {
    color: rgba(13, 17, 23, 0.55);
}

.mobile-menu-footer .currency-menu {
    background: var(--luxury-white);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.mobile-menu-footer .currency-option {
    color: var(--luxury-black);
}

.mobile-menu-footer .currency-option:hover {
    background: rgba(212, 175, 55, 0.12);
}


/* ===================================
   About Page Specific Styles
   =================================== */
.about-hero .hero-overlay{
    background: url('../images/about/about-bg.jpeg') center/cover;
    filter: blur(1px);
    opacity: 0.07;
}


.about-page .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-page .about-content:not(:last-child) {
    margin-bottom: 80px;
}

.about-page .about-content .about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-page .about-content .about-image:hover img {
    transform: scale(1.05);
}

.about-page .about-content .about-text {
    flex: 1;
}

.about-page .about-content .about-text h3 {
    font-size: 2rem;
    color: var(--luxury-black);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-page .about-content .about-text h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--luxury-gold);
    bottom: 0;
    right: 0;
}

.about-page .about-content .about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-page .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.about-page .features-grid .feature-card {
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-page .features-grid .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--luxury-gold-light);
}

.about-page .features-grid .feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    margin: 0 auto 25px;
    color: var(--luxury-gold);
    font-size: 32px;
    transition: var(--transition);
    box-shadow: none;
}

.about-page .features-grid .feature-card:hover .feature-icon {
    background: var(--luxury-gold);
    color: white;
    transform: rotateY(180deg);
}

.about-page .features-grid .feature-card .feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.about-page .features-grid .feature-card .feature-description {
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (min-width: 1200px) {
    .about-page .features-grid {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .about-page .about-content {
        display: block;
    }
    .about-page .about-content:not(:last-child) {
        margin-bottom: 45px;
    }
    .about-page .about-content .about-text {
        width: 100%;
    }
    .about-page .about-content .about-image{
        display: none;
    }
    .about-page .about-content .about-text h3 {
        font-size: 1.6rem;
    }
    .about-page .about-content .about-text p {
        font-size: 0.9rem
    }
}

@media (max-width: 768px) {     
    .about-page .about-content .about-text h3 {
        font-size: 1.4rem;
    }    
    .about-page .about-content .about-text p {
        font-size: 0.87rem
    }   
    .about-page .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 20px;
    }
}

/* ============================
   Simple Modern CTA Section
   ============================ */
/* Modern CTA Section */
.about-page .about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.about-page .about-cta-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-page .about-cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.about-page .about-cta-icon img {
    max-width: 80%;
    height: auto;
    display: initial;
    margin: 10% auto;
}

.about-page .about-cta-content h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-page .about-cta-content p {
    color: #d4d4d4;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.about-page .about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-page .about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}


.about-page .about-cta-btn.primary-btn {
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
    color: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.about-page .about-cta-btn.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.about-page .about-cta-btn.outline-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-page .about-cta-btn.outline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-page .about-cta-card {
        padding: 30px 20px;
    }
    
    .about-page .about-cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .about-page .about-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .about-page .about-cta-content p {
        font-size: 1rem;
    }
    
    .about-page .about-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ===================================
   Contact Page Specific Styles
   =================================== */
.contact-hero .hero-overlay {
    background: url('../images/contact/contact-bg.jpeg') center/cover;
    filter: blur(1px);
    opacity: 0.07;
}
/* Contact Layout */
.contact-page .contact-layout {
    display: flex;
    margin-top: 40px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Dark Theme Contact Info */
.contact-layout .contact-info-dark {
    background: linear-gradient(135deg, #0f151c, #1a2230);
    padding: 40px;
    position: relative;
    z-index: 1;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 45%;
    min-width: 400px;
}

.contact-layout .contact-info-dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: -1;
    border-radius: 15px;
}

.contact-layout .contact-info-dark .info-header {
    margin-bottom: 30px;
    text-align: right;
}

.contact-info-dark .info-header h2 {
    color: var(--luxury-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-dark .info-header .info-subtitle {
    color: #b0b8c8;
    margin: 0;
    font-size: 0.95rem;
}

.contact-layout .contact-info-dark .info-items-wrapper {
    margin-bottom: 30px;
}

.contact-info-dark .info-items-wrapper .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-dark .info-items-wrapper .info-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.info-items-wrapper .info-item .info-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: var(--luxury-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-dark .info-items-wrapper .info-item:hover .info-icon {
    background: var(--luxury-gold);
    color: #fff;
    transform: scale(1.1);
}

.contact-info-dark .info-items-wrapper .info-content h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-dark .info-items-wrapper .info-content p,
.contact-info-dark .info-items-wrapper .info-content a {
    color: #b0b8c8;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-info-dark .info-items-wrapper .info-content a:hover {
    color: var(--luxury-gold);
}

.contact-layout .contact-info-dark .social-section {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-layout .contact-info-dark .social-section h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: right;
}

.contact-info-dark .social-section .social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-section .social-links .social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #b0b8c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-section .social-links .social-link:hover {
    background: var(--luxury-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Map Section */
.contact-layout .map-container-seamless {
    position: relative;
    overflow: hidden;
    height: auto;
    flex: 1;
}

.contact-layout .map-container-seamless .map-embed {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-layout .map-container-seamless .map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Map footer and directions button below the map */
.contact-layout .map-container-seamless .map-footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.contact-layout .map-container-seamless .map-footer .directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--luxury-gold);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-layout .map-container-seamless .map-footer .directions-btn:hover {
    background: #c9a42b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-layout .contact-info-dark {
        padding: 30px 20px;
    }
    .contact-info-dark .info-header h2{
        font-size: 1.4rem;
    }
    .contact-info-dark .info-header .info-subtitle{
        font-size: 0.9rem;
    }
    .contact-info-dark .info-items-wrapper .info-content h3{
        font-size: 0.95rem;
    }
    .contact-info-dark .info-items-wrapper .info-content p,
    .contact-info-dark .info-items-wrapper .info-content a {
       font-size: 0.9rem; 
    }
    .contact-layout .contact-info-dark .social-section h3{
        font-size: 0.98rem;
    }
}

@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .contact-layout .contact-info-dark {
        width: 100%;
        min-width: 100%;
    }
    .contact-info-dark .info-header h2{
        font-size: 1.2rem;
    }
    .contact-info-dark .info-header .info-subtitle{
        font-size: 0.87rem;
    }
    .contact-info-dark .info-items-wrapper .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .info-items-wrapper .info-item .info-icon {
        margin: 0 auto 15px !important;
    }
    .contact-info-dark .info-items-wrapper .info-content h3{
        font-size: 0.9rem;
    }
    .contact-info-dark .info-items-wrapper .info-content p,
    .contact-info-dark .info-items-wrapper .info-content a{
       font-size: 0.87rem; 
    }
    .contact-layout .contact-info-dark .social-section h3{
        font-size: 0.95rem;
        text-align: center;
    }
    .contact-info-dark .social-section .social-links {
        justify-content: center;
    }    
    .contact-layout .map-container-seamless .map-embed {
        min-height: 400px;
    }
    .contact-layout .map-container-seamless .map-footer .directions-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
/*     .contact-page .contact-info h2, .contact-page .contact-form h2 {
        font-size: 1.4rem;
    }
    .contact-page .contact-info .info-item .info-content p {
        font-size: 0.9rem
    }
}

@media (max-width: 768px) {     
    .contact-page .contact-info h2, .contact-page .contact-form h2 {
        font-size: 1.2rem;
    }    
    .contact-page .contact-info .info-item .info-content p {
        font-size: 0.87rem
    }   

} */



/* FAQ Styles */

.contact-page .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-page .faq-container .faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-page .faq-container .faq-item:hover {
    box-shadow: var(--shadow-md);
}

.contact-page .faq-container .faq-item .faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--luxury-pearl);
}

.contact-page .faq-container .faq-item .faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--luxury-black);
    font-weight: 600;
}

.contact-page .faq-container .faq-item .faq-question i {
    transition: var(--transition);
    color: var(--luxury-gold);
}

.contact-page .faq-container .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.contact-page .faq-container .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.contact-page .faq-container .faq-item .faq-answer p {
    padding: 5px 25px 20px;
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}


/* ===================================
   Section Title Styles
   =================================== */
.about-page .section-title, 
.contact-page .section-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--luxury-black);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-page .section-title::before,
.about-page .section-title::after,
.contact-page .section-title::before,
.contact-page .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    transform-origin: center;
}

.about-page .section-title::before,
.contact-page .section-title::before {
    left: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.about-page .section-title::after,
.contact-page .section-title::after {
    content: url('../images/about/perfume.png');
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%) scale(0);
    color: var(--luxury-gold);
    font-size: 16px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.about-page .section-title:hover,
.contact-page .section-title:hover {
    color: var(--luxury-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    margin-bottom: 34px;
}

.about-page .section-title:hover::before,
.contact-page .section-title:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.about-page .section-title:hover::after,
.contact-page .section-title:hover::after {
    transform: translateX(-50%) scale(1) rotate(360deg);
    opacity: 1;
    bottom: -15px;
}



/* ===================================
   Scroll Indicator
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--luxury-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@media (max-width: 479px) {
    .scroll-indicator {
        bottom: 20px;
        font-size: 1.3rem;
    }
}
@media (orientation: landscape) and (max-height: 500px) {    
    .scroll-indicator {
        display: none;
    }
}

/* ===================================
   Product Swiper
   =================================== */
.bestseller-products-slider,
.products-slider,
.discount-products-slider{
    padding: 20px 15px 30px;
}
.products-slider .swiper-button-next, .products-slider .swiper-button-prev{
    background: rgb(28, 33, 40, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.bestseller-products-slider .swiper-pagination{
    bottom: -6px;
}
.bestseller-products-slider .swiper-pagination-bullet{
    border: 1px solid rgba(28, 33, 40, 0.7);
}
.bestseller-products-slider .swiper-pagination-bullet-active{
    background: rgb(28, 33, 40);
}

 .home-section-template {
    position: relative;
    overflow: hidden;
    margin: 60px 0;
    color: #fff;
 }


 .home-section-template__bg {
    position: relative;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    filter: saturate(0.95) contrast(0.95);
    height: 30rem;
 }
 .home-section-template-bestsellers .home-section-template__bg {
    background-image: url('../images/offers/hero-1.jpeg');
 }

 .home-section-template-discounts .home-section-template__bg {
    background-image: url('../images/offers/hero-2.jpeg');
 }
.home-section-template-new-arrivals .home-section-template__bg{
    background-image: url('../images/offers/hero-3.jpeg');
}

 .home-section-template__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.82), rgba(13, 17, 23, 0.42));
 }

 .home-section-template .container {
    position: relative;
    z-index: 1;
 }
 .home-section-template__bg .container {
    padding-top: 5.5rem;
 }
 .home-section-template > .container {
    margin-top: -248px;
    overflow: hidden;
 }
 .home-section-template__header {
    position: relative;
 }

 .home-section-template__header .section-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
 }

 .home-section-template__header .section-title,
 .home-section-template__actions .section-title {
    font-size: 1.4rem;
    line-height: 3rem;
    font-weight: 600;
    margin-bottom: 0;
    /* margin-top: 10px; */
 }
 .home-section-template__header .section-title{
    color: #fff;
 }
 .home-section-template__header .section-description {
    color: rgba(255, 255, 255, 0.88);
    font-size: .875rem;
    line-height: 1.25rem;
    max-width: 32rem;
    margin-bottom: 2rem;
 }

 .home-section-template__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0px 15px;
 }

 .home-section-template__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    backdrop-filter: blur(8px);
 }

 .home-section-template__cta:hover {
    background: rgba(255, 255, 255, 0.2);
 }

 .home-section-template__nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
 }

 .home-section-template__nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    backdrop-filter: blur(8px);
 }

 .home-section-template__nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
 }

 .home-section-template__nav-btn.swiper-button-disabled,
 .home-section-template__nav-btn.swiper-button-lock,
 .home-section-template__nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(1);
 }

 .home-section-template__view-all {
    color: var(--luxury-gold);
    font-weight: 600;
    margin-left: 20px;
 }

 .home-section-template__view-all:hover {
    color: var(--luxury-gold-dark);
 }


 .home-section-template__actions .section-title{
    color: var(--luxury-black);
 }
 [data-home-category-section]{
    padding: 0 0 60px ;
 }
 [data-home-category-section] .home-section-template__nav-btn,
 [data-pd-related-section] .home-section-template__nav-btn {
    border: 1px solid rgba(209,213,219,1);
    color: #6b7280;
 }
 [data-home-category-section] .home-section-template__nav-btn:hover,
 [data-pd-related-section] .home-section-template__nav-btn:hover {
    border-color: var(--luxury-gold);
 }

 [data-home-category-section] .home-section-template__nav-btn.swiper-button-disabled,
 [data-home-category-section] .home-section-template__nav-btn:disabled {
     opacity: 0.35;
     cursor: not-allowed;
     pointer-events: none;
 }
 [data-home-category-section] .home-section-template__nav-btn:hover i,
 [data-pd-related-section] .home-section-template__nav-btn:hover i{
    color: var(--luxury-black);
 }

.home-categories-showcase{
    padding-top: 0;
}

 .home-categories-grid {
    display: grid;
    gap: .75rem;
    grid-auto-flow: row;
    grid-auto-rows: 200px;
 }

 .home-category-card {
    position: relative;
    border-radius: .375rem;
    overflow: hidden;
    display: block;
    height: 100%;
    background: #e9ecef;
 }

 .home-category-card img {
    width: 100%;
    height: 100%;
    object-position: 50%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 280ms ease;
 }

 .home-category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    transition: background 220ms ease;
 }

 .home-category-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 1;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
 }

 .home-category-card:hover img {
    transform: scale(1.06);
 }

 .home-category-card:hover::after {
    background: rgba(0,0,0,.7);
 }

 .home-category-card:hover .home-category-title {
    opacity: 1;
    transform: translateY(0);
 }
@media(min-width: 640px){
    .home-section-template__bg {
        height: 464px;
    }
    .home-section-template__bg .container {
        padding-top: 5rem;
    }
    .home-categories-grid {
        gap: 2rem;
    }
    .home-category-card.is-tall {
        grid-column: span 1 / span 1;
        grid-row: span 2 / span 2;
    }
}
@media(min-width: 768px){
    .home-section-template__header {
        padding-right: 2rem;
    }
    .home-categories-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .home-category-card.is-tall {
        height: 100%;
    }
}
@media(min-width: 1024px){
    .home-category-title {
        opacity: 0;
        transform: translateY(1.5rem);
    }
}

@media (min-width: 480px) {
}
 @media (max-width: 768px) {
    .bestseller-products-slider,
    .products-slider,
    .discount-products-slider{
        padding: 20px 10px 30px;
}

    .home-section-template__nav-btn {
        display: none;
    }

    .brands-button-next,
    .brands-button-prev,
    .testimonial-button-next,
    .testimonial-button-prev {
        display: none;
    }
}
@media (max-width: 479px) {
    .bestseller-products-slider,
    .products-slider,
    .discount-products-slider{
        padding: 20px 5px 30px;
        margin-left: -.625rem;
        margin-right: -.625rem;
    }
}
/* ===================================
   Products Page Hero
    =================================== */
.products-hero .hero-overlay{
    background: url('../images/about/about-bg.jpg') center/cover;
}

/* ===================================
   Home Page Hero
    =================================== */
.home-hero .hero-overlay{
    filter: blur(0);
    opacity: 1;
}
.home-hero .hero-slide.first-slide .hero-overlay{
    /* background: linear-gradient(135deg,rgba(13, 17, 23, 0.8),rgba(212, 175, 55, 0.25)), url('../images/hero/hero-1.jpeg') center/cover no-repeat; */
    background: linear-gradient(135deg, var(--luxury-black), rgba(13, 17, 23, 0.7)), url('../images/hero/hero-1.jpeg') center/cover no-repeat;
}
.home-hero .hero-slide.second-slide .hero-overlay{
    /* background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.05)), url('../images/hero/hero-2.jpeg') center/cover no-repeat;;     */
    background: linear-gradient(135deg, var(--luxury-black), rgba(13, 17, 23, 0.7)), url('../images/hero/hero-2.jpeg') center/cover no-repeat;  
}
.home-hero .hero-slide.third-slide .hero-overlay{
    /* background: linear-gradient(135deg, var(--luxury-black), rgba(13, 17, 23, 0.7)), url('../images/hero/hero-3.jpeg') center/cover no-repeat;; */
    background: linear-gradient(135deg, var(--luxury-black), rgba(13, 17, 23, 0.7)), url('../images/hero/hero-3.jpeg') center/cover no-repeat;
    
}
/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

.no-scroll {
    overflow: hidden;
}

 .confirm-modal-overlay {
     position: fixed;
     inset: 0;
     background: rgba(13, 17, 23, 0.55);
     backdrop-filter: blur(2px);
     -webkit-backdrop-filter: blur(2px);
     z-index: 11000;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .confirm-modal {
     width: 100%;
     max-width: 520px;
     background: linear-gradient(180deg, #ffffff 0%, #fff8f0 100%);
     border: 1px solid rgba(212, 175, 55, 0.25);
     border-radius: 18px;
     box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
     padding: 18px;
     position: relative;
     animation: confirmModalIn 160ms ease;
 }

 .confirm-modal-close {
     position: absolute;
     top: 12px;
     left: 12px;
     width: 38px;
     height: 38px;
     border-radius: 12px;
     border: 1px solid rgba(13, 17, 23, 0.12);
     background: rgba(255, 255, 255, 0.9);
     color: var(--luxury-black);
     cursor: pointer;
     transition: var(--transition);
 }

 .confirm-modal-close:hover {
     transform: translateY(-1px);
     border-color: rgba(212, 175, 55, 0.55);
 }

 .confirm-modal-title {
     margin: 0 0 8px;
     font-weight: 900;
     font-size: 18px;
     color: var(--luxury-black);
     padding-left: 46px;
 }

 .confirm-modal-message {
     color: rgba(13, 17, 23, 0.75);
     line-height: 1.9;
     font-size: 14px;
     margin-bottom: 14px;
 }

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

 .confirm-modal-btn {
     border: 1px solid transparent;
     border-radius: 14px;
     padding: 12px 14px;
     font-weight: 900;
     cursor: pointer;
     transition: var(--transition);
 }

 .confirm-modal-btn-cancel {
     background: #fff;
     border-color: rgba(212, 175, 55, 0.35);
     color: var(--luxury-black);
 }

 .confirm-modal-btn-cancel:hover {
     background: rgba(212, 175, 55, 0.08);
     border-color: rgba(212, 175, 55, 0.55);
 }

 .confirm-modal-btn-confirm {
     background: linear-gradient(135deg, var(--luxury-black-light) 0%, var(--luxury-charcoal) 100%);
     border-color: rgba(212, 175, 55, 0.22);
     color: var(--luxury-white);
 }

 .confirm-modal-btn-confirm:hover {
     transform: translateY(-1px);
 }

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

