/* ==========================================
   RANGOLI WHOLESALE BAZAAR - STYLES
   Premium Ethnic Wear Wholesale Website
   ========================================== */

/* CSS Variables - Matching Rangoli Saree Wale Branding */
:root {
    /* Primary Colors - Ethnic Palette */
    --primary-gradient: linear-gradient(135deg, #c94b4b 0%, #4b134f 100%);
    --primary-dark: #4b134f;
    --primary-medium: #8B4B8B;
    --primary-light: #c94b4b;
    --primary-accent: #e91e63;

    /* Accent Colors */
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --rose: #ff6b9d;
    --magenta: #c850c0;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #868e96;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(201, 75, 75, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

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

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: var(--space-md);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary-dark);
}

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

.nav-links .retail-link {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-links .retail-link::after {
    display: none;
}

.nav-links .retail-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a0a1f 0%, #2d1033 50%, #4b134f 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(201, 75, 75, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 80, 192, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    margin-bottom: var(--space-xl);
    animation: slideDown 0.8s ease;
}

.hero-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    margin-bottom: var(--space-lg);
    animation: slideUp 0.8s ease;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}

.title-line:first-child {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--white);
}

.title-line.accent {
    font-size: clamp(2rem, 6vw, 4rem);
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: var(--space-lg);
    animation: slideUp 0.8s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
    animation: slideUp 0.8s ease 0.3s backwards;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: slideUp 0.8s ease 0.4s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    animation: slideUp 0.8s ease 0.5s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--magenta));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 75, 75, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 75, 75, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

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

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 75, 75, 0.1), rgba(200, 80, 192, 0.1));
    color: var(--primary-dark);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

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

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

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

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card-link:hover .category-card {
    transform: translateY(-10px);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-badges span {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
}

.badge-bestseller {
    background: linear-gradient(135deg, #f5af19, #f12711);
    color: var(--white);
}

.badge-trending {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: var(--white);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    background: var(--white);
    color: var(--primary-dark);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.product-card:hover .product-btn {
    transform: translateY(0);
}

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

.product-info {
    padding: var(--space-lg);
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

.product-fabric {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.retail-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.wholesale-price {
    font-size: 0.8rem;
    color: var(--gray-600);
    background: linear-gradient(135deg, rgba(201, 75, 75, 0.1), rgba(200, 80, 192, 0.1));
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.products-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ==========================================
   CATEGORIES SECTION
   ========================================== */
.categories {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

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

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

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

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.category-placeholder i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-btn {
    background: var(--white);
    color: var(--primary-dark);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

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

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

.category-info {
    padding: var(--space-lg);
    text-align: center;
}

.category-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.category-info p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.category-count {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 75, 75, 0.1), rgba(200, 80, 192, 0.1));
    color: var(--primary-dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-normal);
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary-light);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(201, 75, 75, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-xs) var(--space-lg);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 75, 75, 0.1), rgba(200, 80, 192, 0.1));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.pricing-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.pricing-header p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.currency {
    font-size: 1.5rem;
    color: var(--gray-700);
    vertical-align: top;
}

.price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.period {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: var(--space-xs);
}

.pricing-features {
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.pricing-body .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-text {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-text strong {
    color: var(--gray-900);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.about-feature p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-placeholder {
    height: 450px;
    background: var(--primary-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.about-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.9);
}

.about-placeholder span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.3;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #1a0a1f 0%, #2d1033 50%, #4b134f 100%);
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    margin-bottom: var(--space-lg);
}

.stars {
    margin-bottom: var(--space-md);
}

.stars i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.author-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.contact-card:hover {
    background: var(--gray-100);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 20px;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.contact-details p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-800);
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(201, 75, 75, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(135deg, #1a0a1f 0%, #2d1033 100%);
    padding: var(--space-4xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon {
    font-size: 28px;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.footer-logo .highlight {
    background: linear-gradient(90deg, var(--gold-light), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-image {
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

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

    /* Mobile Navbar Improvements */
    .navbar {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-container {
        height: 60px;
    }

    .logo-img {
        height: 40px;
    }

    /* Mobile Hero Section */
    .hero {
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero-content {
        padding: var(--space-xl) var(--space-md);
    }

    .hero-badge {
        margin-top: var(--space-lg);
        padding: var(--space-sm) var(--space-md);
    }

    .hero-badge span {
        font-size: 0.8rem;
    }

    .hero-title {
        margin-bottom: var(--space-md);
    }

    .title-line:first-child {
        font-size: 2.5rem;
    }

    .title-line.accent {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--space-md);
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: var(--space-xl);
        padding: 0 var(--space-sm);
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: var(--space-md) var(--space-lg);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .opening-highlights {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .highlight-item {
        font-size: 0.85rem;
        padding: var(--space-xs) var(--space-md);
    }

    .scroll-indicator {
        display: none;
    }

    /* Products Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-logo {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-content {
        padding: var(--space-lg) var(--space-sm);
    }

    .hero-badge {
        margin-top: var(--space-md);
    }

    .hero-badge span {
        font-size: 0.75rem;
        line-height: 1.4;
        display: block;
    }

    .title-line:first-child {
        font-size: 2rem;
    }

    .title-line.accent {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-xl);
    }

    /* Section headers mobile */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-md);
    }
}

/* ==========================================
   GRAND OPENING SPECIFIC STYLES
   ========================================== */

/* Opening Badge Animation */
.opening-badge {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

/* Opening Highlights */
.opening-highlights {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    color: var(--gold-light);
}

/* Button Glow Effect */
.btn-glow {
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(201, 75, 75, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(201, 75, 75, 0.7), 0 0 60px rgba(212, 175, 55, 0.3);
    }
}

/* ==========================================
   COUNTDOWN SECTION
   ========================================== */
.countdown-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #1a0a1f 0%, #2d1033 50%, #4b134f 100%);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 80, 192, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.countdown-section .section-header {
    position: relative;
    z-index: 2;
}

.countdown-section .section-title {
    color: var(--white);
}

.countdown-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.countdown-section .section-tag {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1rem;
    padding: var(--space-sm) var(--space-xl);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.countdown-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-3xl);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
    min-width: 120px;
    transition: var(--transition-normal);
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.countdown-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
}

/* Event Date Cards */
.event-dates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.event-date-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    transition: var(--transition-normal);
}

.event-date-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.event-date-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(201, 75, 75, 0.2));
    border-color: var(--gold);
    transform: scale(1.02);
}

.event-date-card.featured:hover {
    transform: scale(1.05);
}

.date-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.date-icon i {
    font-size: 24px;
    color: var(--white);
}

.date-info h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.date-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.date-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    color: var(--gold-light);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==========================================
   ENHANCED CATEGORY CARDS
   ========================================== */
.categories-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.category-card.large-card {
    height: 500px;
}

.category-card.large-card .category-image {
    height: 100%;
}

.category-card.large-card .category-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: var(--space-xl);
}

.category-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.category-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.category-features span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.category-features span i {
    color: var(--gold-light);
    font-size: 0.7rem;
}

.category-card.large-card .category-count {
    background: var(--primary-gradient);
    color: var(--white);
}

/* ==========================================
   OFFERS SECTION
   ========================================== */
.offers {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #c94b4b 0%, #4b134f 100%);
    position: relative;
}

.offers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section-header.light .section-tag,
.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-header.light .section-title,
.section-title.light {
    color: var(--white);
}

.section-header.light .section-subtitle,
.section-subtitle.light {
    color: rgba(255, 255, 255, 0.8);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    padding-top: calc(var(--space-xl) + 10px);
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
    overflow: visible;
    margin-top: 15px;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.offer-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(255, 255, 255, 0.2));
    border-color: var(--gold);
    border-width: 2px;
}

.offer-card.featured:hover {
    transform: translateY(-10px);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.offer-icon i {
    font-size: 32px;
    color: var(--white);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--gray-900);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.offer-card h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.offer-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.offer-code {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: var(--gold-light);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Opening Special Price Tag */
.opening-offer {
    font-size: 0.85rem;
    color: var(--white);
    background: linear-gradient(135deg, #11998e, #38ef7d);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
    font-weight: 600;
}

/* About Badge for Opening */
.opening-badge-about {
    background: var(--primary-gradient);
    padding: var(--space-lg);
    text-align: center;
}

.opening-badge-about .badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: var(--space-xs);
}

.opening-badge-about .badge-date {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Contact Card Highlight */
.contact-card.highlight-card {
    background: linear-gradient(135deg, rgba(201, 75, 75, 0.1), rgba(200, 80, 192, 0.1));
    border: 2px solid var(--primary-light);
}

/* Form Subtitle */
.form-subtitle {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
}

/* CTA Text */
.cta-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    text-align: center;
}

/* ==========================================
   RESPONSIVE - GRAND OPENING STYLES
   ========================================== */
@media (max-width: 1024px) {
    .event-dates {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-date-card.featured {
        grid-column: span 2;
    }

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

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

    .category-card.large-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: var(--space-sm);
    }

    .countdown-item {
        min-width: 80px;
        padding: var(--space-md) var(--space-lg);
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .event-dates {
        grid-template-columns: 1fr;
    }

    .event-date-card.featured {
        grid-column: span 1;
    }

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

    .offer-card.featured {
        transform: scale(1);
    }

    .categories-grid.three-col {
        grid-template-columns: 1fr;
    }

    .category-card.large-card {
        height: 400px;
    }

    .category-card.large-card:last-child {
        grid-column: span 1;
    }

    .opening-highlights {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 70px;
        padding: var(--space-sm) var(--space-md);
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

/* ==========================================
   PREMIUM ANIMATIONS - LUXURIOUS EFFECTS
   ========================================== */

/* ===== KEYFRAME ANIMATIONS ===== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

/* Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

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

/* Fade In Scale Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

/* Premium Float Animation */
@keyframes float {

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

    25% {
        transform: translateY(-8px) rotate(1deg);
    }

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

    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

/* Gentle Bounce */
@keyframes gentleBounce {

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

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

/* Shimmer Effect - Enhanced */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

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

/* Golden Pulse Glow */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.3);
    }
}

/* Premium Glow Pulse */
@keyframes premiumGlow {

    0%,
    100% {
        box-shadow: 0 5px 30px rgba(201, 75, 75, 0.3);
    }

    50% {
        box-shadow: 0 5px 50px rgba(201, 75, 75, 0.5), 0 0 80px rgba(200, 80, 192, 0.3);
    }
}

/* Gradient Flow */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

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

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

/* Morphing Background */
@keyframes morphBg {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Scale Bounce */
@keyframes scaleBounce {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.08);
    }

    50% {
        transform: scale(0.95);
    }

    75% {
        transform: scale(1.02);
    }
}

/* Sparkle Effect */
@keyframes sparkle {

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

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Text Reveal */
@keyframes textReveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

/* Rotate In */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Flip In */
@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(600px) rotateX(-90deg);
    }

    100% {
        opacity: 1;
        transform: perspective(600px) rotateX(0deg);
    }
}

/* Heartbeat */
@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.1);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(1);
    }
}

/* Wobble */
@keyframes wobble {

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

    15% {
        transform: translateX(-8px) rotate(-3deg);
    }

    30% {
        transform: translateX(6px) rotate(2deg);
    }

    45% {
        transform: translateX(-4px) rotate(-1deg);
    }

    60% {
        transform: translateX(2px) rotate(0.5deg);
    }

    75% {
        transform: translateX(-1px) rotate(-0.25deg);
    }
}

/* Countdown Flip */
@keyframes countdownFlip {
    0% {
        transform: perspective(400px) rotateX(0deg);
    }

    50% {
        transform: perspective(400px) rotateX(-10deg);
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
    }
}

/* Ribbon Wave */
@keyframes ribbonWave {

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

    25% {
        transform: skewX(-2deg);
    }

    75% {
        transform: skewX(2deg);
    }
}

/* ===== SCROLL-TRIGGERED ANIMATIONS ===== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade variants for scroll */
.fade-up {
    transform: translateY(60px);
}

.fade-down {
    transform: translateY(-60px);
}

.fade-left {
    transform: translateX(-60px);
}

.fade-right {
    transform: translateX(60px);
}

.fade-scale {
    transform: scale(0.85);
}

.fade-up.visible,
.fade-down.visible,
.fade-left.visible,
.fade-right.visible,
.fade-scale.visible {
    transform: translateY(0) translateX(0) scale(1);
}

/* ===== STAGGERED ANIMATIONS ===== */

.stagger-children>* {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.05s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.25s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(7) {
    transition-delay: 0.35s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(8) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO SECTION ANIMATIONS ===== */

.hero-badge {
    animation: fadeInDown 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
        float 4s ease-in-out 1.5s infinite;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-title .title-line:first-child {
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-title .title-line.accent {
    animation: fadeInRight 0.8s ease forwards, gradientFlow 4s ease infinite;
    animation-delay: 0.7s;
    opacity: 0;
    background: linear-gradient(90deg, var(--gold), var(--rose), var(--gold-light), var(--gold));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.hero-description {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

.hero-cta {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.3s;
    opacity: 0;
}

.hero-cta .btn {
    animation: premiumGlow 3s ease-in-out infinite;
    animation-delay: 2s;
}

.opening-highlights {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

.opening-highlights .highlight-item {
    transition: transform 0.3s ease, background 0.3s ease;
}

.opening-highlights .highlight-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

/* ===== COUNTDOWN SECTION ANIMATIONS ===== */

.countdown-section {
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: morphBg 8s ease-in-out infinite;
}

.countdown-item {
    animation: pulseGlow 2.5s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.countdown-item:hover {
    transform: scale(1.1) translateY(-5px);
}

.countdown-number {
    transition: transform 0.2s ease;
}

.countdown-number.tick {
    animation: countdownFlip 0.3s ease;
}

.countdown-separator {
    animation: gentleBounce 1s ease-in-out infinite;
}

.event-date-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        background 0.4s ease;
}

.event-date-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-date-card .date-icon {
    transition: transform 0.4s ease, background 0.4s ease;
}

.event-date-card:hover .date-icon {
    transform: scale(1.15) rotate(5deg);
}

/* ===== CARD EFFECTS - 3D Hover ===== */

.product-card,
.category-card,
.offer-card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover,
.category-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.offer-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Card shine effect on hover */
.product-card::after,
.category-card::after,
.offer-card::after {
    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 0.7s ease;
    pointer-events: none;
    z-index: 10;
}

.product-card:hover::after,
.category-card:hover::after,
.offer-card:hover::after {
    left: 100%;
}

/* ===== IMAGE REVEAL ANIMATIONS ===== */

.product-image img,
.category-image img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.5s ease;
}

.product-card:hover .product-image img,
.category-card:hover .category-image img {
    transform: scale(1.12);
    filter: brightness(1.1) saturate(1.1);
}

/* Image overlay animation */
.product-overlay,
.category-overlay {
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

.product-card:hover .product-overlay,
.category-card:hover .category-overlay {
    backdrop-filter: blur(3px);
}

/* ===== BUTTON ANIMATIONS ===== */

.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.3s ease;
}

/* Shine sweep effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
}

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

.btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

/* Primary button glow */
.btn-primary {
    animation: premiumGlow 3s ease-in-out infinite;
    animation-play-state: paused;
}

.btn-primary:hover {
    animation-play-state: running;
}

/* Glowing CTA button */
.btn-glow {
    animation: premiumGlow 2s ease-in-out infinite;
}

/* ===== OFFER SECTION ANIMATIONS ===== */

.offers {
    position: relative;
}

.offer-card {
    position: relative;
    overflow: visible;
}

.offer-icon {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-icon {
    animation: heartbeat 1s ease-in-out;
    transform: scale(1.1);
}

.offer-badge {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    animation: shimmer 2s linear infinite, ribbonWave 3s ease-in-out infinite;
}

.offer-card.featured {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* ===== SECTION HEADERS ===== */

.section-header {
    position: relative;
}

.section-tag {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.section-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s linear infinite;
}

.section-title {
    position: relative;
}

/* ===== LOGO ANIMATION ===== */

.logo-img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 5px 15px rgba(201, 75, 75, 0.3));
}

/* ===== NAVBAR ANIMATIONS ===== */

.navbar {
    transition: background 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.nav-links a {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
    left: 0;
}

/* ===== WHATSAPP BUTTON ===== */

.whatsapp-float {
    animation: gentleBounce 2s ease-in-out infinite,
        pulseGlow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    animation-play-state: paused;
}

/* ===== CONTACT SECTION ===== */

.contact-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.3s ease,
        box-shadow 0.4s ease;
}

.contact-card:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(201, 75, 75, 0.3);
}

.social-link {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Form animations */
.form-group input,
.form-group select,
.form-group textarea {
    transition: border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: scale(1.01);
    box-shadow: 0 0 0 4px rgba(201, 75, 75, 0.1),
        0 10px 30px rgba(201, 75, 75, 0.1);
}

/* ===== ABOUT SECTION ===== */

.about-feature {
    transition: transform 0.4s ease, background 0.3s ease;
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.about-feature:hover {
    transform: translateX(10px);
    background: rgba(201, 75, 75, 0.05);
}

.about-feature i {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-feature:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(201, 75, 75, 0.3);
}

.about-image-wrapper {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image-wrapper:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-badge {
    animation: float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.about-badge:hover {
    transform: scale(1.1);
}

/* ===== FEATURE CARDS ===== */

.feature-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(201, 75, 75, 0.4);
}

/* ===== FOOTER ANIMATIONS ===== */

.footer-links a {
    transition: color 0.3s ease, padding-left 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    transform: translateX(8px);
}

/* ===== SCROLL INDICATOR ===== */

.scroll-indicator {
    animation: gentleBounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    animation: fadeInUp 1s ease infinite;
}

/* ===== SPARKLE DECORATIONS ===== */

.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

/* ===== LOADING STATES ===== */

.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s linear infinite;
}

/* ===== IMAGE LOADED STATE ===== */

img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}

/* Disable opacity transition for already visible images */
img[src] {
    opacity: 1;
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll,
    .stagger-children>* {
        opacity: 1;
        transform: none;
    }
}