/* Bundled CSS */

/* File: styles.css */
/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #D4AF37;
    /* Luxury Gold */
    --color-secondary: #0F0F0F;
    /* Deep Black */
    --color-accent: #8B7355;
    /* Warm Bronze */
    --color-bg: #0F0F0F;
    /* Rich Black */
    --color-bg-light: #1C1C1C;
    --color-text: #FFFFFF;
    --color-text-secondary: #B8B8B8;
    --color-border: #2A2A2A;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-fast);
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-medium);
}

.nav.scrolled {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    height: 70px;
    width: auto;
}

.nav-logo h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.icon-btn {
    color: var(--color-text);
    padding: 0.5rem;
    position: relative;
}

.icon-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* ============================================
   Hero Section - CRITICAL FIX
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    padding: 0 var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    letter-spacing: 0.05em;
}

.hero-title-line {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--color-primary) 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-secondary);
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #F4E4C1 100%);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F4E4C1 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-text);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-overlay {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-secondary);
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
}

.btn-overlay:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    position: relative;
    overflow: hidden;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.section-description {
    font-size: 1.1rem;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--color-primary);
}

.featured-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.featured-card:hover .featured-overlay {
    opacity: 1;
}

.featured-info {
    padding: var(--spacing-md);
}

.featured-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.featured-info p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    display: block;
}

/* ============================================
   Video Gallery Section
   ============================================ */
.video-gallery {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.video-card {
    background: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--color-secondary);
    overflow: hidden;
}

.gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: var(--spacing-md);
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.video-info p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   Video Showcase Section (About)
   ============================================ */
.video-showcase {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.showcase-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.showcase-text {
    padding-right: var(--spacing-md);
}

.showcase-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.showcase-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    color: var(--color-text);
}

.showcase-features svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.showcase-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: var(--spacing-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, #F4E4C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 100%);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    color: var(--color-text);
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.newsletter-input::placeholder {
    color: var(--color-text-secondary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, var(--color-primary) 0%, #F4E4C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-primary);

    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .showcase-text {
        padding-right: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        transition: var(--transition-medium);
        z-index: 999;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        color: var(--color-text) !important;
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
        text-align: center;}

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    /* Mobile Navigation Layout Fix */
    .nav-container {
        padding: 1rem;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .logo-icon {
        height: 40px;
    }

    .nav-icons {
        gap: 0.2rem;
    }

    .icon-btn {
        padding: 0.3rem;
    }

    .icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-sm);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), #F4E4C1);
    border: none;
    border-radius: 50%;
    color: var(--color-secondary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    transform: translateY(0) scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   Search Modal
   ============================================ */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-content {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-modal.active .search-content {
    transform: translateY(0);
}

.close-search {
    position: absolute;
    top: -80px;
    right: 20px;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.close-search:hover {
    transform: rotate(90deg);
    color: var(--color-primary);
}

.search-form-container {
    position: relative;
    border-bottom: 2px solid var(--color-border);
    display: flex;
    align-items: center;
}

.search-form-container:focus-within {
    border-color: var(--color-primary);
}

#searchInput {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 2rem;
    padding: 20px 0;
    outline: none;
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-submit {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 10px;
}

.search-results {
    margin-top: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-result-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-text);
}

.search-result-info p {
    font-size: 0.9rem;
    color: var(--color-primary);
}

/* ============================================
   Logo Styling Update
   ============================================ */
.nav-logo h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align left with Djamila */
    line-height: 0.9;
}

.logo-store {
    font-size: 0.45em;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--color-primary);
    margin-top: 5px;
    margin-left: 2px;
    text-shadow: none;
    opacity: 0.9;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .logo-store {
        font-size: 0.4em;
        letter-spacing: 0.3em;
        margin-top: 3px;
    }
}
/* File: gallery-styles.css */
/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Product Gallery Styles */
.product-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.product-gallery .gallery-item {
    background: #1A1A1A;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-gallery .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.product-gallery .gallery-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-gallery .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-gallery .gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.product-gallery .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.product-gallery .gallery-info {
    padding: 1.5rem;
    text-align: center;
}

.product-gallery .gallery-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.product-gallery .gallery-info p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-gallery .price {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

/* Video Gallery Styles - 9:16 Vertical Format */
.video-gallery {
    padding: 6rem 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02) translateZ(0);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Text Overlay - Bottom Position for better visibility */
.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 0.4) 80%,
            transparent 100%);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.video-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Large Triangle Play Button */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    backface-visibility: hidden;
}

.play-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.15) translateZ(0);
    background: rgba(212, 175, 55, 1);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
}

/* Hide play button when video is playing */
.video-wrapper.playing~.play-overlay {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) translateZ(0);
    pointer-events: none;
}

.video-wrapper.playing~.video-info {
    opacity: 0;
}

/* Loading state */
.video-card.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(26, 26, 26, 0) 0%,
            rgba(212, 175, 55, 0.1) 50%,
            rgba(26, 26, 26, 0) 100%);
    animation: shimmer 2s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Custom Video Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 4;
    pointer-events: none;
}

.video-wrapper.playing .video-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.video-wrapper.playing:hover .video-controls {
    opacity: 1;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-bottom: 0.8rem;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #F4E4C1);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
    opacity: 0;
    transition: opacity 0.2s;
}

.progress-container:hover .progress-bar::after {
    opacity: 1;
}

/* Control Buttons Row */
.controls-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.control-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 50%;
}

.control-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.control-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 120px;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #D4AF37;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #D4AF37;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Time Display */
.time-display {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 80px;
    text-align: right;
    font-family: monospace;
}

/* Fullscreen Button */
.fullscreen-btn {
    margin-left: auto;
}

/* Hide controls when not playing or not hovering */
.video-wrapper:not(.playing) .video-controls {
    opacity: 0;
    pointer-events: none;
}

/* Show controls on hover when playing */
.video-wrapper.playing:hover .video-controls {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .video-gallery {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem 0;
    }

    .video-card {
        border-radius: 16px;
    }

    .video-info {
        padding: 1.5rem 1rem 1rem;
    }

    .video-info h3 {
        font-size: 1rem;
    }

    .video-info p {
        font-size: 0.8rem;
    }

    .play-overlay {
        width: 60px;
        height: 60px;
    }

    .play-overlay::after {
        border-left: 16px solid #000;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }

    .video-controls {
        padding: 1rem 0.8rem 0.8rem;
    }

    .controls-row {
        gap: 0.5rem;
    }

    .control-btn svg {
        width: 18px;
        height: 18px;
    }

    .volume-control {
        max-width: 80px;
    }

    .time-display {
        font-size: 0.7rem;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .video-card {
        max-width: 100%;
    }

    .volume-control {
        display: none;
    }
}
/* File: video-modal.css */
/* Video Modal/Popup Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* For vertical videos (9:16), make them taller */
.video-modal-content.vertical {
    max-width: 600px;
    max-height: 95vh;
}

.video-modal-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-modal-wrapper.vertical {
    aspect-ratio: 9/16;
}

.video-modal video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Close Button */
.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: #000;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    z-index: 10001;
}

.video-modal-close:hover {
    background: #D4AF37;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

/* Video Info in Modal */
.video-modal-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal-wrapper:hover .video-modal-info {
    opacity: 1;
}

.video-modal-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.video-modal-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Modal Controls */
.video-modal .video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    opacity: 1;
    transform: translateY(0);
    z-index: 4;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-width: none;
    }

    .video-modal-content.vertical {
        max-width: 500px;
    }

    .video-modal-close {
        top: -45px;
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .video-modal-info h3 {
        font-size: 1.2rem;
    }

    .video-modal-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-modal-content.vertical {
        max-width: 100%;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
    }
}
/* File: checkout-styles.css */
/* ============================================
   Checkout & Modal Styles - Luxury Arabic Theme
   ============================================ */

/* Modal Container Styles */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--color-text);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.checkout-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-bg);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-input:focus~.input-icon {
    color: var(--color-primary);
}

/* Order Summary Box */
.price-summary {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.summary-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    color: var(--color-text-secondary);
}

.price-value {
    color: var(--color-text);
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.total-row {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.total-row .price-label,
.total-row .price-value {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 800;
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-secondary);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-checkout:hover::before {
    left: 100%;
}

.guarantee-text {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: 'Cairo', sans-serif;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-preview-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .modal-product-image {
        aspect-ratio: 16/9;
    }

    .checkout-form-container {
        padding: 1.5rem;
    }

    .modal-product-title {
        font-size: 1.8rem;
    }
}
/* File: hero-fix.css */
/* HERO VIDEO - FULL SCREEN COVER FIX - REVISED */
/* Force full viewport width and height */
.hero {
    position: relative !important;
    height: 100vh !important;
    width: 100vw !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #000 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;

    /* Force video to cover the entire container */
    min-width: 100% !important;
    min-height: 100% !important;
    width: auto !important;
    height: auto !important;

    /* Use cover to fill the screen (no black bars) */
    object-fit: cover !important;
    object-position: center 30% !important;

    z-index: 0 !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.2) 0%, rgba(26, 26, 26, 0.2) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.hero-content {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 1400px !important;
    padding: 0 2rem !important;
}

/* Animations */
.hero-title {
    animation: elegantFadeIn 1.5s ease-out forwards !important;
    opacity: 0;
}

.hero-title-line {
    display: inline-block !important;
    animation: gentleFloat 3s ease-in-out infinite !important;
}

.hero-title-line:first-child {
    animation-delay: 0.2s !important;
}

.hero-title-line:last-child {
    animation-delay: 0.4s !important;
}

.hero-subtitle {
    animation: elegantFadeIn 1.5s ease-out 0.5s forwards !important;
    opacity: 0;
}

.hero-cta {
    animation: elegantFadeIn 1.5s ease-out 0.8s forwards !important;
    opacity: 0;
}

.scroll-indicator {
    animation: elegantFadeIn 1.5s ease-out 1.2s forwards, gentleBounce 2s ease-in-out 2s infinite !important;
    opacity: 0;
}

@keyframes elegantFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gentleBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
/* File: bag-checkout.css */
/* ============================================
   Professional E-Commerce Bag & Checkout System
   ============================================ */

/* Add to Bag Button on Product Cards */
.add-to-bag-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #F4E4C1 100%);
    color: var(--color-secondary);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-bag-btn:hover {
    background: linear-gradient(135deg, #F4E4C1 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.add-to-bag-btn svg {
    width: 20px;
    height: 20px;
}

/* Bag Checkout Modal */
.bag-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.bag-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.bag-modal-content {
    background: #FFFFFF;
    max-width: 600px;
    width: 100%;
    border-radius: 0;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close Button */
.bag-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.bag-modal-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* Product Preview Section */
.bag-product-preview {
    padding: 2rem;
    border-bottom: 1px solid #E5E5E5;
}

.bag-product-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #F5F5F5;
}

.bag-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bag-product-details h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.bag-product-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bag-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

/* Color Selection */
.option-section {
    margin-bottom: 2rem;
}

.option-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.color-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-option {
    padding: 0.75rem 1.5rem;
    border: 2px solid #E5E5E5;
    border-radius: 50px;
    background: #FFFFFF;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.color-option:hover {
    border-color: var(--color-primary);
}

.color-option.selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #1A1A1A;
    font-weight: 600;
}

/* Size Selection */
.size-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.size-option {
    padding: 0.75rem;
    border: 2px solid #E5E5E5;
    border-radius: 50px;
    background: #FFFFFF;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.size-option:hover {
    border-color: var(--color-primary);
}

.size-option.selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #1A1A1A;
    font-weight: 600;
}

.size-option.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.size-option.unavailable:hover {
    border-color: #E5E5E5;
}

/* Checkout Form Section */
.bag-checkout-form {
    padding: 2rem;
    background: #FAFAFA;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E5E5E5;
    background: #FFFFFF;
    font-size: 1rem;
    font-family: var(--font-body);
    color: #1A1A1A;
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
    color: #999;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-with-icon .form-input {
    padding-right: 3.5rem;
}

.input-icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E5E5E5;
    color: #666;
}

/* Dropdown Selects */
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E5E5E5;
    background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 1rem center;
    background-size: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: #1A1A1A;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Order Summary */
.order-summary {
    background: #FFFFFF;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid #E5E5E5;
}

.order-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 0.95rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1A;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid #E5E5E5;
}

.summary-row .label {
    color: #666;
}

.summary-row .value {
    color: #1A1A1A;
    font-weight: 600;
}

.summary-row.total .value {
    color: var(--color-primary);
}

/* Submit Button */
.submit-order-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--color-primary);
    color: #1A1A1A;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.submit-order-btn:hover {
    background: #C4A037;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.submit-order-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bag-modal.active {
        padding: 0;
        align-items: flex-start;
    }

    .bag-modal-content {
        max-width: 100%;
        min-height: 100vh;
        border-radius: 0;
    }

    .size-options {
        grid-template-columns: repeat(4, 1fr);
    }

    .bag-product-details h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .color-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .size-options {
        grid-template-columns: repeat(4, 1fr);
    }

    .bag-product-preview,
    .bag-checkout-form {
        padding: 1.5rem;
    }
}
/* File: background-video-fix.css */
/* Force Background Videos to Display */
.featured,
.video-gallery,
.video-showcase,
.stats,
.newsletter,
.footer {
    position: relative !important;
    overflow: hidden !important;
}

/* Ensure content appears above background videos */
.featured>.container,
.video-gallery>.container,
.video-showcase>.showcase-content,
.stats>.container,
.newsletter>.newsletter-content,
.footer>.container {
    position: relative !important;
    z-index: 10 !important;
}

/* Background video styling */
.section-video-bg {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    min-width: 100% !important;
    min-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
    z-index: 1 !important;
    opacity: 0.15 !important;
    pointer-events: none !important;
}
/* File: featured-fix.css */
/* Restore Featured Products Grid Layout */
.featured {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-xl);
}

.featured-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition-medium);
    cursor: pointer;
}
/* File: performance.css */
/* ============================================
   PERFORMANCE OPTIMIZATION CSS
   ============================================ */

/* Hardware Acceleration for Smooth Animations */
.hero-video,
.section-video-bg,
.hero-content,
.featured-card,
.video-card,
.btn {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Optimize Video Rendering */
video {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

/* Reduce Repaints */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize Scroll Performance */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU Acceleration for Transforms */
.hero-title,
.hero-subtitle,
.hero-cta,
.scroll-indicator {
    transform: translate3d(0, 0, 0);
}

/* Optimize Image Loading */
img {
    content-visibility: auto;
}

/* Lazy Load Optimization */
.featured-card,
.video-card {
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}
/* File: video-rating-styles.css */
/* Video Rating Styles */
.video-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.video-rating .stars {
    color: #D4AF37;
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.video-rating .rating-number {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
/* File: unified-section.css */
/* Unified Stats & Newsletter Section */
.unified-stats-newsletter {
    position: relative !important;
    overflow: hidden !important;
    padding: 4rem 0 !important;
    color: #fff !important;
}

/* Ensure the background video covers the entire unified section */
.unified-stats-newsletter .section-video-bg {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    min-width: 100% !important;
    min-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
    z-index: 0 !important;
    opacity: 0.3 !important;
    /* Adjust opacity as needed */
    pointer-events: none !important;
}

/* Content containers must be relative to appear above video */
.unified-stats-newsletter .stats-container,
.unified-stats-newsletter .newsletter-content {
    position: relative !important;
    z-index: 10 !important;
    background: transparent !important;
    /* Ensure transparency */
}

/* Stats Styling within Unified Section */
.unified-stats-newsletter .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    /* Space between stats and newsletter */
}

.unified-stats-newsletter .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #D4AF37;
    /* Gold */
    margin-bottom: 0.5rem;
}

.unified-stats-newsletter .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Styling within Unified Section */
.unified-stats-newsletter .newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5) !important;
    /* Semi-transparent background for readability */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.unified-stats-newsletter .newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.unified-stats-newsletter .newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
