:root {
    --primary-color: #1A1410;
    /* Warm Black */
    --secondary-color: #FAF8F3;
    /* Cream */
    --accent-color: #D4AF37;
    /* Luxury Gold */
    --beige-dark: #C9A876;
    /* Dark Beige */
    --beige-light: #F5E6D3;
    /* Light Beige */
    --text-color: #2C2420;
    /* Warm Dark Brown */
    --light-gray: #F5E6D3;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html[lang="ar"] {
    --font-heading: 'Almarai', sans-serif;
    --font-body: 'Almarai', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #FAF8F3;
    /* Warm Cream Background */
    background-image: url('../images/site-bg.webp');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
    overflow-x: hidden;
    padding-top: 110px;
    /* Space for fixed header */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Unified White Header System */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FAF8F3;
    /* Warm Cream Header */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
}

/* Top Bar */
.top-bar {
    background: #1A1410;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #F5E6D3;
    position: relative;
    z-index: 20;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.top-links {
    display: flex;
    gap: 20px;
    z-index: 2;
}

.top-links.left {
    flex: 1;
    justify-content: flex-start;
}

.top-links.right {
    flex: 1;
    justify-content: flex-end;
}

.top-links a {
    color: #F5E6D3;
    transition: color 0.3s;
    font-size: 14px;
}

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

.top-message {
    font-weight: 600;
    color: #F5E6D3;
    letter-spacing: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
    text-align: center;
    z-index: 1;
}

/* Main Header */
.main-header {
    position: relative;
    /* Changed from fixed to relative as it's inside wrapper */
    width: 100%;
    z-index: 100;
    padding: 40px 0;
    background: #FAF8F3;
    /* Warm Cream */
    box-shadow: none;
    border-bottom: none;
}

.header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-wishlist {
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--primary-color);
    font-size: 20px;
    transition: color 0.3s;
}

.header-nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #1A1410;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

@media (max-width: 1024px) {
    .header-nav-link {
        display: none;
    }
}

.header-nav-link:hover {
    color: var(--accent-color);
}

.menu-btn,
.search-btn,
.cart-btn,
.header-wishlist {
    color: #1A1410;
    font-size: 18px;
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
}

.menu-btn,
.search-btn,
.cart-btn,
.currency-selector,
.header-wishlist {
    background: none;
    border: none;
    color: #1A1410;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.currency-selector img.lang-flag {
    width: 34px;
    height: 24px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.currency-selector:hover,
.header-wishlist:hover,
.cart-btn:hover {
    background: rgba(26, 20, 16, 0.05);
}

/* Hide Menu and Search on Laptop/Desktop */
@media (min-width: 1025px) {

    .menu-btn,
    .search-btn {
        display: none;
    }
}

.menu-btn:hover,
.search-btn:hover,
.cart-btn:hover,
.header-wishlist:hover,
.currency-selector:hover {
    color: var(--accent-color);
}

.logo {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    max-height: 180px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Sidebar Logo */
.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo img {
    max-height: 50px;
    width: auto;
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */

.premium-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
    background-color: #1A1410;
}

@media (max-width: 768px) {
    .premium-hero {
        height: 120vw;
        min-height: 500px;
    }
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide.active .hero-background {
    animation: kenBurns 20s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

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

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1410 0%, #2C2420 50%, #1A1410 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.hero-background.mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-background.desktop {
        display: none;
    }

    .hero-background.mobile {
        display: block;
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.2), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes particlesFloat {

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

    25% {
        transform: translate(10px, -10px);
    }

    50% {
        transform: translate(-5px, 10px);
    }

    75% {
        transform: translate(5px, 5px);
    }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #FAF8F3;
    max-width: 900px;
    padding: 0 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #F5E6D3 50%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    display: block;
}

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

    100% {
        background-position: 200% center;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(245, 230, 211, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    letter-spacing: 0.5px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero.primary {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A876 100%);
    border: 2px solid #D4AF37;
    color: #1A1410;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-hero.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-hero.secondary {
    background: transparent;
    border: 2px solid rgba(245, 230, 211, 0.3);
    color: #FAF8F3;
    backdrop-filter: blur(10px);
}

.btn-hero.secondary:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(245, 230, 211, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-item i {
    font-size: 16px;
    color: #D4AF37;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.hero-arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    color: #D4AF37;
    font-size: 18px;
}

.hero-arrow:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.hero-arrow.prev {
    left: 40px;
}

.hero-arrow.next {
    right: 40px;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245, 230, 211, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    width: 25px;
    border-radius: 6px;
    background: #D4AF37;
    border-color: #D4AF37;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 15;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #D4AF37, transparent);
}

.scroll-indicator span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(245, 230, 211, 0.6);
    text-transform: uppercase;
}

/* ============================================
   CATEGORIES SHOWCASE
   ============================================ */

.categories-showcase {
    padding: 100px 0;
    background: transparent;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.category-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
}

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

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.95) 0%, rgba(26, 20, 16, 0.4) 50%, transparent 100%);
    transition: background 0.5s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(26, 20, 16, 1) 0%, rgba(26, 20, 16, 0.5) 60%, transparent 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    z-index: 2;
    color: #FAF8F3;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-content p {
    font-size: 13px;
    color: rgba(245, 230, 211, 0.9);
    margin-bottom: 20px;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.category-card:hover .category-content p {
    opacity: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    gap: 15px;
    color: #fff;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-arrow {
        width: 50px;
        height: 50px;
    }

    .hero-arrow.prev {
        left: 20px;
    }

    .hero-arrow.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .premium-hero {
        height: 60vh;
        min-height: 400px;
    }

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

    .logo img {
        max-height: 140px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .categories-showcase {
        padding: 10px 0;
    }

    .section {
        padding: 15px 0;
    }

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

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

    .category-card {
        height: auto;
        aspect-ratio: 1/1;
    }

    .category-content {
        padding: 15px;
    }

    .category-content h3 {
        font-size: 18px;
    }

    .category-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero-arrow {
        display: none;
    }
}

/* Product Section */
.section {
    padding: 80px 0;
}

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

.section-header h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-luxury {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title-luxury::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.new-arrivals {
    background: transparent;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 20px 0;
}

.product-card {
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 20px;
    background: radial-gradient(circle at center, #FCFBF8 0%, #F7F4EF 100%);
    /* Lighter Warm Cream Gradient */
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    /* Subtle Gold Border */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent-color);
    color: #fff;
    padding: 6px 12px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 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;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: #ccc;
    opacity: 0;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    color: var(--accent-color);
}

.product-info {
    width: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-info .category {
    order: 1;
    font-size: 11px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-weight: 500;
}

.product-info h4 {
    order: 2;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1A1410;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info .price {
    order: 3;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
}

.quick-add-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #2C2420;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-add-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Product Page Enhancements */
.product-rating {
    color: #D4AF37;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-count {
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.trust-item i {
    color: var(--accent-color);
    font-size: 16px;
}

.olfactory-notes {
    margin-top: 40px;
    padding: 30px;
    background-color: #FAF8F3;
    border: 1px solid #f0e6d2;
    border-radius: 4px;
}

.notes-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.note-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.note-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    border: 1px solid #D4AF37;
    font-size: 18px;
}

.note-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1A1410;
}

.note-value {
    font-size: 13px;
    color: #666;
}

/* Arabic Support for New Elements */
html[lang="ar"] .product-rating {
    flex-direction: row;
}

html[lang="ar"] .trust-item {
    flex-direction: row;
}

/* Footer */
/* Footer */
footer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #1A1410;
    padding: 80px 0 40px;
    border-top: 1px solid #efe6de;
    margin-top: 50px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-links .col {
    display: flex;
    flex-direction: column;
}

.footer-links h5 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c2117;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: #c5a059;
}

html[lang="en"] .footer-links h5::after {
    right: auto;
    left: 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.footer-links a i {
    color: #c5a059;
    width: 18px;
    text-align: center;
}

.footer-links a:hover {
    color: #c5a059;
    transform: translateX(-5px);
}

html[lang="en"] .footer-links a:hover {
    transform: translateX(5px);
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.footer-btn.customer-service {
    background: #2c2117;
    color: #fff;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1A1410;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #2c2117;
    color: #fff;
    border-color: #2c2117;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #efe6de;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.payment-icons img:hover {
    transform: scale(1.1);
}

.copyright p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        background: #fff;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: right;
        gap: 20px;
    }

    .footer-links .col {
        padding: 10px 0;
        border-bottom: none;
    }

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

    .footer-links h5 {
        margin-bottom: 12px;
        font-size: 18px;
        font-weight: 900;
        color: #1A1410;
        padding-bottom: 0;
    }

    .footer-links h5::after {
        display: none;
    }

    .footer-links a {
        font-size: 14px;
        color: #1A1410;
        margin-bottom: 8px;
        font-weight: 600;
        justify-content: flex-start;
        transform: none !important;
    }

    .footer-actions {
        margin: 20px 0;
        gap: 10px;
        border-top: 1px solid #f2f2f2;
        padding-top: 20px;
        display: flex;
        flex-direction: row;
    }

    .footer-btn {
        flex: 1;
        padding: 10px 5px;
        font-size: 11px;
        border-radius: 4px;
        justify-content: center;
        box-shadow: none;
    }

    .footer-social {
        margin-bottom: 20px;
        border-top: 1px solid #f2f2f2;
        padding-top: 20px;
        gap: 20px;
    }

    .footer-social a {
        background: transparent;
        border: none;
        width: auto;
        height: auto;
        font-size: 22px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 15px;
        border-top: 1px solid #f2f2f2;
    }

    .payment-icons {
        justify-content: center;
        margin-bottom: 15px;
        gap: 12px;
    }

    .payment-icons img {
        height: 22px;
    }

    .copyright p {
        font-size: 12px;
        color: #1A1410;
        font-weight: 600;
    }

    .hero-categories {
        display: none;
    }

    .logo a {
        font-size: 24px;
    }

    .hero-cta h2 {
        font-size: 36px;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .hero-content {
        padding-bottom: 100px;
    }

    .top-bar .container {
        justify-content: center;
        gap: 10px;
    }

    .top-links.left,
    .top-links.right {
        display: none;
    }

    .top-message {
        font-size: 10px;
        width: 100%;
        text-align: center;
    }

    .search-btn {
        display: none !important;
    }

    .header-wishlist {
        display: flex !important;
        order: 2;
    }

    .header-left,
    .header-right {
        gap: 10px !important;
    }

    .header-right .currency-selector,
    .header-right .cart-btn {
        width: 35px;
        height: 35px;
    }
}

/* Arabic Support */
html[lang="ar"] body {
    font-family: 'Tajawal', sans-serif;
}

html[lang="ar"] .logo a,
html[lang="ar"] .hero-categories a,
html[lang="ar"] .hero-cta h2,
html[lang="ar"] .section-header h3,
html[lang="ar"] .footer-links h5,
html[lang="ar"] .btn {
    font-family: 'Tajawal', sans-serif;
    letter-spacing: 0;
}

html[lang="ar"] .badge {
    left: auto;
    right: 10px;
}

html[lang="ar"] .wishlist-btn {
    right: auto;
    left: 10px;
}







/* Shop Main Content */
.shop-main {
    flex: 1;
}

/* Filter Bar */
/* Filter Bar Professional Design */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.filter-count {
    font-family: var(--font-body);
    color: #666;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.filter-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.filter-group {
    position: relative;
}

.filter-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: space-between;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #000;
    background: #fafafa;
}

.filter-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.filter-btn.active i {
    transform: rotate(180deg);
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    min-width: 180px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
}

.filter-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-option:hover {
    background-color: #FAF8F3;
    color: var(--accent-color);
    padding-left: 25px;
}

/* RTL Support for Filters */
html[lang="ar"] .filter-btn {
    font-family: 'Tajawal', sans-serif;
}

html[lang="ar"] .filter-option {
    text-align: right;
    font-family: 'Tajawal', sans-serif;
}

html[lang="ar"] .filter-option:hover {
    padding-left: 20px;
    padding-right: 25px;
}

html[lang="ar"] .filter-checkbox .count {
    margin-right: 0;
    margin-left: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        border-radius: 0;
    }

    html[lang="ar"] .shop-sidebar {
        right: auto;
        left: -100%;
        transition: left 0.3s ease;
    }

    .shop-sidebar.active {
        right: 0;
    }

    html[lang="ar"] .shop-sidebar.active {
        left: 0;
    }

    .mobile-filter-btn {
        display: flex;
    }

    .filter-bar {
        flex-wrap: wrap;
    }
}

/* Related Collections */
.related-collections {
    padding: 60px 0;
    background-color: #fafafa;
}

.related-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.related-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}

.related-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.related-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.related-overlay h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .related-grid {
        flex-direction: column;
    }

    .related-card {
        height: 250px;
    }
}

/* Sidebar Styles */
/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar.active {
    left: 0;
}

/* RTL Sidebar */
html[dir="rtl"] .sidebar {
    left: auto;
    right: -350px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

html[dir="rtl"] .sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.close-sidebar {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    transition: transform 0.3s ease;
}

.close-sidebar:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
}

html[dir="rtl"] .close-sidebar {
    right: auto;
    left: 25px;
}

.sidebar-nav {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-nav a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.sidebar-nav a::after {
    display: none;
}

.sidebar-nav a:hover {
    color: var(--accent-color);
    padding-left: 10px;
    background: #fcfcfc;
}

.sidebar-nav a:hover::after {
    width: 100%;
}

html[dir="rtl"] .sidebar-nav a:hover {
    padding-left: 0;
    padding-right: 10px;
}

html[dir="rtl"] .sidebar-nav a::after {
    left: auto;
    right: 0;
}

.sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #eee;
    /* Light border */
    padding: 30px 20px;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 10px 0;
}

.sidebar-social a {
    font-size: 22px !important;
    color: #1A1410 !important;
    transition: transform 0.3s ease;
}

.sidebar-social a:hover {
    transform: scale(1.2);
    color: #D4AF37 !important;
}

.sidebar-footer a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    /* Dark gray */
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-footer a:hover {
    color: #000;
}

/* Product Page Styles */
.breadcrumbs-container {
    padding: 20px 0;
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: #999;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #000;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 10px;
    color: #ccc;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs li:last-child {
    color: #000;
    font-weight: 500;
}

.product-page {
    padding-top: 40px;
    padding-bottom: 100px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Slightly more balanced */
    gap: 100px;
    /* More space like reference */
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.main-image-container {
    width: 100%;
    background: radial-gradient(circle at center, #ffffff 0%, #f8f8f8 100%);
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.main-image-container::after {
    content: '';
    position: absolute;
    bottom: 10%;
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    filter: blur(8px);
    z-index: 1;
}

.main-image-container img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.thumbnail-list {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 100px;
    background-color: #f9f9f9;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #000;
}

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

.product-info-col {
    padding-top: 20px;
}

.product-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.product-title-main {
    font-family: var(--font-heading);
    font-size: 32px;
    /* Balanced size */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 700;
    /* Bold like reference */
    color: #000;
}

.product-price-main {
    font-size: 24px;
    font-weight: 700;
    /* Bold price */
    margin-bottom: 30px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-description-main {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 35px;
    max-width: 100%;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
}

.add-to-cart-btn {
    background-color: #000;
    color: #fff;
    padding: 0 30px;
    border: none;
    border-radius: 4px;
    /* Rounded like reference */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.3s ease;
    height: 55px;
    font-size: 14px;
}

.add-to-cart-btn:hover {
    opacity: 0.9;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    color: #000;
    padding: 0 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
    height: 55px;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: 1px solid #000;
}

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

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.payment-icon {
    height: 22px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(20%);
    /* Much more visible but still integrated */
}

.payment-icon:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.trust-badges {
    display: none;
    /* Hide old trust badges as requested */
}

.quantity-selector {
    display: flex;
    border: 1px solid #ddd;
    height: 50px;
}

.qty-btn {
    width: 40px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

.quantity-selector input {
    width: 50px;
    border: none;
    text-align: center;
    font-family: var(--font-body);
    font-size: 16px;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Removed conflicting button styles */

.wishlist-btn-large {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn-large:hover {
    border-color: #000;
}

.product-meta-accordion {
    border-top: 1px solid #eee;
}

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

.shipping-timeline-wrapper {
    background-color: #fcfcfc;
    /* Very light background */
    padding: 40px 20px;
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    width: 100%;
}

.timeline-line {
    position: absolute;
    top: 70px;
    /* Center of the 60px circle + padding top offset */
    left: 15%;
    right: 15%;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

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

.icon-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    /* Soft shadow like reference */
    margin-bottom: 15px;
    border: none;
    /* No border, just shadow */
    font-size: 24px;
    color: #333;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.step-date {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.step-label {
    font-size: 13px;
    color: #999;
    text-transform: capitalize;
    /* "Order Placed" casing */
    letter-spacing: 0;
    line-height: 1.2;
    font-weight: 400;
}

/* RTL Support for Timeline */
html[lang="ar"] .timeline-step {
    flex-direction: column;
}

html[lang="ar"] .step-content {
    align-items: center;
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    /* Or any value large enough */
}

.accordion-content p,
.accordion-content ul {
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.accordion-content ul {
    padding-left: 20px;
    list-style: disc;
}

/* Responsive Product Page */


/* Buy Together Section */
.bundle-section {
    padding: 80px 0;
    background-color: #FAFAFA;
    /* Very subtle separation */
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.buy-together-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.buy-together-visuals {
    display: flex;
    align-items: center;
    gap: 20px;
}

.buy-together-item {
    width: 150px;
    height: 200px;
    background-color: #fff;
    position: relative;
    border: 1px solid #eee;
}

.buy-together-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buy-together-plus {
    font-size: 24px;
    color: #999;
}

.buy-together-details {
    max-width: 400px;
}

.buy-together-title {
    font-family: var(--font-heading);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.buy-together-list {
    margin-bottom: 20px;
}

.buy-together-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.buy-together-checkbox input[type="checkbox"] {
    accent-color: #000;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.buy-together-price-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.total-price-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.total-price-value {
    font-size: 20px;
    font-weight: 600;
}

.add-all-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-all-btn:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .buy-together-container {
        flex-direction: column;
        text-align: center;
    }

    .buy-together-price-summary {
        flex-direction: column;
        gap: 15px;
    }
}

/* Cart Page Styles */
.cart-section {
    padding: 60px 0;
    min-height: 60vh;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    text-transform: uppercase;
    color: #666;
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.item-product {
    display: flex;
    gap: 20px;
    align-items: center;
}

.item-image {
    width: 80px;
    height: 100px;
    background-color: #f9f9f9;
}

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

.item-details h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.item-details p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.remove-btn {
    background: none;
    border: none;
    text-decoration: underline;
    font-size: 12px;
    color: #999;
    cursor: pointer;
    padding: 0;
}

.remove-btn:hover {
    color: #000;
}

.item-price,
.item-total {
    font-size: 14px;
}

.item-total {
    font-weight: 600;
}

.quantity-selector.small {
    height: 35px;
    width: 100px;
}

.quantity-selector.small .qty-btn {
    width: 30px;
    font-size: 14px;
}

.quantity-selector.small input {
    width: 40px;
    font-size: 14px;
}

.cart-summary {
    background-color: #f9f9f9;
    padding: 30px;
    height: fit-content;
}

.cart-summary h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #444;
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.tax-note {
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
    text-align: right;
}

.checkout-btn {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    display: block;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

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

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 24px;
    color: #ccc;
}

/* Checkout Page Styles */
.checkout-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.checkout-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-secure {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: start;
}

.checkout-step {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.checkout-step h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.payment-option:hover {
    border-color: var(--accent-color);
    background: #fff;
}

.payment-option input {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.payment-option input:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.payment-option input:checked+.radio-custom {
    border-color: var(--accent-color);
}

.payment-label {
    font-weight: 500;
    font-size: 14px;
    flex: 1;
}

.payment-icons {
    font-size: 20px;
    color: #666;
    display: flex;
    gap: 10px;
}

.card-details-form {
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.place-order-btn {
    background-color: var(--primary-color);
    color: #fff;
    width: 100%;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.place-order-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.return-cart-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    text-decoration: underline;
    color: #666;
}

.checkout-summary-box {
    background-color: #fff;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 150px;
}

.checkout-summary-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-items {
    margin-bottom: 30px;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.summary-img {
    width: 60px;
    height: 75px;
    position: relative;
    border: 1px solid #eee;
}

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

.qty-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.summary-info p {
    font-size: 12px;
    color: #666;
}

.summary-price {
    margin-left: auto;
    font-size: 14px;
    font-weight: 500;
}

.summary-totals {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #000;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.simple-footer {
    border-top: 1px solid #eee;
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 60px;
}

/* RTL Adjustments for Cart & Checkout */
html[lang="ar"] .radio-custom {
    margin-right: 0;
    margin-left: 15px;
}

html[lang="ar"] .summary-price {
    margin-left: 0;
    margin-right: auto;
}

html[lang="ar"] .qty-badge {
    right: auto;
    left: -8px;
}

html[lang="ar"] .tax-note {
    text-align: left;
}

/* Responsive Cart & Checkout */
@media (max-width: 900px) {

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-header {
        display: none;
        /* Hide header on mobile */
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
    }

    .item-price {
        display: none;
        /* Hide unit price on mobile, show total */
    }

    .item-qty {
        justify-self: start;
    }

    .item-total {
        position: absolute;
        bottom: 20px;
        right: 0;
    }

    .checkout-summary-col {
        order: -1;
        /* Show summary first on mobile */
    }
}

/* Auth Pages Styles */
.auth-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.auth-form {
    margin-top: 40px;
}

.auth-btn {
    background-color: #000;
    color: #fff;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

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

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.forgot-password {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.auth-footer a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

/* RTL Adjustments for Auth */
html[lang="ar"] .form-actions {
    justify-content: flex-end;
    /* Still flex-end because RTL flips it? No, flex-end is left in RTL usually. Let's check. */
    /* In RTL, flex-start is right, flex-end is left. We want forgot password on left? Usually yes. */
}

/* Enhanced Auth Page Design */
.auth-section {
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #fcfcfc;
}

.auth-wrapper {
    display: flex;
    background: #fff;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.auth-image {
    flex: 1;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.auth-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.auth-header h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
    font-size: 14px;
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s;
}

.auth-form input:focus {
    border-color: #000;
    box-shadow: 0 0 0 1px #000;
}

.auth-btn {
    margin-top: 10px;
    height: 55px;
    font-size: 15px;
    letter-spacing: 2px;
}

/* Responsive Auth */
@media (max-width: 900px) {
    .auth-wrapper {
        flex-direction: column;
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .auth-image {
        display: none;
    }

    .auth-content {
        padding: 0;
    }

    .auth-section {
        background-color: #fff;
        align-items: flex-start;
        padding-top: 40px;
    }
}

/* Shipping Timeline Styles */
.shipping-timeline {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 10px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

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

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

.step-date {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
}

/* RTL Adjustments for Timeline */
html[lang="ar"] .timeline-steps::before {
    left: 40px;
    right: 40px;
}

/* ========================================
   INCENSE HERO SECTION
   ======================================== */

.incense-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #1A1410 0%, #2C2420 100%);
    margin-top: 0;
    overflow: hidden;
    padding: 80px 0;
}

.incense-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Content */
.incense-hero-content {
    color: #FAF8F3;
    animation: fadeInLeft 1s ease-out;
}

.incense-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: #D4AF37;
    font-size: 10px;
}

.incense-hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-family: 'Tajawal', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, #FAF8F3 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-family: 'Tajawal', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #C9A876;
    letter-spacing: 1px;
}

.incense-hero-description {
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(250, 248, 243, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.incense-hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #D4AF37;
    font-family: 'Tajawal', sans-serif;
}

.feature-item i {
    font-size: 18px;
}

.incense-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-incense-primary,
.btn-incense-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-incense-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A876 100%);
    color: #1A1410;
    border: 2px solid #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-incense-primary:hover {
    background: linear-gradient(135deg, #C9A876 0%, #B8935A 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-incense-secondary {
    background: transparent;
    color: #FAF8F3;
    border: 2px solid rgba(250, 248, 243, 0.3);
}

.btn-incense-secondary:hover {
    background: rgba(250, 248, 243, 0.1);
    border-color: #FAF8F3;
    transform: translateY(-3px);
}

/* Right Side - Product Showcase */
.incense-hero-showcase {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 600px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
}

.showcase-item.large {
    grid-row: span 2;
}

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

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-label {
    display: block;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FAF8F3;
    margin-bottom: 5px;
}

.showcase-price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #D4AF37;
}

/* Decorative Elements */
.showcase-decoration {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

/* Background Pattern */
.incense-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.1) 35px, rgba(212, 175, 55, 0.1) 70px);
    z-index: 1;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .incense-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }

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

    .showcase-grid {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .incense-hero {
        padding: 60px 0;
        min-height: auto;
    }

    .incense-hero-container {
        padding: 0 20px;
        gap: 40px;
    }

    .title-main {
        font-size: 42px;
    }

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

    .incense-hero-description {
        font-size: 16px;
    }

    .incense-hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-item.large {
        grid-row: span 1;
        height: 300px;
    }

    .showcase-item {
        height: 200px;
    }

    .btn-incense-primary,
    .btn-incense-secondary {
        width: 100%;
        justify-content: center;
    }
}


.bundle-title {
    font-family: var(--font-heading);
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 60px;
    color: #1A1410;
    text-align: center;
    font-weight: 500;
}

.bundle-horizontal-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 25px 35px;
    border: none;
    /* Removed border */
    border-radius: 4px;
    gap: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.bundle-products-side {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 2;
    justify-content: center;
}

.bundle-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bundle-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border: none;
}

.bundle-item-info h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    color: #000;
    font-weight: 700;
}

.bundle-item-info p {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

.bundle-divider {
    font-size: 18px;
    color: #999;
    font-weight: 300;
    margin: 0 5px;
}

.bundle-action-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    justify-content: center;
    border-left: 1px solid #f0f0f0;
    padding-left: 35px;
    min-width: 200px;
}

/* RTL Support for Bundle Divider */
[dir="rtl"] .bundle-action-side {
    border-left: none;
    border-right: 1px solid #f0e6d2;
    padding-left: 0;
    padding-right: 40px;
    justify-content: flex-end;
}

.bundle-price-info {
    text-align: center;
    min-width: 140px;
}

.bundle-price-info .old-price {
    display: block;
    font-size: 16px;
    color: #bbb;
    text-decoration: line-through;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.bundle-price-info .new-price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1A1410;
    letter-spacing: -1px;
}

.bundle-btn-compact {
    height: 60px;
    padding: 0 50px;
    background: #2C2420;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bundle-btn-compact:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}


@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-page {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .product-title-main {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .product-price-main {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .product-description-main {
        font-size: 15px;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .shipping-timeline {
        margin: 40px 0;
        padding: 20px 15px;
        gap: 10px;
    }

    .timeline-icon {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .timeline-date {
        font-size: 11px;
    }

    .timeline-label {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .bundle-section {
        padding: 60px 0;
        margin-bottom: 60px;
    }

    .section-title-luxury {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .bundle-horizontal-card {
        flex-direction: column;
        padding: 20px;
        gap: 25px;
        text-align: center;
    }

    .bundle-products-side {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .bundle-item {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .bundle-item img {
        width: 80px;
        height: 80px;
    }

    .bundle-divider {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .bundle-action-side {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding-left: 0;
        padding-top: 20px;
        min-width: auto;
    }

    [dir="rtl"] .bundle-action-side {
        border-right: none;
        padding-right: 0;
    }

    .new-price {
        font-size: 32px;
    }

    .old-price {
        font-size: 20px;
    }

    .add-to-cart-btn,
    .whatsapp-btn {
        height: 65px;
        font-size: 14px;
    }
}

/* ============================================
   PRODUCT PAGE FIXES (OVERRIDE)
   ============================================ */

/* Fix Layout Structure */
.product-page {
    padding-top: 160px !important;
    /* Space for fixed header */
    padding-bottom: 80px !important;
}

.product-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Fix Image Section */
.product-gallery {
    width: 100% !important;
    position: sticky !important;
    top: 140px !important;
}

.main-image-container {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    /* Square aspect ratio */
    background-color: #f9f9f9 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #eee !important;
}

.main-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    /* Ensure full product is visible */
    max-width: none !important;
    max-height: none !important;
    transform: scale(0.8) !important;
    /* Slight padding inside */
}

/* Fix Content Section */
.product-info-side {
    padding-top: 20px !important;
    text-align: left !important;
}

[dir="rtl"] .product-info-side {
    text-align: right !important;
}

.product-title-main {
    font-size: 42px !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
    color: #000 !important;
}

.product-price-main {
    font-size: 28px !important;
    color: #000 !important;
    margin-bottom: 30px !important;
    font-weight: 500 !important;
}

.product-description-main {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #555 !important;
    margin-bottom: 40px !important;
}

/* Remove Red Shape */
body::before,
body::after,
.product-page::before,
.product-page::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Fix Buttons */
.add-to-cart-btn {
    width: 100% !important;
    height: 60px !important;
    background-color: #1A1410 !important;
    color: #fff !important;
    font-size: 16px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.add-to-cart-btn:hover {
    background-color: #D4AF37 !important;
}

.whatsapp-btn {
    width: 100% !important;
    height: 60px !important;
    margin-top: 15px !important;
    border: 1px solid #000 !important;
    background: transparent !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .product-page {
        padding-top: 120px !important;
    }

    .product-title-main {
        font-size: 32px !important;
    }
}

/* FORCE FIX FOR GIANT FOOTER ICONS */
footer img,
.footer-bottom img,
.payment-icons img {
    max-width: 60px !important;
    height: auto !important;
    width: auto !important;
    display: inline-block !important;
}

/* ============================================
   FINAL POLISH FIXES
   ============================================ */

/* 1. Fix New Arrival Label */
.badge.new,
.new-arrival-badge {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 10 !important;
    margin: 0 !important;
}

/* Ensure image container is relative for badge positioning */
.main-image-container {
    position: relative !important;
}

/* 2. Fix Tamara & Payment Logos */
.payment-icons {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    margin-top: 20px !important;
}

.payment-icons img {
    max-width: 55px !important;
    /* Consistent size */
    height: 30px !important;
    /* Fixed height for alignment */
    width: auto !important;
    object-fit: contain !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

/* 3. Fix Mobile Layout (Text Overlap) */
@media (max-width: 900px) {
    .product-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .product-gallery {
        position: relative !important;
        /* Disable sticky on mobile */
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px !important;
    }

    .main-image-container {
        height: auto !important;
        aspect-ratio: 1/1 !important;
    }

    .product-info-side {
        width: 100% !important;
        padding: 0 20px !important;
        /* Add padding for text */
    }
}

/* ============================================
   REAL FINAL FIXES (TARGETING CORRECT CLASSES)
   ============================================ */

/* 1. Fix New Arrival Label (Correct Class: .product-badge) */
.product-badge {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    background: #000 !important;
    color: #fff !important;
    padding: 8px 16px !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    z-index: 10 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* 2. Fix Payment Icons (Correct Class: .payment-icon) */
.payment-methods {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Center align */
    gap: 20px !important;
    margin-top: 25px !important;
    flex-wrap: wrap !important;
}

.payment-icon {
    height: 25px !important;
    /* Unified height for all logos */
    width: auto !important;
    object-fit: contain !important;
    max-width: none !important;
    margin: 0 !important;
    opacity: 1 !important;
}

/* 3. Fix Mobile Layout (Correct Class: .product-info-col) */
@media (max-width: 900px) {
    .product-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .product-gallery {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 10px !important;
        top: 0 !important;
        /* Reset sticky */
    }

    .product-info-col {
        padding: 0 20px !important;
        width: 100% !important;
    }

    .product-title-main {
        font-size: 28px !important;
        margin-top: 0 !important;
    }
}

/* ADJUST PAYMENT ICONS SPACING (MOVED UP) */
.payment-methods {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

/* ============================================
   ACCORDION & STICKY BAR STYLES
   ============================================ */

/* Accordion Styles */
.product-accordions {
    margin-top: 30px;
    border-top: 1px solid #eee;
}

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

.accordion-header {
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    transition: all 0.3s;
}

.accordion-header:hover {
    color: #555;
}

.accordion-header .icon {
    font-size: 12px;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(180deg);
    /* Optional rotation */
}

.accordion-content {
    display: none;
    overflow: hidden;
}

.content-inner {
    padding-bottom: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Sticky Cart Bar (Mobile Only) */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 12px 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

.sticky-cart-bar.visible {
    transform: translateY(0);
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.sticky-price {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.sticky-add-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    min-width: 120px;
}

@media (min-width: 900px) {
    .sticky-cart-bar {
        display: none !important;
    }
}

/* ============================================
   QUANTITY SELECTOR
   ============================================ */
.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    width: fit-content;
    margin-bottom: 20px;
}

.qty-btn {
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f9f9f9;
}

.quantity-wrapper input {
    width: 50px;
    height: 45px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    appearance: none;
    -moz-appearance: textfield;
    background: #fff;
}

.quantity-wrapper input:focus {
    outline: none;
}

.quantity-wrapper input::-webkit-outer-spin-button,
.quantity-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Make (Incl. VAT) smaller and lighter */
.product-price-main span {
    font-size: 13px !important;
    color: #aaa !important;
    font-weight: 400 !important;
    display: inline-block;
    margin-right: 8px;
}

/* REDUCE HEADER GAP ON PRODUCT PAGE */
.product-page {
    padding-top: 10px !important;
    margin-top: 0 !important;
}

.breadcrumb-nav {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    padding-top: 0 !important;
}

/* Ensure container doesn't add extra top padding */
.product-page .container {
    padding-top: 0 !important;
}

/* ============================================
   REDESIGNED BUNDLE SECTION (LUXURY)
   ============================================ */
.bundle-section {
    background-color: #fff;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

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

.bundle-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

/* Add a decorative line under title */
.bundle-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #d4af37;
    /* Gold accent */
    margin: 10px auto 0;
}

.bundle-horizontal-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fcfcfc;
    border: 1px solid #e5e5e5;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    flex-wrap: wrap;
    gap: 20px;
}

.bundle-products-side {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
    /* Center products on mobile */
}

.bundle-item {
    text-align: center;
    width: 120px;
}

.bundle-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.bundle-item h4 {
    font-size: 12px;
    margin: 0 0 5px;
    color: #333;
    height: 32px;
    /* Fixed height for alignment */
    overflow: hidden;
    line-height: 1.3;
}

.bundle-item p {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.bundle-divider {
    font-size: 24px;
    color: #ccc;
    font-weight: 300;
}

.bundle-action-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align action side */
    gap: 15px;
    min-width: 200px;
    border-right: 1px solid #eee;
    /* Divider for desktop */
    padding-right: 30px;
    margin-right: 10px;
}

/* Arabic RTL adjustments */
[lang="ar"] .bundle-action-side {
    border-right: none;
    border-left: 1px solid #eee;
    padding-right: 0;
    padding-left: 30px;
    margin-right: 0;
    margin-left: 10px;
}

.bundle-price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.new-price {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    /* Gold color for price */
}

.bundle-btn-compact {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .bundle-horizontal-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .bundle-action-side {
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
        border-top: 1px solid #eee !important;
        padding-top: 20px !important;
    }

    .bundle-products-side {
        width: 100%;
        justify-content: space-around;
    }

    .bundle-item {
        width: 45%;
    }
}

/* ============================================
   ULTRA LUXURY DARK BUNDLE SECTION
   ============================================ */
.bundle-section {
    background-color: #0a0a0a;
    /* Deep Black */
    padding: 60px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Add a subtle gold glow effect in background */
.bundle-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.bundle-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.bundle-title {
    text-align: center;
    font-size: 26px;
    font-weight: 300;
    /* Thin luxury font */
    margin-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.bundle-title::after {
    background: #d4af37;
    /* Gold */
    width: 80px;
    height: 1px;
    margin-top: 15px;
}

.bundle-horizontal-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    /* No card background */
    border: none;
    box-shadow: none;
    flex-wrap: wrap;
    gap: 40px;
}

.bundle-products-side {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 2;
    justify-content: center;
}

.bundle-item {
    text-align: center;
    width: 140px;
    transition: transform 0.3s ease;
}

.bundle-item:hover {
    transform: translateY(-5px);
}

.bundle-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    /* Circular images for luxury feel */
    margin-bottom: 15px;
    border: 2px solid #333;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s;
}

.bundle-item:hover img {
    border-color: #d4af37;
}

.bundle-item h4 {
    font-size: 13px;
    margin: 0 0 8px;
    color: #ccc;
    height: auto;
    font-weight: 400;
}

.bundle-item p {
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    /* Gold price */
    margin: 0;
}

.bundle-divider {
    font-size: 30px;
    color: #fff;
    font-weight: 100;
    opacity: 0.5;
}

.bundle-action-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 220px;
    border: 1px solid #333;
    /* Dark border */
    padding: 30px;
    border-radius: 0;
    /* Sharp edges */
    background: rgba(255, 255, 255, 0.02);
    /* Very subtle glass */
}

/* Reset RTL borders */
[lang="ar"] .bundle-action-side {
    border: 1px solid #333;
}

.bundle-price-info {
    text-align: center;
}

.old-price {
    color: #666;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.new-price {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
}

.bundle-btn-compact {
    background: #d4af37;
    /* Gold Button */
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    border-radius: 0;
    /* Sharp button */
    letter-spacing: 1px;
}

.bundle-btn-compact:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .bundle-horizontal-card {
        flex-direction: column;
        gap: 30px;
    }

    .bundle-products-side {
        width: 100%;
        gap: 15px;
    }

    .bundle-item {
        width: 45%;
    }

    .bundle-item img {
        width: 100px;
        height: 100px;
    }

    .bundle-action-side {
        width: 100%;
        border: 1px solid #333 !important;
        margin: 0 !important;
        padding: 20px !important;
    }
}

/* ============================================
   RE-DESIGNED BUNDLE SECTION (CLEAN LUXURY)
   ============================================ */
.bundle-section {
    background-color: #fff !important;
    /* Force White */
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid #f5f5f5;
    position: relative;
}

.bundle-section::before {
    display: none !important;
    /* Remove any previous effects */
}

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

.bundle-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
}

.bundle-title::after {
    display: none !important;
}

.bundle-horizontal-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    box-shadow: none;
    flex-wrap: wrap;
    gap: 60px;
    /* More space between groups */
}

.bundle-products-side {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.bundle-item {
    text-align: center;
    width: 150px;
    position: relative;
}

.bundle-item:hover {
    transform: none !important;
}

.bundle-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0 !important;
    /* Square */
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    box-shadow: none !important;
}

.bundle-item:hover img {
    border-color: #000;
}

.bundle-item h4 {
    font-size: 13px;
    margin: 0 0 5px;
    color: #000;
    font-weight: 500;
    height: auto;
}

.bundle-item p {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.bundle-divider {
    font-size: 24px;
    color: #ccc;
    font-weight: 300;
}

.bundle-action-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-width: 250px;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    margin: 0 !important;
}

[lang="ar"] .bundle-action-side {
    align-items: flex-start;
}

.bundle-price-info {
    text-align: left;
}

[lang="ar"] .bundle-price-info {
    text-align: right;
}

.old-price {
    color: #999;
    font-size: 15px;
    text-decoration: line-through;
    margin-right: 10px;
}

.new-price {
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

.bundle-btn-compact {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    border-radius: 0;
    letter-spacing: 1px;
}

.bundle-btn-compact:hover {
    background: #fff;
    color: #000;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .bundle-horizontal-card {
        flex-direction: column;
        gap: 40px;
    }

    .bundle-action-side {
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .bundle-price-info {
        text-align: center;
    }

    [lang="ar"] .bundle-price-info {
        text-align: center;
    }

    .bundle-btn-compact {
        width: 100%;
    }

    .bundle-products-side {
        gap: 15px;
    }

    .bundle-item {
        width: 130px;
    }

    .bundle-item img {
        height: 130px;
    }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 50px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    margin-top: 40px;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.average-rating-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.big-rating {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.rating-stars {
    color: #d4af37;
    /* Gold */
    font-size: 13px;
    letter-spacing: 1px;
}

.total-reviews {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.write-review-btn {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

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

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item {
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 30px;
}

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

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.user-initial {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.user-rating {
    color: #d4af37;
    font-size: 10px;
}

.review-date {
    margin-left: auto;
    font-size: 11px;
    color: #999;
}

[lang="ar"] .review-date {
    margin-left: 0;
    margin-right: auto;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-left: 50px;
}

[lang="ar"] .review-text {
    padding-left: 0;
    padding-right: 50px;
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .write-review-btn {
        width: 100%;
        text-align: center;
    }

    .review-text {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ============================================
   REVIEW FORM STYLES
   ============================================ */
.review-form-container {
    background: #fcfcfc;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #eee;
    animation: fadeIn 0.3s ease;
}

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

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

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #000;
}

.rating-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-input-group label {
    font-weight: 600;
    font-size: 14px;
}

.stars-selector {
    display: flex;
    gap: 5px;
    cursor: pointer;
}

.stars-selector i {
    font-size: 20px;
    color: #ddd;
    transition: color 0.2s;
}

.stars-selector i.fas {
    color: #d4af37;
}

.submit-review-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    letter-spacing: 1px;
}

.submit-review-btn:hover {
    background: #333;
}

/* ============================================
   FILE UPLOAD STYLES
   ============================================ */
.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px dashed #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.file-upload-btn:hover {
    border-color: #000;
    color: #000;
    background: #fafafa;
}

.review-image-preview {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.review-image-preview img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* ============================================
   FIX HUGE NEW BADGE
   ============================================ */
.product-card .badge.new {
    width: auto !important;
    min-width: auto !important;
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    padding: 5px 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    letter-spacing: 0.5px !important;
    line-height: normal !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

[lang="ar"] .product-card .badge.new {
    left: auto !important;
    right: 10px !important;
}

/* ============================================
   LUXURY CART PAGE STYLES
   ============================================ */
.cart-page-section {
    padding: 40px 0 80px;
    background: #fcfcfc;
    min-height: 60vh;
}

.cart-page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Products Column */
.cart-products-col {
    flex: 1;
}

.cart-header-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cart Item */
.cart-item-luxury {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #eee;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.cart-item-luxury:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #f5f5f5;
}

.cart-item-details {
    flex: 1;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-decoration: none;
}

.cart-item-price {
    font-size: 14px;
    color: #666;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.remove-btn {
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
}

.remove-btn:hover {
    color: #d9534f;
}

.cart-item-total {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    min-width: 80px;
    text-align: right;
}

[lang="ar"] .cart-item-total {
    text-align: left;
}

/* Summary Column */
.cart-summary-col {
    width: 380px;
    flex-shrink: 0;
}

.cart-summary-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    position: sticky;
    top: 120px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.cart-summary-box h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.checkout-btn-full {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
}

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

.secure-checkout-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    color: #888;
}

.payment-icons-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #f9f9f9;
}

.payment-icons-row img {
    height: 22px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-icons-row img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .cart-layout {
        flex-direction: column;
    }

    .cart-summary-col {
        width: 100%;
    }

    .cart-header-row {
        display: none;
    }

    .cart-item-luxury {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }

    .cart-item-details {
        padding: 15px 0;
        align-items: center;
    }

    .cart-item-actions {
        justify-content: center;
    }

    .cart-item-total {
        margin-top: 15px;
        text-align: center;
    }

    [lang="ar"] .cart-item-total {
        text-align: center;
    }
}

/* ============================================
   MOBILE CART OPTIMIZATION
   ============================================ */
@media (max-width: 768px) {
    .cart-item-luxury {
        flex-direction: row !important;
        /* Force horizontal layout */
        align-items: flex-start !important;
        text-align: left !important;
        padding: 15px !important;
        position: relative;
        /* For absolute remove button */
    }

    [lang="ar"] .cart-item-luxury {
        text-align: right !important;
    }

    .cart-item-img {
        width: 85px !important;
        height: 85px !important;
        flex-shrink: 0;
    }

    .cart-item-details {
        padding: 0 15px !important;
        align-items: flex-start !important;
        width: 100%;
        gap: 5px !important;
    }

    .cart-item-name {
        font-size: 14px !important;
        margin-bottom: 2px !important;
        padding-right: 25px;
        /* Space for remove icon */
        line-height: 1.4;
    }

    [lang="ar"] .cart-item-name {
        padding-right: 0;
        padding-left: 25px;
    }

    .cart-item-price {
        font-size: 13px !important;
        color: #666 !important;
        margin-bottom: 8px !important;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: flex-start !important;
        margin-top: 5px !important;
    }

    /* Position Remove Button in Corner */
    .remove-btn {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        color: #ccc !important;
        background: none !important;
        border: none !important;
        padding: 5px !important;
    }

    [lang="ar"] .remove-btn {
        right: auto !important;
        left: 15px !important;
    }

    .remove-btn:hover {
        color: #d9534f !important;
    }

    .remove-btn span {
        display: none !important;
        /* Hide text "Remove", show only icon */
    }

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

    /* Hide Item Total on Mobile (Redundant) */
    .cart-item-total {
        display: none !important;
    }

    /* Compact Quantity Selector */
    .quantity-wrapper {
        height: 30px !important;
    }

    .qty-btn {
        width: 28px !important;
        height: 30px !important;
        line-height: 30px !important;
    }

    .quantity-wrapper input {
        width: 35px !important;
        height: 30px !important;
        font-size: 13px !important;
    }
}

/* ============================================
   MOBILE CART COMPACT FIX
   ============================================ */
@media (max-width: 768px) {
    .cart-page-section {
        padding-top: 20px !important;
    }

    .cart-page-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .cart-item-luxury {
        padding: 10px !important;
        /* Reduced padding */
        margin-bottom: 10px !important;
        align-items: center !important;
        /* Center align vertically */
        gap: 10px !important;
    }

    .cart-item-img {
        width: 70px !important;
        /* Smaller image */
        height: 70px !important;
    }

    .cart-item-details {
        padding: 0 !important;
        gap: 2px !important;
        /* Tighter gap */
    }

    .cart-item-name {
        font-size: 13px !important;
        margin-bottom: 2px !important;
        padding-right: 0 !important;
        /* Remove extra padding */
        padding-left: 0 !important;
        max-width: 180px;
        /* Prevent text from pushing too far */
    }

    .cart-item-price {
        font-size: 12px !important;
        margin-bottom: 5px !important;
    }

    .cart-item-actions {
        margin-top: 0 !important;
    }

    /* Make Quantity Selector Smaller */
    .quantity-wrapper {
        height: 26px !important;
    }

    .qty-btn {
        width: 24px !important;
        height: 26px !important;
        line-height: 26px !important;
        font-size: 12px !important;
    }

    .quantity-wrapper input {
        width: 30px !important;
        height: 26px !important;
        font-size: 12px !important;
    }

    /* Adjust Remove Button Position */
    .remove-btn {
        top: 50% !important;
        transform: translateY(-50%);
        right: 10px !important;
        /* Move to right edge centered */
        left: auto !important;
        background: #f9f9f9 !important;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    [lang="ar"] .remove-btn {
        right: auto !important;
        left: 10px !important;
    }

    .remove-btn i {
        font-size: 12px !important;
        color: #999 !important;
    }
}

/* ============================================
   MOBILE CART FULL WIDTH FIX (CORRECTED)
   ============================================ */
@media (max-width: 768px) {

    /* Reset Container Padding for Cart Page Only */
    .cart-page-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .cart-products-col {
        width: 100% !important;
        padding: 0 !important;
    }

    .cart-item-luxury {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 20px 15px !important;
        /* Comfortable padding */
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px !important;
        background: #fff !important;
    }

    .cart-item-img {
        width: 90px !important;
        /* Good size */
        height: 90px !important;
        border-radius: 8px !important;
        flex-shrink: 0;
    }

    .cart-item-details {
        flex: 1 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .cart-item-name {
        font-size: 15px !important;
        font-weight: 600 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        max-width: none !important;
    }

    .cart-item-price {
        font-size: 14px !important;
        color: #666 !important;
        margin-bottom: 5px !important;
    }

    .cart-item-actions {
        margin-top: 5px !important;
        width: auto !important;
    }

    /* Quantity Selector */
    .quantity-wrapper {
        height: 32px !important;
        border: 1px solid #eee !important;
    }

    .qty-btn {
        width: 30px !important;
        height: 32px !important;
        line-height: 32px !important;
        font-size: 14px !important;
    }

    .quantity-wrapper input {
        width: 40px !important;
        height: 32px !important;
        font-size: 14px !important;
    }

    /* Remove Button */
    .remove-btn {
        position: static !important;
        /* Reset absolute */
        transform: none !important;
        background: none !important;
        width: auto !important;
        height: auto !important;
        margin-left: auto !important;
        /* Push to far right/left */
        padding: 10px !important;
    }

    [lang="ar"] .remove-btn {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .remove-btn i {
        font-size: 18px !important;
        color: #ccc !important;
    }

    /* Summary Box */
    .cart-summary-col {
        padding: 0 15px !important;
        margin-top: 20px !important;
    }

    .cart-summary-box {
        border: none !important;
        background: #fff !important;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05) !important;
        border-radius: 20px 20px 0 0 !important;
        padding: 25px !important;
    }
}

/* ============================================
   SMART FREE SHIPPING BAR
   ============================================ */
.free-shipping-bar-container {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f5f5f5;
    animation: slideDown 0.5s ease;
}

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

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

.shipping-msg {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.shipping-msg span {
    color: #d4af37;
    font-weight: 800;
}

.progress-track {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #111, #444);
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
}

/* Shimmer Effect */
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-size: 20px 20px;
    animation: moveStripe 1s linear infinite;
    opacity: 0.3;
}

@keyframes moveStripe {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 20px;
    }
}

.progress-fill.success {
    background: #27ae60;
    /* Elegant Green */
}

@media (max-width: 768px) {
    .free-shipping-bar-container {
        margin: 0 15px 30px;
        padding: 20px;
    }

    .shipping-msg {
        font-size: 14px;
    }
}

/* ============================================
   SUGGESTED PRODUCTS IN CART
   ============================================ */
.suggested-products-cart {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.suggested-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suggested-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.suggested-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.suggested-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #d4af37;
}

.suggested-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 50%;
    /* Circular for variety */
    border: 3px solid #f9f9f9;
}

.suggested-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
    display: block;
    text-decoration: none;
}

.suggested-price {
    font-size: 13px;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.add-suggested-btn {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

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

@media (max-width: 768px) {
    .suggested-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .suggested-item {
        padding: 15px;
    }

    .suggested-img {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   REFINED PAYMENT ICONS
   ============================================ */
.payment-icons-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
    padding-top: 15px !important;
    border-top: 1px solid #f9f9f9 !important;
    flex-wrap: wrap !important;
}

.payment-icons-row img {
    height: 18px !important;
    /* Smaller and elegant */
    width: auto !important;
    opacity: 0.5 !important;
    filter: grayscale(100%) !important;
    /* Luxury monochrome look */
    transition: all 0.3s ease !important;
}

.payment-icons-row img:hover {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    transform: translateY(-1px);
}

/* ============================================
   RESTORE COLORED PAYMENT ICONS
   ============================================ */
.payment-icons-row img {
    filter: none !important;
    /* Restore colors */
    opacity: 1 !important;
    /* Full brightness */
}

/* ============================================
   THEME COLOR UPDATE (BLACK TO DARK BROWN)
   ============================================ */
:root {
    --primary-dark: #2c2117;
    /* Dark Brown */
}

/* Checkout Button */
.checkout-btn-full {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

.checkout-btn-full:hover {
    background: #4a3b32 !important;
    /* Lighter brown on hover */
}

/* Suggested Products Buttons */
.add-suggested-btn {
    border-color: var(--primary-dark) !important;
    color: var(--primary-dark) !important;
}

.add-suggested-btn:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

/* Progress Bar Gradient */
.progress-fill {
    background: linear-gradient(90deg, #4a3b32, #2c2117) !important;
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */
.checkout-section {
    padding: 60px 0;
    background: #fcfcfc;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.checkout-step {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 15px;
    color: #222;
}

.step-number {
    background: #2c2117;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.payment-methods-grid {
    display: grid;
    gap: 15px;
}

.payment-option {
    display: block;
    cursor: pointer;
    position: relative;
}

.payment-option input {
    display: none;
}

.payment-content {
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.payment-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.payment-option input:checked+.payment-content {
    border-color: #2c2117;
    background: #fffbf8;
    box-shadow: 0 5px 15px rgba(44, 33, 23, 0.05);
}

.payment-subtext {
    font-size: 13px;
    color: #888;
    margin-top: 10px;
    line-height: 1.4;
}

html[lang="ar"] .payment-main-row {
    flex-direction: row-reverse;
}

html[lang="ar"] .payment-subtext {
    text-align: right;
}


.payment-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icons img {
    height: 22px;
}

.sticky-summary {
    position: sticky;
    top: 120px;
}

@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary-col {
        order: -1;
        /* Show summary first on mobile */
        margin-bottom: 20px;
    }

    .checkout-step {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ============================================
   REFINED INPUT FIELDS
   ============================================ */
.form-input {
    background: #fff !important;
    border: 1px solid #e6e6e6 !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    color: #222 !important;
}

.form-input:focus {
    border-color: #2c2117 !important;
    box-shadow: 0 4px 12px rgba(44, 33, 23, 0.08) !important;
    outline: none !important;
}

.form-input::placeholder {
    color: #bbb !important;
}

/* Apply Button Hover */
.apply-btn:hover {
    background: #4a3b32 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

/* ============================================
   GIFT OPTIONS STYLES
   ============================================ */
.step-icon {
    background: #fdf8f4;
    color: #2c2117;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 1px solid #efe6de;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: .4s;
    border-radius: 34px;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch input:checked+label {
    background-color: #2c2117;
}

.toggle-switch input:checked+label:before {
    transform: translateX(24px);
}

/* ============================================
   REFINED COMPACT CHECKOUT (ELEGANCE FIX)
   ============================================ */
.checkout-step {
    padding: 24px 30px !important;
    /* More compact vertical padding */
    margin-bottom: 18px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01) !important;
    /* Softer shadow */
}

.step-title {
    font-size: 15px !important;
    /* Elegant small title */
    margin-bottom: 18px !important;
    padding-bottom: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.step-number {
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
    margin-right: 10px !important;
}

[lang="ar"] .step-number {
    margin-right: 0 !important;
    margin-left: 10px !important;
}

.form-input {
    padding: 10px 14px !important;
    /* Sleek inputs */
    font-size: 13px !important;
    border-radius: 6px !important;
}

.form-group {
    margin-bottom: 14px !important;
}

.form-group label {
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    color: #555 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Compact Gift Section */
.step-icon {
    width: 26px !important;
    height: 26px !important;
    font-size: 12px !important;
}

.toggle-switch {
    transform: scale(0.75);
    /* Smaller switch */
}

/* Payment Options Compact */
.payment-content {
    padding: 14px 18px !important;
    border-radius: 8px !important;
}

.payment-name {
    font-size: 13px !important;
}

/* Summary Box Compact */
.checkout-summary-box {
    padding: 25px !important;
    border-radius: 12px !important;
}

.summary-item-row img {
    width: 45px !important;
    height: 45px !important;
}

.summary-row {
    margin-bottom: 10px !important;
    font-size: 13px !important;
}

.summary-row.total {
    margin-top: 15px !important;
    padding-top: 15px !important;
    font-size: 16px !important;
}

/* ============================================
   LAYOUT CRITICAL FIX
   ============================================ */
@media (min-width: 992px) {
    .checkout-layout {
        display: grid !important;
        grid-template-columns: 58% 38% !important;
        /* Explicit percentages for safety */
        gap: 4% !important;
        align-items: start !important;
    }

    .checkout-form-col {
        width: 100% !important;
    }

    .checkout-summary-col {
        width: 100% !important;
        position: sticky !important;
        top: 110px !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 991px) {
    .checkout-layout {
        display: block !important;
        /* Stack them */
    }

    .checkout-summary-col {
        margin-bottom: 30px !important;
    }

    /* Optional: If you want summary at top on mobile, uncomment below */
    /* 
    .checkout-layout { display: flex !important; flex-direction: column; }
    .checkout-summary-col { order: -1; }
    */
}

/* ============================================
   ULTRA-REFINED CHECKOUT LAYOUT
   ============================================ */
@media (min-width: 992px) {
    .checkout-layout {
        display: flex !important;
        gap: 30px !important;
        align-items: flex-start !important;
    }

    .checkout-form-col {
        flex: 1 !important;
        max-width: 62% !important;
    }

    .checkout-summary-col {
        width: 350px !important;
        flex-shrink: 0 !important;
        position: sticky !important;
        top: 100px !important;
    }
}

/* Trust Badges Styling */
.trust-badges div {
    transition: all 0.3s ease;
}

.trust-badges div:hover {
    opacity: 1 !important;
    color: #2c2117 !important;
    transform: translateY(-2px);
}

/* Refined Summary Box */
.checkout-summary-box {
    border: 1px solid #f0f0f0 !important;
    background: #fff !important;
    padding: 20px !important;
}

.checkout-summary-box h3 {
    font-size: 16px !important;
    margin-bottom: 20px !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   STOCK STATUS BADGE (URGENCY)
   ============================================ */
.stock-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #27ae60;
    font-weight: 600;
    margin: 15px 0 20px;
    letter-spacing: 0.3px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #27ae60;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
}

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

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

/* ============================================
   MINI CART DRAWER STYLES
   ============================================ */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
    visibility: visible;
}

.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: -400px;
    /* Slide from right */
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[lang="ar"] .cart-drawer-content {
    right: auto;
    left: -400px;
    /* Slide from left for RTL */
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active .cart-drawer-content {
    right: 0;
}

[lang="ar"] .cart-drawer.active .cart-drawer-content {
    left: 0;
}

.cart-drawer-header {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-wishlist {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 20px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-drawer:hover {
    color: #2c2117;
}

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

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

.drawer-item-img {
    width: 80px;
    height: 80px;
    background: #fdf8f4;
    border-radius: 8px;
    overflow: hidden;
}

.drawer-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drawer-item-info {
    flex: 1;
}

.drawer-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c2117;
}

.drawer-item-price {
    font-size: 14px;
    color: #c5a059;
    font-weight: 700;
}

.drawer-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 4px;
}

.qty-control button {
    background: none;
    border: none;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 16px;
}

.qty-control span {
    padding: 0 10px;
    font-size: 13px;
}

.remove-drawer-item {
    color: #ff4d4d;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 5px;
    display: inline-block;
}

.cart-drawer-footer {
    padding: 25px;
    background: #fdf8f4;
    border-top: 1px solid #f0f0f0;
}

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

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-view-cart,
.btn-checkout-drawer {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    text-decoration: none;
}

.btn-view-cart {
    background: #fff;
    border: 1px solid #2c2117;
    color: #2c2117;
}

.btn-checkout-drawer {
    background: #2c2117;
    color: #fff;
}

.btn-checkout-drawer:hover {
    background: #4a3b32;
}

/* ============================================
   FREE SHIPPING PROGRESS BAR
   ============================================ */
.shipping-progress-container {
    padding: 20px 25px;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.shipping-message {
    font-size: 13px;
    margin-bottom: 10px;
    color: #444;
    font-weight: 500;
    text-align: center;
}

.shipping-message b {
    color: #2c2117;
    font-weight: 700;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c5a059 0%, #2c2117 100%);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[lang="ar"] .progress-bar-fill {
    background: linear-gradient(270deg, #c5a059 0%, #2c2117 100%);
}

.shipping-success-icon {
    color: #27ae60;
    margin-right: 5px;
}

/* ============================================
   PRODUCT BUNDLE BOX (SHOP THE LOOK)
   ============================================ */
.product-bundle-box {
    background: #fdf8f4;
    border: 1px dashed #c5a059;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
}

.bundle-title {
    font-size: 14px;
    font-weight: 700;
    color: #2c2117;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bundle-items {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bundle-item {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid #eee;
    position: relative;
}

.bundle-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bundle-plus {
    font-size: 20px;
    color: #c5a059;
    font-weight: 300;
}

.bundle-item.related {
    flex: 1;
    height: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 0;
}

.bundle-item.related img {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid #eee;
}

.bundle-item-info {
    display: flex;
    flex-direction: column;
}

.bundle-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c2117;
}

.bundle-item-price {
    font-size: 12px;
    color: #c5a059;
    font-weight: 700;
}

.add-bundle-btn {
    width: 100%;
    background: #2c2117;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.add-bundle-btn:hover {
    background: #4a3b32;
    transform: translateY(-2px);
}

.bundle-total-price {
    opacity: 0.8;
    font-weight: 400;
}

/* ============================================
   REFINED PRODUCT BUNDLE BOX
   ============================================ */
.product-bundle-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.bundle-title {
    font-size: 13px;
    font-weight: 700;
    color: #2c2117;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.bundle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bundle-items-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bundle-item {
    width: 80px;
    height: 80px;
    background: #fdf8f4;
    border-radius: 10px;
    padding: 8px;
    border: 1px solid #f5f5f5;
}

.bundle-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bundle-plus {
    font-size: 18px;
    color: #c5a059;
}

.bundle-info-row {
    text-align: center;
}

.bundle-item-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c2117;
    margin-bottom: 4px;
}

.bundle-item-price {
    font-size: 13px;
    color: #c5a059;
    font-weight: 700;
}

.add-bundle-btn {
    width: 100%;
    background: #2c2117;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.add-bundle-btn:hover {
    background: #4a3b32;
    transform: translateY(-2px);
}

.bundle-total-price {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}

/* RTL Adjustments */
[lang="ar"] .bundle-title {
    letter-spacing: 0;
}

/* ============================================
   CRITICAL FIX FOR BUNDLE BOX
   ============================================ */
.product-bundle-box {
    clear: both !important;
    display: block !important;
    width: 100% !important;
    margin-top: 40px !important;
    position: relative !important;
    z-index: 10 !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    padding: 25px !important;
    border-radius: 12px !important;
}

.bundle-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
}

.bundle-items-row {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
}

.bundle-item {
    width: 100px !important;
    /* Larger images */
    height: 100px !important;
    background: #fdf8f4 !important;
    border-radius: 12px !important;
    padding: 10px !important;
    border: 1px solid #f5f5f5 !important;
}

.bundle-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.bundle-plus {
    font-size: 22px !important;
    color: #c5a059 !important;
}

.bundle-title {
    font-size: 15px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

/* ============================================
   ENLARGED BUNDLE IMAGES
   ============================================ */
.bundle-item {
    width: 140px !important;
    /* Significantly larger */
    height: 140px !important;
    background: #fff !important;
    border-radius: 15px !important;
    padding: 12px !important;
    border: 1px solid #eee !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.bundle-plus {
    font-size: 28px !important;
    color: #c5a059 !important;
    font-weight: 300 !important;
}

.bundle-items-row {
    gap: 35px !important;
    /* More space between larger items */
}

.bundle-item-name {
    font-size: 16px !important;
    /* Larger text for larger box */
    margin-top: 10px !important;
}

.bundle-item-price {
    font-size: 15px !important;
}

/* ============================================
   DELIVERY COUNTDOWN TIMER
   ============================================ */
.delivery-countdown-box {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid #2c2117;
}

[lang="ar"] .delivery-countdown-box {
    border-left: none;
    border-right: 3px solid #2c2117;
}

.delivery-icon {
    color: #c5a059;
    font-size: 16px;
    animation: flash 1.5s infinite;
}

#deliveryCountdownText {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

#deliveryCountdownText b {
    color: #2c2117;
    font-weight: 700;
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* ============================================
   INSTALLMENT WIDGET (TABBY/TAMARA)
   ============================================ */
.installment-widget {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.installment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.installment-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.installment-text b {
    color: #000;
    font-weight: 700;
}

.installment-logo {
    height: 14px;
    width: auto;
    vertical-align: middle;
}

[lang="ar"] .installment-text {
    font-size: 14px;
}

/* ============================================
   PRODUCT GIFT WRAPPING OPTION
   ============================================ */
.product-gift-option {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gift-option-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fdfdfd;
}

.gift-main-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gift-icon-box {
    width: 40px;
    height: 40px;
    background: #fdf8f4;
    color: #c5a059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.gift-text-info {
    display: flex;
    flex-direction: column;
}

.gift-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c2117;
}

.gift-price {
    font-size: 12px;
    color: #c5a059;
    font-weight: 700;
}

/* Custom Checkbox */
.gift-checkbox-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.gift-checkbox-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.gift-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 6px;
    transition: all 0.2s;
}

.gift-checkbox-wrapper input:checked~.gift-checkmark {
    background-color: #2c2117;
    border-color: #2c2117;
}

.gift-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.gift-checkbox-wrapper input:checked~.gift-checkmark:after {
    display: block;
}

.gift-message-container {
    padding: 0 20px 20px 20px;
    border-top: 1px solid #f9f9f9;
    animation: slideDown 0.3s ease-out;
}

.gift-message-container textarea {
    width: 100%;
    height: 80px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 13px;
    resize: none;
    background: #fafafa;
    font-family: inherit;
}

.gift-message-hint {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
    text-align: center;
}

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

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

/* ============================================
   REFINED PAYMENT ICONS
   ============================================ */
.payment-methods {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin: 15px 0 !important;
    opacity: 0.8 !important;
}

.payment-icon {
    height: 14px !important;
    /* Smaller height */
    width: auto !important;
    filter: grayscale(0.2) !important;
    /* Slight desaturation for elegance */
    transition: all 0.3s ease !important;
}

.payment-icon:hover {
    filter: grayscale(0) !important;
    transform: scale(1.05) !important;
}

/* ============================================
   PREMIUM SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

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

.search-overlay-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    cursor: pointer;
    color: #2c2117;
    transition: transform 0.3s ease;
}

.search-overlay-close:hover {
    transform: rotate(90deg);
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.search-input-wrapper {
    position: relative;
    border-bottom: 2px solid #2c2117;
    margin-bottom: 40px;
}

#searchInput {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 32px;
    padding: 15px 0;
    color: #2c2117;
    font-family: var(--font-heading);
}

#searchInput:focus {
    outline: none;
}

.search-icon-inside {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #c5a059;
}

.search-results {
    max-height: 500px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: background 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.search-result-item:hover {
    background: #fdf8f4;
}

.search-result-img {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
}

.search-result-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c2117;
    display: block;
}

.search-result-price {
    font-size: 14px;
    color: #c5a059;
    font-weight: 700;
}

/* ============================================
   RECENTLY VIEWED SECTION
   ============================================ */
.recently-viewed-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #f5f5f5;
}

.section-title-premium {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #2c2117;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.recently-viewed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    #searchInput {
        font-size: 24px;
    }

    .search-overlay-close {
        right: 20px;
        top: 20px;
    }
}

/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Sidebar */
.mobile-filter-toggle,
.sidebar-header-mobile {
    display: none;
}

.shop-sidebar {
    position: sticky;
    top: 130px;
    background: #fff;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    height: fit-content;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.filter-section {
    margin-bottom: 30px;
}

.filter-section h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.category-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filter-list li {
    margin-bottom: 10px;
}

.category-filter-list a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.category-filter-list a:hover,
.category-filter-list a.active {
    color: var(--accent-color);
    font-weight: bold;
}

/* Price Filter */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.btn-filter {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-filter:hover {
    background: var(--accent-color);
}

/* Shop Header & Sort */
.shop-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-wrapper select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile Filter Styles */
    .mobile-filter-toggle {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        border: 1px solid #eee;
        padding: 12px 20px;
        width: 100%;
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        margin-bottom: 20px;
        border-radius: 4px;
        justify-content: center;
    }

    .shop-sidebar {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 85vh;
        /* Max height */
        z-index: 2000;
        background: #fff;
        padding: 20px 20px 80px 20px;
        /* Extra padding bottom for sticky button */
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 20px 20px 0 0;
        border: none;
        margin: 0;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    }

    .shop-sidebar.active {
        transform: translateY(0);
    }

    /* Overlay */
    .shop-sidebar::before {
        content: '';
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
        z-index: -1;
    }

    .shop-sidebar.active::before {
        opacity: 1;
        pointer-events: all;
    }

    .sidebar-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
    }

    .sidebar-header-mobile::after {
        /* Drag Handle Indicator */
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: #e0e0e0;
        border-radius: 2px;
    }

    .btn-filter {
        /* Sticky Apply Button */
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
        z-index: 20;
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }



    .sidebar-header-mobile h3 {
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .close-sidebar-mobile {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        padding: 0;
        line-height: 1;
    }

    .price-inputs input {
        width: 50%;
    }

    .shop-header {
        display: none;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font-heading);
    font-weight: 600;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.page-link.prev,
.page-link.next {
    width: auto;
    padding: 0 15px;
}

/* Product Badges */
.product-image {
    position: relative;
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.badge-new {
    background: #000;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.badge-sale {
    background: #d32f2f;
}

.badge-best {
    background: var(--primary-color);
    color: #fff;
}

/* Wishlist Button */
.wishlist-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #ccc;
    transition: all 0.3s;
    z-index: 10;
}

.wishlist-toggle:hover {
    transform: scale(1.1);
    color: #ff4d4d;
}

.wishlist-toggle i.fas {
    color: #ff4d4d;
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.filter-tag:hover {
    background: #e0e0e0;
    border-color: #ccc;
}

.filter-tag i {
    font-size: 11px;
    color: #666;
}

.clear-filters {
    font-size: 13px;
    color: #888;
    text-decoration: underline;
    margin-left: 5px;
    cursor: pointer;
}

.clear-filters:hover {
    color: #d32f2f;
}

/* Recommended Section */
.recommended-section {
    background-color: #fcf9f5;
    padding: 80px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.recommended-section .section-title-luxury {
    margin-bottom: 50px;
    text-align: center;
}

.recommended-section .product-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .recommended-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Visibility Utilities */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

@media (max-width: 991px) {
    .mobile-only {
        display: block !important;
    }

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