/* Global Styles */
:root {
    --text-primary: #333;
    --text-secondary: #666;
    --accent-gold: #c5a47e;
    --accent-tiffany: #0ABAB5;
    /* Authentic Tiffany Blue */
    --bg-cream: #fdfaf7;
    /* Richer Cream */
    --bg-white: #ffffff;
    --border-color: #eee;
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Amiri', serif;
    --font-script: 'Dancing Script', cursive;
    --font-arabic: 'Noto Kufi Arabic', sans-serif;
}

/* i18n Loading State */
[data-i18n] {
    transition: opacity 0.2s ease;
}

.i18n-loading [data-i18n] {
    opacity: 0 !important;
}

/* Resize Stopper */
/* Resize Stopper */
.resize-animation-stopper * {
    animation: none !important;
    transition: none !important;
}

.hero-cta-btn:hover {
    background-color: #089e9a !important;
    border-color: #089e9a !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-cream);
    transition: opacity 0.3s ease;
}

/* Hardware Acceleration for Smoother Transitions */
.mobile-menu,
.cart-drawer,
.modal,
.action-btn,
.product-card,
.btn {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Buttery Smooth Transitions */
.transition-smooth {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu {
    position: fixed;
    top: 0;
    inset-inline-start: -100%;
    width: 85%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 80px 40px;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateX(100%);
}

[dir="rtl"] .mobile-menu.active {
    transform: translateX(-100%);
}

.cart-drawer {
    position: fixed;
    top: 0;
    inset-inline-end: -100%;
    width: 100%;
    max-width: 420px;
    height: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 2500;
    transition: inset-inline-end 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    will-change: inset-inline-end;
}

[dir="ltr"] .cart-drawer {
    left: auto !important;
    right: -100% !important;
}

[dir="rtl"] .cart-drawer {
    right: auto !important;
    left: -100% !important;
}

.cart-drawer.active {
    inset-inline-end: 0 !important;
    visibility: visible !important;
}

[dir="ltr"] .cart-drawer.active {
    right: 0 !important;
    left: auto !important;
}

[dir="rtl"] .cart-drawer.active {
    left: 0 !important;
    right: auto !important;
}


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

ul {
    list-style: none;
}

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

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


.section {
    padding: 80px 0;
    background-color: var(--bg-cream);
    /* Consistent Background using Cream to avoid white bars */
}

@media (max-width: 768px) {
    .section {
        padding: 45px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gold-line {
    width: 60px;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    margin-inline-start: 15px;
    color: #333;
    transition: color 0.3s;
    position: relative;
    /* For badges */
}

.action-btn i,
.action-btn svg {
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.wishlist-count,
.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #e74c3c;
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.action-btn:hover {
    color: var(--accent-tiffany);
}

.lang-btn {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 10px;
}

/* Announcement Bar Slider */
.announcement-bar {
    background-color: #000;
    /* High contrast black */
    color: var(--accent-tiffany);
    /* Luxury Tiffany text */
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .announcement-bar {
        height: 40px;
        font-size: 0.8rem;
    }
}

.announcement-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

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

/* Header */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 70px;
    /* Slimmer header for better organization */
}


.mobile-search {
    display: none;
    /* Hidden on desktop */
}

.desktop-search {
    display: inline-block;
}

/* Hide mobile-specific elements on desktop */
.mobile-controls,
.mobile-nav-header,
.mobile-menu-footer,
.mobile-only-link {
    display: none;
}

/* Desktop Menu Layout */
.mobile-menu-items {
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    z-index: 5;
}

/* Center Logo */
.header-inner .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: auto;
}

.header-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 5;
}

.nav-links a {
    margin: 0 15px;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: #000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-tiffany);
    /* Tiffany */
    transition: width 0.3s;
}

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

.brand-text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.le-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #000;
    letter-spacing: 1px;
}

.by-text {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: #666;
}

@media (max-width: 480px) {
    .le-text {
        font-size: 1.4rem;
    }

    .by-text {
        font-size: 1rem;
    }

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

.header-actions {
    display: flex;
    align-items: center;
}

/* Hero Section Redesign */
.hero-section {
    background-color: var(--bg-cream);
    padding: 80px 0;
    min-height: 85vh;
    /* Go back to tall height */
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-text-content {
    flex: 1;
    text-align: start;
    z-index: 2;
    /* Lower z-index than before but positive */
    padding: 20px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-arabic);
    font-size: 1.1rem;
    color: var(--accent-tiffany);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-text-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    /* Slightly smaller for safety */
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
}

.highlight-text {
    color: var(--accent-tiffany);
    font-style: italic;
}

.hero-text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        padding: 0 20px;
    }

    .hero-btns .btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

.hero-image-container {
    flex: 1;
    height: 550px;
    /* Explicit height */
    position: relative;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    box-shadow: -15px 15px 25px rgba(0, 0, 0, 0.1);
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Category Grid Spacing */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hero-section:hover .hero-main-img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text-content {
        text-align: center;
        padding: 20px;
        order: 1;
        /* Text first */
    }

    .hero-text-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-container {
        width: 100%;
        height: 400px;
        border-radius: 0 0 50% 50% / 20px;
        /* Different shape for mobile */
        box-shadow: none;
        order: 2;
        /* Image second */
    }
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Added default shadow */
    border: 1px solid #f5f5f5;
    /* Subtle border for definition */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    /* More pronounced hover */
}

.product-img-box {
    position: relative;
    height: 380px;
    /* Slightly taller for luxury feel */
    background-color: #f9f9f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    inset-inline-end: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #999;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: #e74c3c;
}

.wishlist-btn.active {
    color: #e74c3c;
}

.wishlist-btn i {
    font-size: 1.1rem;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-info {
    padding: 24px;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
}

.product-title-row {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    gap: 8px !important;
}

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0 !important;
    color: #000;
    flex: 1;
}

.product-info .price {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-tiffany);
    white-space: nowrap !important;
    margin: 0 !important;
}

.add-btn {
    background: var(--accent-tiffany);
    /* Tiffany Default */
    color: #fff;
    border: none;
    padding: 12px 25px;
    /* Slightly larger */
    width: 100%;
    /* Full width for luxury feel */
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.add-btn:hover {
    background: #089c94;
    /* Darker Tiffany on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 186, 181, 0.3);
}

/* Category Cards */
.category-card {
    position: relative;
    /* CRITICAL: Contains the absolute overlay */
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.category-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    text-align: center;
    border-radius: 4px;
}

/* Footer */
/* Footer */
.main-footer {
    background-color: #fff;
    /* White Background */
    color: #000;
    /* Dark Text */
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .le-text {
    color: #000;
    /* Black Text */
}

.footer-logo .by-text {
    color: #555;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000;
    /* Black Header */
}

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

.footer-column ul li a {
    color: #555;
    /* Dark Gray Links */
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--accent-tiffany);
    /* Tiffany Hover */
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}

/* Product Page Specifics */
.product-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-gallery {
    background-color: var(--bg-cream);
    padding: 20px;
    border-radius: 8px;
}

.product-details h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-tiffany);
    margin-bottom: 20px;
    display: block;
}

.lv-short-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.quantity-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.quantity-wrapper input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    padding: 10px;
}

.quantity-wrapper button {
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 100%;
    cursor: pointer;
    font-size: 1.2rem;
}

.add-to-cart-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-right: 20px;
}

.add-to-cart-btn:hover {
    background: #333;
}

/* Shipping Timeline */
.shipping-timeline {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start;
    position: relative;
    margin: 50px 0;
    width: 100%;
}

.shipping-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    z-index: 2;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: #aeaeae;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.timeline-step:hover .timeline-icon {
    background: var(--accent-tiffany);
    color: #fff;
    border-color: var(--accent-tiffany);
    transform: translateY(-3px);
}

.timeline-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.timeline-date {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

/* Product Page Layout */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0;
    align-items: start;
}

@media (max-width: 900px) {
    .product-detail {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .product-gallery {
        order: -1;
        width: 100%;
    }

    .product-info-detail {
        order: 1;
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .product-category {
        margin-bottom: 5px;
    }

    .product-header-row {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-bottom: 5px;
    }

    .lv-title {
        font-size: 1.8rem;
        margin-bottom: 0;
        text-align: start;
        display: inline-block;
    }

    .lv-price {
        font-size: 1.3rem;
        /* Made price smaller */
        margin-bottom: 0;
        display: inline-block;
        font-weight: 600;
    }

    .lv-gift-wrapper {
        text-align: start;
        width: 100%;
    }

    .product-options {
        width: 100%;
    }

    .size-chips {
        justify-content: center;
    }

    .shipping-timeline {
        margin: 30px 0 !important;
    }

    .purchase-actions {
        width: 100%;
    }

    .lv-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .lv-accordions {
        order: 2;
        width: 100%;
    }
}

.product-info-detail {
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-header-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.lv-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    /* Slightly smaller for elegance */
    margin-bottom: 0;
    color: #000;
    line-height: 1.2;
}

.lv-price {
    font-size: 1.5rem;
    /* Made price smaller here too */
    font-weight: 600;
    color: var(--accent-tiffany);
    margin-bottom: 0;
    display: inline-block;
}

.lv-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

/* Size Chips */
.size-chips {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.chip {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    transition: all 0.3s;
}

.chip:hover {
    border-color: var(--accent-tiffany);
    color: var(--accent-tiffany);
}

.chip.active {
    background: var(--accent-tiffany);
    color: #fff;
    border-color: var(--accent-tiffany);
}


/* Side Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(2px);
}

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


.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.cart-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.close-cart-btn {
    background: #f5f5f5;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-cart-btn:hover {
    background: #eee;
    transform: rotate(90deg);
}


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

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

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.cart-item-price {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 6px;
    height: 32px;
    background: #fdfdfd;
}

.qty-control .qty-btn {
    width: 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 0;
}

.qty-display {
    width: 30px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.remove-item-btn {
    background: #fff5f5;
    border: 1px solid #ffebeb;
    color: #ff4d4d;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.remove-item-btn:hover {
    background: #ff4d4d;
    color: #fff;
    border-color: #ff4d4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 77, 77, 0.2);
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.03);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
}

/* Progress Bar Styles */
.free-shipping-bar {
    padding: 15px 20px;
    background: #fdfdfd;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.progress-container {
    height: 6px;
    background: #eef0f2;
    border-radius: 10px;
    margin-top: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-tiffany), #089c94);
    width: 0%;
    transition: width 0.6s ease-out;
    border-radius: 10px;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: #0ABAB5;
    /* Tiffany */
    color: #fff;
    /* White text looks better on Tiffany */
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: block;
    text-decoration: none;
}

.checkout-btn:hover {
    background: #089c94;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Mobile Menu needed later */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-img-box {
        height: 380px;
        /* Larger height for mobile 1-col */
    }

    .product-info {
        padding: 20px;
        gap: 15px !important;
    }

    .product-title-row {
        gap: 15px !important;
    }

    .product-info h4 {
        font-size: 1.3rem !important;
    }

    .product-info .price {
        font-size: 1.15rem !important;
    }

    .add-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

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

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

    /* Reset for mobile - Removed redundant drawer styles */
}

/* Distributions Filters */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    color: #666;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    color: var(--accent-tiffany);
    background: #f0fdfc;
    /* Light Tiffany tint */
}

.filter-btn.active {
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-tiffany);
    border-radius: 0;
    padding-bottom: 5px;
}

/* Product Page Accordions */
.lv-accordions {
    margin-top: 30px;
    border-top: 1px solid #eee;
}

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

.lv-accordion-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.lv-accordion-item summary:hover {
    color: var(--accent-tiffany);
}

.lv-accordion-item[open] summary {
    color: var(--accent-tiffany);
}

.accordion-content {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.lv-accordion-item i {
    font-size: 0.8rem;
    color: #999;
    transition: transform 0.3s;
}

.lv-accordion-item[open] i {
    transform: rotate(45deg);
    color: var(--accent-tiffany);
}

/* Product Page Actions */
.purchase-actions {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 100%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
}

.qty-btn:hover {
    color: var(--accent-tiffany);
    background: #fafafa;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.add-to-cart-big {
    flex: 1;
    background: var(--accent-tiffany);
    color: #fff;
    padding: 15px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

@media (max-width: 768px) {
    .purchase-actions {
        flex-direction: row;
        gap: 10px;
    }

    .qty-btn {
        width: 35px;
    }

    .quantity-selector input {
        width: 40px;
    }

    .add-to-cart-big {
        font-size: 1rem;
        padding: 12px;
    }
}

.add-to-cart-big:hover {
    background: #089c94;
}

.lv-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    /* WhatsApp Green override or keep tiffany? User wanted tiffany generally but WA is green usually. Let's keep WA green for recognition or use styling classes */
    border: 1px solid #25D366;
    background: #fff;
    padding: 12px 30px;
}

.lv-btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* =========================================
   MOBILE MENU STYLES
   ========================================= */

/* Hamburger Button (Hidden on Desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    z-index: 2000;
    width: 45px;
    height: 45px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* Mobile Styles */
@media (max-width: 900px) {
    .header-inner {
        height: 70px;
        flex-wrap: nowrap !important;
    }

    .menu-toggle {
        display: flex;
        position: relative;
    }

    .mobile-controls {
        display: flex !important;
        align-items: center;
        flex: 1;
    }

    .mobile-nav-header {
        display: block !important;
        margin-bottom: 30px;
        text-align: center;
    }

    .mobile-menu-footer,
    .mobile-only-link {
        display: block !important;
        /* Make sure they are visible */
    }

    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .mobile-search {
        display: block;
        margin-inline-end: 10px;
        margin-inline-start: 10px;
        padding: 5px;
        color: #333;
    }

    .le-text {
        font-size: 1.3rem !important;
        white-space: nowrap;
    }

    .by-text {
        font-size: 0.85rem !important;
        white-space: nowrap;
    }

    .header-actions {
        flex: 1;
        justify-content: flex-end;
    }

    .action-btn {
        margin-inline-start: 8px;
        padding: 8px;
    }

    .action-btn i,
    .action-btn svg {
        font-size: 1.45rem;
        width: 24px;
        height: 24px;
        /* Larger on mobile for touch and visibility */
    }

    .lang-btn {
        font-size: 0.8rem !important;
        padding: 0 8px !important;
    }

    .user-btn {
        display: none !important;
        /* Hide user icon on mobile */
    }

    .desktop-search,
    .desktop-only-wishlist {
        display: none !important;
    }

    /* Fixed Sidebar Navigation */
    /* Fixed Sidebar Navigation */
    /* Fixed Sidebar Navigation */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        inset-inline-start: 0;
        inset-inline-end: auto;
        width: 80%;
        max-width: 320px;
        height: 100%;
        height: 100dvh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: center;
        padding: 60px 20px;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.4s;
        z-index: 2500;
        box-shadow: none;
        border-inline-end: 1px solid #f0f0f0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        visibility: hidden;
        transform: translateZ(0);
        will-change: transform;
    }

    [dir="ltr"] .nav-links {
        transform: translate3d(-100%, 0, 0);
    }

    [dir="rtl"] .nav-links {
        transform: translate3d(100%, 0, 0);
    }

    .nav-links.active {
        transform: translate3d(0, 0, 0) !important;
        visibility: visible !important;
    }

    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .mobile-nav-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .mobile-nav-header .le-text {
        font-family: var(--font-heading);
        font-size: 1.6rem;
        color: #000;
        letter-spacing: 1px;
    }

    .mobile-nav-header .by-text {
        font-family: var(--font-script);
        font-size: 1.1rem;
        color: #888;
    }



    .nav-links a {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        color: #333;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: none;
        display: block;
        transition: all 0.3s;
    }

    .nav-links a::after {
        display: none !important;
        /* Hide the thick desktop line */
    }

    .nav-links a.active {
        color: var(--accent-tiffany) !important;
        font-weight: 700;
    }

    .nav-links a:hover {
        color: var(--accent-tiffany);
    }

    .mobile-only-link {
        font-size: 1.1rem !important;
        color: #666 !important;
        border-bottom: none !important;
        margin-top: 10px;
    }

    /* Mobile Menu Footer */
    .mobile-menu-footer {
        width: 100%;
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 15px;
    }

    .social-icons a {
        font-size: 1.2rem;
        color: #333;
        padding: 0;
        border: none;
        width: auto;
        display: inline-block;
    }

    .social-icons a:hover {
        color: var(--accent-tiffany);
        transform: translateY(-2px);
    }

    .contact-link {
        display: block;
        font-size: 0.9rem !important;
        color: #999 !important;
        border: none !important;
        padding: 5px 0 !important;
        font-family: var(--font-primary) !important;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Overlay Backedrop */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 990;
        /* Must be lower than header (1000) */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }

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

    /* Hamburger Animation to 'X' */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--accent-tiffany);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--accent-tiffany);
    }
}

/* Trust Section Grid */
.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    text-align: center;
}

@media (max-width: 600px) {
    .trust-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }

    .trust-features-grid h4 {
        font-size: 0.95rem !important;
    }

    .trust-features-grid p {
        font-size: 0.75rem !important;
    }

    .trust-features-grid i {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
    }
}

/* About Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text p {
        text-align: center !important;
        padding-left: 0 !important;
    }

    .about-text h2 {
        font-size: 2.5rem !important;
    }

    .about-img {
        order: -1;
        margin-bottom: 20px;
    }

    .about-text .about-features {
        justify-content: center;
    }
}

/* Horizontal Scroll Strip */
.horizontal-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    scroll-snap-type: x mandatory;
    margin-right: -15px;
    /* Offset container padding to allow full bleed */
    padding-right: 15px;
    margin-left: -15px;
    padding-left: 15px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.horizontal-scroll-wrapper .product-card {
    flex: 0 0 70%;
    /* Show 70% of the card */
    scroll-snap-align: center;
    margin-bottom: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.horizontal-scroll-wrapper .product-img-box {
    height: 280px;
    flex-shrink: 0;
    /* Controlled height for the strip */
}

.horizontal-scroll-wrapper .product-info {
    padding: 20px;
    text-align: start !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
    /* Unified gap */
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    font-weight: 500;
}

.product-title-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
    gap: 12px !important;
    margin-bottom: 5px !important;
}

.horizontal-scroll-wrapper .add-btn {
    display: block !important;
    width: 100% !important;
    margin-top: 5px !important;
    text-align: center !important;
    border-radius: 4px !important;
    padding: 12px 0 !important;
}

.product-info h4 {
    font-size: 1.1rem !important;
    margin: 0 !important;
    text-align: start !important;
    line-height: 1.4 !important;
    color: #000 !important;
}

.product-info .price {
    font-size: 1rem !important;
    margin: 0 !important;
    color: var(--accent-tiffany) !important;
    white-space: nowrap !important;
    font-weight: 800 !important;
}

@media (min-width: 768px) {
    .horizontal-scroll-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow-x: visible;
        margin: 0;
        padding: 0;
        gap: 30px;
        /* Increased gap from defaults */
    }

    .horizontal-scroll-wrapper .product-card {
        flex: unset;
        width: auto;
        min-width: unset;
    }
}

/* Badge System */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-tiffany);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.badge.black {
    background: #000;
}

@media (max-width: 600px) {
    .le-text {
        font-size: 1.5rem;
    }

    .by-text {
        font-size: 1rem;
    }
}

/* Distribution Filters Active State */
.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    color: #000 !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #000 !important;
}

/* Mobile Footer Accordion */
@media (max-width: 768px) {
    .footer-grid {
        display: block;
        /* Stack everything */
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-column {
        border-bottom: 1px solid #efefef;
        margin-bottom: 0;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-column h4 {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        margin-bottom: 0 !important;
        font-size: 1rem;
    }

    .footer-column h4::after {
        content: '+';
        font-size: 1.2rem;
        transition: transform 0.3s ease;
        color: var(--accent-tiffany);
    }

    .footer-column.active h4::after {
        transform: rotate(45deg);
        /* Turn + into x or rotate it */
    }

    .footer-column ul {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease-out;
        padding-right: 0;
        list-style: none;
    }

    .footer-column.active ul {
        max-height: 500px;
        opacity: 1;
        margin-bottom: 20px;
        padding-top: 10px;
    }
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        margin-bottom: 30px;
    }
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f9f9f9;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-tiffany);
    color: white;
    border-color: var(--accent-tiffany);
    transform: translateY(-3px);
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

    .contact-form-container h3,
    .contact-info-container h3 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }

    .page-title {
        font-size: 2rem !important;
    }

    .contact-hero {
        padding: 30px 0 !important;
    }
}

.lv-input:focus {
    border-color: var(--accent-tiffany) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.1);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* Experience Badge Fix */
.experience-badge {
    position: absolute;
    bottom: -20px;
    inset-inline-end: -20px;
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: -10px;
        inset-inline-end: -10px;
    }

    .experience-badge .amount {
        font-size: 1.8rem !important;
    }
}

/* Checkout Success Modal */
.order-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.order-success-overlay.active {
    display: flex;
    animation: fadeIn 0.5s ease-out;
}

.success-content {
    max-width: 450px;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-tiffany);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(199, 161, 122, 0.2);
    animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.success-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.success-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.success-btn:hover {
    background: var(--accent-tiffany);
    transform: translateY(-3px);
}

@keyframes scaleUp {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 30px;
    width: 45px;
    height: 45px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-tiffany);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 100px;
        /* Stay above the build-box bar if present */
        inset-inline-end: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ====== 1. Skeleton Loaders (Shimmer) ====== */
@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.skeleton-box {
    animation: shimmer 1.5s infinite linear;
    background: linear-gradient(to right, #f6f7f8 4%, #edeef1 25%, #f6f7f8 36%);
    background-size: 800px 100%;
}

.skeleton-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
}

.skeleton-text {
    height: 14px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-btn {
    height: 40px;
    border-radius: 25px;
    width: 100%;
    margin-top: 15px;
}

/* ====== 2. Product Reviews Section ====== */
.product-reviews-section {
    padding: 60px 0;
    background-color: #fafaef;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

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

.reviews-header .title {
    font-size: 1.5rem;
    font-family: var(--font-english);
    color: var(--navy-primary);
}

[dir="rtl"] .reviews-header .title {
    font-family: var(--font-arabic);
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews-summary .average {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviewer-info h5 {
    margin: 0 0 5px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    color: #4CAF50;
    font-size: 0.85rem;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
}

.review-body {
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

.write-review-btn {
    background: transparent;
    border: 1px solid var(--accent-tiffany);
    color: var(--navy-primary);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    font-weight: 500;
}

.write-review-btn:hover {
    background: var(--accent-tiffany);
    color: #fff;
}

/* ====== 3. Out of Stock Button ====== */
.btn-notify {
    background-color: #333 !important;
    border-color: #333 !important;
}

.out-of-stock-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* ====== 4. Page Transition ✨ ====== */
body {
    animation: fadeInPage 0.8s ease-out forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}