/* Mobile-First Approach - Start with mobile styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --primary-blue: #8BB0E8;
    --primary-purple: #7C3AED;
    --light-gold: #F7E98E;
    --light-blue: #E1ECFD;
    --light-purple: #EDE9FE;
    --dark: #1F2937;
    --white: #FFFFFF;
    --gray: #6B7280;
    --light-gray: #F9FAFB;
    --gradient-primary: linear-gradient(135deg, #e8bf7d 0%, #53072b 100%);
    --gradient-secondary: linear-gradient(135deg, #8BB0E8 0%, #53072b 100%);
    --gradient-accent: linear-gradient(135deg, #F7E98E 0%, #e8bf7d 100%);
    --shadow-soft: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-medium: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-strong: 0 16px 48px rgba(0,0,0,0.2);
    --border-radius: 16px;
    --border-radius-small: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile-First Typography */
body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    direction: rtl;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Enhanced Mobile Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* Mobile Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* Mobile Header */
.header {
    background: rgba(139, 176, 232, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    color: var(--white);
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(139, 176, 232, 0.98);
    padding: 8px 0;
    box-shadow: var(--shadow-medium);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Enhanced Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 1200px;
    width: 200px;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Logo text styles */
.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.logo p {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 2px;
    color: var(--white);
}

/* Responsive logo */
@media (max-width: 768px) {
    .nav-brand {
        gap: 0.8rem;
    }
    
    .logo-img {
        height: 40px;
        max-width: 100px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        gap: 0.6rem;
    }
    
    .logo-img {
        height: 90px;
        max-width: 120px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo p {
        font-size: 0.65rem;
    }
}

/* Mobile Navigation */
.nav {
    display: none;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--gradient-secondary);
    padding: 80px 24px 24px;
    z-index: 999;
    transition: var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var (--transition);
}

.mobile-nav a:hover {
    padding-right: 16px;
    color: var (--light-gold);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Hero Section */
.hero {
    background: linear-gradient(135deg, 
        rgba(225, 236, 253, 0.9) 0%, 
        rgba(237, 233, 254, 0.9) 50%,
        rgba(247, 233, 142, 0.4) 100%);
    padding: 100px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text h2 {
    font-size: 2.2rem;
    background: var(--gradient-secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-text h3 {
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    padding: 0 16px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    margin: 0 16px;
}

.feature:nth-child(2) { animation-delay: 0.8s; }
.feature:nth-child(3) { animation-delay: 1s; }

.feature i {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    margin: 0 16px;
    min-height: 48px;
}

/* Mobile Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInRight 1.2s ease-out 0.5s forwards;
}

.soap-container {
    width: 280px;
    height: 280px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.soap-bar {
    width: 160px;
    height: 110px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

/* Full-Screen Landing Page Image Section */
.landing-image-section {
    padding: 0;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.section-header-content {
    width: 100%;
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, 
        rgba(83, 7, 43, 0.95) 0%, 
        rgba(216, 163, 98, 0.95) 100%);
    color: var(--white);
    position: relative;
    z-index: 2;
}

.section-header-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.section-header-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.landing-image-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 90vh;
}

.landing-image {
    width: 55vw;
    height: auto;
    max-width: none;
    max-height: none;
    min-height: 80vh;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    background: var(--white);
}

/* Mobile Optimization - Critical for no horizontal scroll */
@media (max-width: 768px) {
    .landing-image-section {
        width: 100vw;
        min-height: auto;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .landing-image-container {
        width: 100vw;
        height: auto;
        min-height: auto;
        padding: 1rem 0 2rem;
        margin: 0;
        flex: none;
    }
    
    .landing-image {
        width: calc(100vw - 2rem);
        height: auto;
        max-width: calc(100vw - 2rem);
        margin: 0 1rem;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    
    .overlay-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .overlay-content h3 {
        font-size: 1.4rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .landing-image-section {
        width: 100vw;
        min-height: 100vh;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .section-header-content {
        padding: 2rem 1rem 1.5rem;
    }
    
    .section-header-content h3 {
        font-size: 1.8rem;
    }
    
    .section-header-content p {
        font-size: 1rem;
    }
    
    .landing-image {
        width: 100vw;
        height: auto;
        min-height: 60vh;
        object-fit: cover;
    }
}

/* Tablet optimization */
@media (min-width: 768px) and (max-width: 1024px) {
    .landing-image {
        object-fit: contain;
        width: 60vw;
        min-height: 70vh;
        max-width: none;
        max-height: none;
    }
}

/* Large desktop optimization */
@media (min-width: 1200px) {
    .landing-image-container {
        min-height: 95vh;
        padding: 1rem 0;
    }
    
    .landing-image {
        width: 60vw;
        height: auto;
        min-height: 85vh;
        max-width: none;
        max-height: none;
        object-fit: contain;
    }
}

/* Desktop optimization */
@media (min-width: 1024px) and (max-width: 1199px) {
    .landing-image-container {
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .landing-image {
        width: 85vw;
        height: auto;
        min-height: 80vh;
        max-width: none;
        max-height: none;
        object-fit: contain;
    }
}

/* Ensure no horizontal overflow anywhere */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.landing-image-section * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Loading state for the image */
.landing-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.landing-image.loaded {
    opacity: 1;
}

/* Professional fade-in animation */
.landing-image-section {
    animation: fadeInSection 0.8s ease-out;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Section Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    background: var(--gradient-secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    font-weight: 900;
    position: relative;
    letter-spacing: -0.5px;
    padding: 0 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Mobile Order Section */
.order-section {
    padding: 80px 0;
    background: var(--gradient-secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Order Statistics Section */
.order-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 2s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-content p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Enhanced Order Content */
.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Premium Order Info Section */
.order-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-strong);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pricing-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var (--light-gold);
    font-weight: 800;
}

.price-display {
    position: relative;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--light-gold);
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var (--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Enhanced Features Section */
.order-features-section h4 {
    color: var(--light-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.order-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-small);
    transition: var (--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-content h5 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-weight: 700;
    font-size: 1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Customer Testimonial */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-gold);
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--white);
    font-weight: 700;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Enhanced Order Form */
.order-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: var(--dark);
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    background: var(--light-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    display: inline-flex;
}

.form-security i {
    color: var(--primary-gold);
}

/* Enhanced Form Groups */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group-half {
    flex: 0.5;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
}

.form-group label i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-small);
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: var(--transition);
    background: var(--white);
    position: relative;
    z-index: 2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.form-group input:focus + .input-border,
.form-group select:focus + .input-border,
.form-group textarea:focus + .input-border {
    width: 100%;
}

/* Order Summary */
.order-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    margin-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.summary-row:hover {
    background: rgba(83, 7, 43, 0.05);
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: 5px;
}

.total-row {
    background: rgba(76, 175, 80, 0.1);
    margin: 0 -1rem;
    padding: 1rem 1rem !important;
    border-radius: 5px;
}

.paid-shipping {
    color: #e74c3c !important;
    font-weight: 700;
    font-size: 1rem;
}

.free-shipping {
    color: #27ae60 !important;
    font-weight: 700;
}

/* Delivery info helper text */
.delivery-info {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

/* State selection highlight */
#state:focus {
    border-color: #53072b !important;
    box-shadow: 0 0 0 0.2rem rgba(83, 7, 43, 0.25) !important;
}

/* Enhanced Submit Button */
.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.submit-btn:hover .btn-shine {
    left: 100%;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-badge i {
    color: var(--primary-gold);
    font-size: 1rem;
}

/* Floating Order Elements */
.floating-order-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: floatElement 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.element-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
}

.element-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 6s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Mobile Optimizations for Order Section */
@media (max-width: 768px) {
    .order-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-info {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .pricing-section {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .order-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group-half {
        flex: 1;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Mobile Footer */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #0F172A 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

/* Floating Bubbles Background */
.floating-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 176, 232, 0.1));
    border-radius: 50%;
    opacity: 0.7;
    animation: floatUp 15s infinite linear;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 35%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.bubble:nth-child(4) {
    width: 40px;
    height: 40px;
    left: 50%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.bubble:nth-child(5) {
    width: 120px;
    height: 120px;
    left: 65%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.bubble:nth-child(6) {
    width: 50px;
    height: 50px;
    left: 75%;
    animation-delay: 7s;
    animation-duration: 13s;
}

.bubble:nth-child(7) {
    width: 90px;
    height: 90px;
    left: 85%;
    animation-delay: 1s;
    animation-duration: 15s;
}

.bubble:nth-child(8) {
    width: 70px;
    height: 70px;
    left: 5%;
    animation-delay: 6s;
    animation-duration: 11s;
}

.bubble:nth-child(9) {
    width: 110px;
    height: 110px;
    left: 30%;
    animation-delay: 8s;
    animation-duration: 17s;
}

.bubble:nth-child(10) {
    width: 45px;
    height: 45px;
    left: 90%;
    animation-delay: 5s;
    animation-duration: 12s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Soap Particles Animation */
.soap-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: particleFloat 4s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 70%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 60%;
    left: 90%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 60%;
    animation-delay: 0.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: var(--primary-gold);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotateShape 20s infinite linear;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: pulseShape 15s infinite ease-in-out;
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation: floatShape 18s infinite ease-in-out;
}

@keyframes rotateShape {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes pulseShape {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

/* Wave Decoration */
.section-decoration {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-decoration svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-decoration .shape-fill {
    fill: var(--white);
    animation: waveAnimation 8s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% { 
        transform: translateX(0);
    }
    50% { 
        transform: translateX(-20px);
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    opacity: 0.7;
    animation: iconFloat 12s infinite ease-in-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 6s;
}

.floating-icon:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 1;
    }
}

/* Particle Network Background */
.particle-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced Soap Container with Modern Effects */
.soap-container::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.3), 
        rgba(139, 176, 232, 0.3), 
        rgba(124, 58, 237, 0.3));
    border-radius: 50%;
    z-index: -1;
    animation: aureaRotate 10s linear infinite;
}

@keyframes aureaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Glowing Effects for Cards */
.ingredient:hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.benefit-card:hover::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.2;
    filter: blur(10px);
}

/* Morphing Background Gradients */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(139, 176, 232, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    animation: morphBackground 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes morphBackground {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    33% {
        transform: scale(1.1) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: scale(0.9) rotate(240deg);
        opacity: 0.9;
    }
}

/* Animated Loading Dots for Enhanced UX */
.loading-dots {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading-dots div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary-gold);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-dots div:nth-child(1) {
    left: 8px;
    animation: loadingDots1 0.6s infinite;
}

.loading-dots div:nth-child(2) {
    left: 8px;
    animation: loadingDots2 0.6s infinite;
}

.loading-dots div:nth-child(3) {
    left: 32px;
    animation: loadingDots2 0.6s infinite;
}

.loading-dots div:nth-child(4) {
    left: 56px;
    animation: loadingDots3 0.6s infinite;
}

@keyframes loadingDots1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes loadingDots3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

@keyframes loadingDots2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 0); }
}

/* Mobile Optimization for Visual Effects */
@media (max-width: 768px) {
    .floating-bubbles .bubble {
        animation-duration: 8s;
    }
    
    .geometric-shapes .shape {
        opacity: 0.05;
    }
    
    .floating-icons .floating-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .soap-container::after {
        animation-duration: 15s;
    }
    
    .hero::after {
        animation-duration: 30s;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .bubble,
    .particle,
    .shape,
    .floating-icon,
    .soap-container::after,
    .hero::after {
        animation: none;
    }
    
    .wave-decoration .shape-fill {
        animation: none;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .feature:hover,
    .ingredient:hover,
    .benefit-card:hover,
    .step:hover {
        transform: none;
        box-shadow: var(--shadow-soft);
    }
    
    .cta-btn:hover,
    .submit-btn:hover {
        transform: none;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h2 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .ingredients-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .usage-steps {
        gap: 2.5rem;
    }
    
    .order-content {
        gap: 3rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 24px;
    }
    
    .nav {
        display: flex;
        gap: 2rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav a {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        position: relative;
        padding: 8px 16px;
        border-radius: var(--border-radius-small);
        transition: var(--transition);
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        text-align: right;
    }
    
    .hero-text h2 {
        font-size: 3.5rem;
    }
    
    .hero-text h3 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
        padding: 0;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 2rem;
        margin: 0;
    }
    
    .feature {
        margin: 0;
    }
    
    .cta-btn {
        margin: 0;
        align-self: flex-start;
    }
    
    .soap-container {
        width: 350px;
        height: 350px;
    }
    
    .soap-bar {
        width: 200px;
        height: 140px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .product-section,
    .benefits-section,
    .usage-section {
        padding: 80px 0;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .usage-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .order-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    
    .scroll-to-top {
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-text h2 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Special Offer Section */
.special-offer {
    position: relative;
    overflow: visible;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(83, 7, 43, 0.15), rgba(216, 163, 98, 0.15));
    border-radius: var(--border-radius);
    border: 2px solid #d8a362;
    text-align: center;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 10;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(-10deg);
}

.offer-badge::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e55a2b;
    transform: rotate(10deg);
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-10deg) scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: rotate(-10deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    }
}

@media (max-width: 768px) {
    .offer-badge {
        top: -12px;
        right: -8px;
        padding: 6px 16px;
        font-size: 0.75rem;
        transform: rotate(-8deg);
    }
}

@media (max-width: 480px) {
    .offer-badge {
        top: -10px;
        right: -6px;
        padding: 5px 12px;
        font-size: 0.7rem;
        transform: rotate(-5deg);
    }
}

.offer-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.offer-currency {
    font-size: 1.4rem;
    color: var(--light-gold);
    font-weight: 700;
}

.offer-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, var(--light-gold), var(--primary-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-savings {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

/* Professional Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(139, 176, 232, 0.05) 0%, 
        rgba(124, 58, 237, 0.08) 50%,
        rgba(212, 175, 55, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 500;
    opacity: 0.9;
}

.testimonials-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    height: 600px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.testimonial-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.2), 
        rgba(139, 176, 232, 0.2));
    opacity: 0;
    transition: var (--transition);
}

.testimonial-slide.active .image-overlay {
    opacity: 1;
}

/* Navigation Controls */
.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.nav-btn:active {
    transform: translateY(0);
}

.testimonials-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-content {
    text-align: left;
}

.trust-content strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.trust-content span {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Background Elements */
.testimonials-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1), 
        rgba(139, 176, 232, 0.1));
    animation: floatCircle 20s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 7s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes floatCircle {
     0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: translateY(-15px) rotate(240deg);
        opacity: 0.4;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .testimonials-container {
        height: auto;
        min-height: 400px;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-image {
        max-width: 300px;
    }
    
    .testimonials-navigation {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .trust-content {
        text-align: center;
    }
    
    .bg-circle {
        opacity: 0.5;
    }
    
    .circle-1 {
        width: 120px;
        height: 120px;
    }
    
    .circle-2 {
        width: 80px;
        height: 80px;
    }
    
    .circle-3 {
        width: 60px;
        height: 60px;
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .testimonial-content {
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .testimonial-image {
        max-width: 400px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Enhanced Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Testimonial Slide Transitions */
.testimonial-slide.slide-out-left {
    transform: translateX(-100px);
    opacity: 0;
}

.testimonial-slide.slide-in-right {
    transform: translateX(100px);
    opacity: 0;
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    .testimonial-slide,
    .quote-icon,
    .testimonial-message,
    .testimonial-rating,
    .customer-info,
    .bg-circle {
        animation: none;
        transition: none;
    }
    
    .testimonial-slide {
        transform: none;
        opacity: 0;
    }
    
    .testimonial-slide.active {
        opacity: 1;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .testimonial-content {
        border: 2px solid var(--dark);
    }
    
    .verified-badge {
        border: 2px solid #10B981;
    }
    
    .nav-btn {
        border: 2px solid var(--white);
    }
}

/* Product Image Enhancement */
.product-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    perspective: 1000px;
    transition: all 0.3s ease;
}

.product-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, 
        rgba(var(--primary-rgb), 0.1) 0%, 
        rgba(var(--secondary-rgb), 0.1) 50%, 
        rgba(var(--accent-rgb), 0.1) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0;
    filter: blur(20px);
}

.product-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color), 
        var(--primary-color));
    border-radius: 25px;
    z-index: 0;
    opacity: 0;
    transition: all 0.4s ease;
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
}

.product-image:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.product-image:hover::after {
    opacity: 0.3;
}

.product-image:hover img {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3)) brightness(1.1) contrast(1.1);
}

/* Floating particles around image */
.product-image .floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.product-image .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 8s infinite linear;
}

.product-image .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: var(--primary-color);
}

.product-image .particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: var(--secondary-color);
}

.product-image .particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    background: var(--accent-color);
}

.product-image .particle:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 6s;
    background: var(--primary-color);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Professional glow effect */
.product-image .image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(30px);
}

.product-image:hover .image-glow {
    opacity: 1;
}

/* Mobile responsiveness for enhanced image */
@media (max-width: 768px) {
    .product-image {
        max-width: 300px;
        margin: 20px auto;
    }
    
    .product-image img {
        max-width: 280px;
        border-radius: 15px;
    }
    
    .product-image:hover img {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Enhanced Radio Group Styling for Delivery Type */
.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}

.radio-item {
    position: relative;
    flex: 1;
}

.radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
}

.radio-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: #495057;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 60px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.radio-item label:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.15), transparent);
    transition: left 0.6s ease;
}

.radio-item label:after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
}

.radio-item input[type="radio"]:checked + label {
    border-color: #4CAF50;
    background: linear-gradient(145deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    transform: translateY(-3px);
}

.radio-item input[type="radio"]:checked + label:before {
    left: 100%;
}

.radio-item input[type="radio"]:checked + label:after {
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: inset 0 0 0 4px #4CAF50;
}

.radio-item:hover label {
    border-color: #4CAF50;
    background: linear-gradient(145deg, #f8fff8 0%, #f0f8f0 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
}

.radio-item input[type="radio"]:checked:hover + label {
    background: linear-gradient(145deg, #45a049 0%, #4CAF50 100%);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

/* Icon styling for delivery options */
.radio-item label i {
    margin-left: 8px;
    font-size: 16px;
    opacity: 0.7;
}

.radio-item input[type="radio"]:checked + label i {
    opacity: 1;
}

/* Required indicator styling */
.required-indicator {
    color: #e74c3c;
    margin-left: 4px;
    font-weight: bold;
}

/* Responsive radio buttons */
@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .radio-item label {
        padding: 15px 12px;
        font-size: 13px;
        min-height: 50px;
    }
}
/* Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img {
        height: 90px;
        max-width: 170px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 65px;
        max-width: 150px;
    }
}
/* Floating Order Button */
.floating-order-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: float 3s ease-in-out infinite;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.order-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #4CAF50);
    color: white;
    text-decoration: none;
}

.order-btn i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.order-btn span {
    white-space: nowrap;
}

/* Pulse ring animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid rgba(76, 175, 80, 0.6);
    border-radius: 50px;
    animation: pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Cart bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Pulse ring animation */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Click ripple effect */
.order-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.order-btn:active::before {
    width: 300px;
    height: 300px;
}

/* Responsive design */
@media (max-width: 768px) {
    .floating-order-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .order-btn {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .order-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .floating-order-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .order-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-width: 110px;
    }
    
    .order-btn span {
        font-size: 0.9rem;
    }
}

/* Hide on very small screens to avoid overlap */
@media (max-width: 320px) {
    .floating-order-btn {
        bottom: 10px;
        right: 10px;
    }
    
    .order-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
        min-width: 100px;
    }
}
/* Enhanced Ingredient Cards with Images */
.ingredient-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 163, 98, 0.1);
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #53072b, #d8a362);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ingredient-card:hover::before {
    transform: scaleX(1);
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(216, 163, 98, 0.3);
}

/* Ingredient Image Styling */
.ingredient-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(83, 7, 43, 0.1), rgba(216, 163, 98, 0.1));
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.ingredient-card:hover .ingredient-image {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(83, 7, 43, 0.2);
}

.ingredient-card:hover .ingredient-image img {
    transform: scale(1.1);
}

/* Loading placeholder for images */
.ingredient-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    background-size: 200% 200%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ingredient-image.loading::before {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Enhanced text styling */
.ingredient-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #53072b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.ingredient-card:hover h4 {
    color: #d8a362;
}

.ingredient-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ingredient-image {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .ingredient-card {
        padding: 1.5rem;
    }
    
    .ingredient-card h4 {
        font-size: 1.1rem;
    }
    
    .ingredient-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ingredient-image {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }
    
    .ingredient-card {
        padding: 1rem;
    }
    
    .ingredient-card h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}
/* Beautiful Order Confirmation Modal - ADD THIS TO YOUR EXISTING CSS */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.confirmation-modal.show {
    display: flex;
}

.confirmation-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(83, 7, 43, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    animation: modalAppear 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalAppear {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    animation: bounce 0.6s ease;
}

.confirmation-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.2);
    animation: pulse 2s infinite;
}

.confirmation-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.confirmation-title {
    font-size: 2rem;
    font-weight: 700;
    color: #53072b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.confirmation-message {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.order-number {
    background: linear-gradient(135deg, rgba(83, 7, 43, 0.1), rgba(216, 163, 98, 0.1));
    border: 2px solid #d8a362;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #53072b;
    font-size: 1.2rem;
}

.confirmation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.confirm-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #53072b, #d8a362);
    color: white;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(83, 7, 43, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .confirmation-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .confirmation-title {
        font-size: 1.6rem;
    }
    
    .confirmation-message {
        font-size: 1rem;
    }
}
/* Hero Image Gallery Styles */
.product-image-gallery {
    position: relative;
    margin-bottom: 2rem;
}

.main-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(83, 7, 43, 0.05), rgba(216, 163, 98, 0.05));
    padding: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.main-hero-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: contain;
    display: block;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.main-hero-image:hover img {
    transform: scale(1.03);
}

.hero-image-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    animation: badgePulse 2s infinite;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.hero-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.hero-thumb {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 5px;
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hero-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-thumb.active {
    border-color: #53072b;
    box-shadow: 0 0 0 3px rgba(83, 7, 43, 0.2);
}

.hero-thumb:hover img {
    transform: scale(1.1);
}

/* Hero Video Container */
.hero-video-container {
    margin-top: 2rem;
    position: relative;
}

.hero-video-wrapper {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for Shorts */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #000;
    max-width: 400px;
    margin: 0 auto;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-video-label {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #53072b;
    font-weight: 700;
    font-size: 1.1rem;
    animation: labelFloat 2s ease-in-out infinite;
}

.hero-video-label i {
    font-size: 1.3rem;
    color: #d8a362;
}

@keyframes labelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-thumbnails {
        gap: 0.5rem;
    }
    
    .hero-thumb {
        width: 70px;
        height: 70px;
    }
    
    .hero-image-badge {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-video-wrapper {
        max-width: 300px;
        padding-bottom: 177.78%;
    }
    
    .hero-video-label {
        font-size: 1rem;
    }
    
    .product-image-gallery {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-thumb {
        width: 60px;
        height: 60px;
    }
    
    .hero-video-wrapper {
        max-width: 250px;
    }
}
/* Media Tabs Styling */
.media-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem; /* Space above tabs */
    margin-bottom: 0;
}

.media-tab {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #53072b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Media Container */
.media-container {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-container.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

/* Shorts Video Wrapper - 9:16 Aspect Ratio */
.shorts-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 710px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #000;
    display: block !important;
    visibility: visible !important;
}

.shorts-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Remove conflicting styles */
#videoContainer {
    display: none !important;
    min-height: auto;
    background: transparent !important;
}

#videoContainer.active {
    display: block !important;
}

#imagesContainer {
    display: none !important;
}

#imagesContainer.active {
    display: block !important;
}

/* Mobile Responsive for Video */
@media (max-width: 768px) {
    .shorts-video-wrapper {
        max-width: 85vw !important;
        width: 85vw !important;
        height: calc(85vw * 1.78) !important;
        max-height: 650px !important;
    }
    
    .main-hero-image {
        max-width: 85vw;
        padding: 8px;
    }
    
    .main-hero-image img {
        min-height: 350px;
    }
    
    .media-tabs {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0 1rem;
        margin-top: 1.5rem;
    }
    
    .media-tab {
        padding: 10px 20px;
        font-size: 0.95rem;
        flex: 1;
        min-width: 130px;
    }
    
    /* Mobile Images */
    .hero-thumbnails {
        flex-wrap: wrap;
        padding: 0 1rem;
        margin-top: 1rem;
    }
    
    .hero-thumb {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .shorts-video-wrapper {
        max-width: 90vw !important;
        width: 90vw !important;
        height: calc(90vw * 1.78) !important; /* 9:16 ratio based on screen width */
        max-height: 600px !important;
    }
    
    .main-hero-image {
        max-width: 90vw;
        padding: 6px;
    }
    
    .main-hero-image img {
        min-height: 300px;
    }
    
    .media-tabs {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }
    
    .media-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: 110px;
    }
    
    .media-tab i {
        font-size: 1rem;
    }
    
    /* Small Mobile Images */
    .hero-thumbnails {
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-thumb {
        width: 70px;
        height: 70px;
        padding: 3px;
    }
    
    .hero-image-badge {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .shorts-video-wrapper {
        max-width: 95vw !important;
        width: 95vw !important;
        height: calc(95vw * 1.78) !important;
        max-height: 550px !important;
        border-radius: 15px;
    }
    
    .main-hero-image {
        max-width: 95vw;
    }
    
    .main-hero-image img {
        min-height: 280px;
    }
    
    .media-tab {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 100px;
    }
    
    .hero-thumb {
        width: 60px;
        height: 60px;
    }
}
/* Media Container - FIXED DISPLAY LOGIC */
.media-container {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-container.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

/* Shorts Video Wrapper - 9:16 Aspect Ratio - FORCE VISIBILITY */
.shorts-video-wrapper {
    position: relative;
    width: 350px !important;
    height: 620px !important;
    margin: 0 auto;
    border-radius: 20px;
    overflow: visible !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #000 !important;
    display: block !important;
    visibility: visible !important;
}

.shorts-video-wrapper iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
    visibility: visible !important;
    z-index: 999 !important;
}

#videoContainer {
    display: none !important;
    min-height: auto;
}

#videoContainer.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#imagesContainer {
    display: none !important;
}

#imagesContainer.active {
    display: block !important;
}

/* Mobile Responsive for Video */
@media (max-width: 768px) {
    .shorts-video-wrapper {
        max-width: 280px !important;
        width: 280px !important;
        height: 497px !important; /* Maintain 9:16 ratio */
    }
    
    .media-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .media-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
    }
    
    /* Mobile Images */
    .hero-thumbnails {
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .hero-thumb {
        width: 75px;
        height: 75px;
    }
    
    .main-hero-image {
        padding: 8px;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .shorts-video-wrapper {
        max-width: 90vw !important;
        width: 90vw !important;
        height: calc(90vw * 1.78) !important; /* 9:16 ratio based on screen width */
        max-height: 500px !important;
    }
    
    .media-tabs {
        gap: 0.5rem;
    }
    
    .media-tab {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 100px;
    }
    
    .media-tab i {
        font-size: 1rem;
    }
    
    /* Small Mobile Images */
    .hero-thumbnails {
        gap: 0.3rem;
        justify-content: center;
    }
    
    .hero-thumb {
        width: 60px;
        height: 60px;
        padding: 3px;
    }
    
    .main-hero-image {
        padding: 5px;
        margin: 0 0.5rem;
    }
    
    .hero-image-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .shorts-video-wrapper {
        max-width: 95vw !important;
        width: 95vw !important;
        height: calc(95vw * 1.78) !important;
        max-height: 450px !important;
        border-radius: 15px;
    }
    
    .media-tab {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 90px;
    }
    
    .hero-thumb {
        width: 50px;
        height: 50px;
    }
}
/* ===================================
   FOOTER STYLES - ENHANCED
   =================================== */
.footer {
    background: linear-gradient(135deg, #120d25 0%, #070707 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 163, 98, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-contact:hover {
    background: var(--gold);
    color: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(216, 163, 98, 0.3);
}

.footer-contact i {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link i {
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.social-link.tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0, 242, 234, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.developer-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 5px;
}

.developer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.developer-link:hover {
    color: #f4d03f;
    transform: translateY(-2px);
}

.developer-link:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact,
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        align-items: stretch;
    }
    
    .footer-credits {
        flex-direction: column;
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-contact {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .social-link {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}