/* ========================================
   ROOT VARIABLES & RESET
   ======================================== */
:root {
    /* Primary Colors - Vibrant & Energetic */
    --primary-color: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8C66;
    
    /* Secondary Colors */
    --secondary-color: #004E89;
    --secondary-dark: #003D6B;
    --accent-color: #FFD23F;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C66 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0066B3 100%);
    --gradient-accent: linear-gradient(135deg, #FFD23F 0%, #FFC107 100%);
    
    /* Neutral Colors */
    --dark-bg: #1A1A2E;
    --light-bg: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Hind Siliguri', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-hover: 0 12px 48px rgba(255, 107, 53, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   LOADING SCREEN
   ======================================== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   STICKY HEADER
   ======================================== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.sticky-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo i {
    font-size: 32px;
}

.logo strong {
    color: var(--secondary-color);
}

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

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-order-header {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-order-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #FFF5F0 0%, #E8F4F8 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 78, 137, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gradient-accent);
    color: var(--dark-bg);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    color: var(--gray-medium);
    font-size: 14px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-primary-cta i {
    transition: transform var(--transition-normal);
}

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

.btn-secondary-cta {
    padding: 16px 32px;
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all var(--transition-normal);
}

.btn-secondary-cta:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.hero-product-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.floating-badge i {
    font-size: 20px;
}

.badge-1 {
    top: 20px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
}

.badge-2 {
    bottom: 40px;
    left: -30px;
    background: var(--gradient-accent);
    color: var(--dark-bg);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   OFFER BANNER
   ======================================== */
.offer-banner {
    background: var(--gradient-primary);
    padding: 40px 0;
    margin-top: -2px;
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.offer-icon {
    font-size: 60px;
    flex-shrink: 0;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.offer-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.offer-text p {
    font-size: 18px;
    margin-bottom: 8px;
}

/* ========================================
   SECTION STYLING
   ======================================== */
.products-section,
.why-us-section,
.delivery-payment-section,
.contact-section {
    padding: var(--section-padding);
}

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

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--dark-bg);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
}

.product-info {
    padding: 24px;
}

.product-category {
    color: var(--gray-medium);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

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

.price-current {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.price-original {
    font-size: 18px;
    color: var(--gray-medium);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-light);
    color: var(--dark-bg);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    background: white;
}

.btn-buy {
    flex: 1;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us-section {
    background: var(--gray-light);
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* ========================================
   DELIVERY & PAYMENT
   ======================================== */
.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    display: flex;
    gap: 24px;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.info-content p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--dark-bg);
    font-weight: 600;
}

.info-list i {
    color: var(--primary-color);
    font-size: 18px;
}

.payment-methods {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gray-light);
    border-radius: 50px;
    font-weight: 600;
}

.payment-method i {
    font-size: 24px;
    color: var(--primary-color);
}

/* ========================================
   ORDER SECTION
   ======================================== */
.order-section {
    background: var(--gradient-secondary);
    padding: 80px 0;
}

.order-cta-box {
    text-align: center;
    color: white;
}

.order-cta-box h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.order-cta-box p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-order-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.btn-order-now:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--gray-light);
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.contact-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color var(--transition-fast);
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--gray-dark);
    font-size: 18px;
    margin: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-logo i {
    font-size: 36px;
}

.footer-logo strong {
    color: white;
}

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

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.messenger {
    background: #0084FF;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-text {
    opacity: 0.8;
}

.footer-tagline {
    font-style: italic;
    margin-top: 10px;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse-whatsapp 2s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ========================================
   CHECKOUT MODAL
   ======================================== */
.checkout-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.checkout-modal .modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 20px 30px;
    border: none;
}

.checkout-modal .modal-title {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-modal .btn-close {
    filter: brightness(0) invert(1);
}

.checkout-modal .modal-body {
    padding: 30px;
}

.checkout-product-preview {
    position: sticky;
    top: 20px;
}

.checkout-product-preview img {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.product-summary {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 12px;
}

.product-summary h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total-row {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
}

.checkout-form {
    max-width: 100%;
}

.form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    color: var(--primary-color);
}

.checkout-form .form-label {
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.checkout-form .form-control {
    border-radius: 10px;
    border: 2px solid var(--gray-light);
    padding: 12px 16px;
    transition: all var(--transition-fast);
}

.checkout-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 15px;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.payment-option .form-check-input:checked ~ .form-check-label {
    color: var(--primary-color);
}

.payment-option .form-check-input {
    margin-top: 0.5em;
}

.payment-option .form-check-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.payment-option .form-check-label i {
    font-size: 28px;
    color: var(--primary-color);
}

.payment-option .form-check-label strong {
    display: block;
    font-size: 16px;
}

.payment-option .form-check-label small {
    display: block;
    color: var(--gray-medium);
    font-size: 13px;
}

.delivery-info-box {
    background: linear-gradient(135deg, #FFF5F0 0%, #E8F4F8 100%);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.delivery-info-box i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.delivery-info-box strong {
    color: var(--dark-bg);
}

.checkout-modal .modal-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--gray-light);
}

.btn-primary-order {
    padding: 12px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-order:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary-order:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ========================================
   SUCCESS MODAL
   ======================================== */
.success-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.success-modal .modal-body {
    padding: 50px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: success-pop 0.5s ease;
}

@keyframes success-pop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 50px;
    color: white;
}

.success-modal h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.success-modal p {
    color: var(--gray-medium);
    font-size: 16px;
    margin-bottom: 25px;
}

.order-details {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.order-details p {
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.order-details strong {
    color: var(--primary-color);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.fade-in-delay.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.fade-in-delay-2.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .products-section,
    .why-us-section,
    .delivery-payment-section,
    .contact-section {
        padding: var(--section-padding-mobile);
    }
    
    .hero-image-col {
        margin-top: 40px;
    }
    
    .floating-badge {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .offer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-text h3 {
        font-size: 24px;
    }
    
    .offer-text p {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
    }
    
    .btn-call span {
        display: none;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .order-cta-box h2 {
        font-size: 32px;
    }
    
    .order-cta-box p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .logo {
        font-size: 22px;
    }
    
    .logo i {
        font-size: 26px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .btn-call,
    .btn-order-header {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .product-name {
        font-size: 18px;
    }
    
    .price-current {
        font-size: 24px;
    }
}
