/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Reverted Palette: Vibrant Pink & Purple */
    --primary: #9D4EDD;
    --primary-light: #C77DFF;
    --primary-dark: #5A189A;
    --accent: #FF006E;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-700: #495057;
    --dark: #212529;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #9D4EDD 0%, #E0AAFF 100%);
    --gradient-accent: linear-gradient(135deg, #FF006E 0%, #FF85A1 100%);
    --gradient-dark: linear-gradient(135deg, #212529 0%, #495057 100%);

    /* UI Scale */
    --section-padding: 100px 0;
    --border-radius: 20px;
    --border-radius-lg: 30px;
    --border-radius-sm: 12px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Duplicate reset removed */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-reveal {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
    overflow: hidden;
}

.whatsapp-float:hover {
    width: 200px;
    border-radius: 30px;
    animation: none;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .whatsapp-text {
    display: none;
    margin-left: 10px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
    animation: fadeIn 0.3s forwards;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 999;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-container {
    flex-shrink: 0;
}

/* Text Logo Styling */
.text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--gradient-primary);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.text-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.text-logo:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 3px;
    text-transform: uppercase;
}

.text-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(157, 78, 221, 0.6);
}

/* Mobile text logo - smaller */
.mobile-text-logo .logo-text {
    font-size: 16px;
}

.mobile-text-logo {
    padding: 10px 16px;
}

/* Footer text logo */
.footer-text-logo {
    margin-bottom: 15px;
    background: rgba(157, 78, 221, 0.2);
    border: 2px solid var(--primary-light);
}

.footer-text-logo .logo-text {
    font-size: 22px;
}

.footer-text-logo .logo-tagline {
    font-size: 10px;
}

/* Remove old image logo styles */
.logo {
    display: none;
}

.mobile-logo {
    display: none;
}

.footer-logo {
    display: none;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta .btn-primary {
    padding: 12px 28px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: var(--transition);
    padding: 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    padding: 3px;
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-dark);
    padding-left: 10px;
}

.mobile-cta {
    width: 100%;
    text-align: center;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-secondary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 180, 184, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E0AAFF 0%, #9D4EDD 50%, #C77DFF 100%);
    opacity: 0.25;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.3) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    animation: slideInRight 0.8s ease-out;
}

.hero-badge i {
    color: var(--accent);
    animation: rotate 3s linear infinite;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-700);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--whatsapp);
    font-size: 20px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--primary-dark);
    animation: bounce 2s infinite;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-description {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products-section {
    padding: var(--section-padding);
    background: var(--gray-100);
}

.category-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--gray-100);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image,
.product-card:hover .product-video {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-order-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--whatsapp);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .quick-order-btn {
    transform: translateY(0);
}

.quick-order-btn:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.product-badge.best-seller {
    background: var(--gradient-accent);
}

.product-badge.new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-info {
    padding: 25px;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-description {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--dark);
}

.feature-tag i {
    color: var(--whatsapp);
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 180, 184, 0.5);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-block {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.feature-content h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray-700);
    font-size: 15px;
}

.stats-card {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-xl);
    animation: float 4s ease-in-out infinite;
}

.stat-item {
    text-align: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    color: var(--white);
}

.whatsapp-icon {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    animation: pulse 2s infinite;
}

.email-icon {
    background: linear-gradient(135deg, #EA4335 0%, #D93025 100%);
}

.phone-icon {
    background: var(--gradient-primary);
}

.contact-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-card p {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary);
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    animation: fadeInUp 0.8s ease-out;
}

.footer-logo {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    padding: 3px;
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--gray-300);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link.whatsapp:hover {
    background: var(--whatsapp);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-column li i {
    color: var(--primary-light);
    margin-right: 8px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    font-size: 14px;
}

.footer-bottom i {
    color: #ff6b6b;
}

/* ===========================
   VIDEO SHOWCASE
   =========================== */
.video-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05) 0%, rgba(204, 82, 122, 0.05) 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    max-width: 100%;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.video-container {
    position: relative;
    padding-top: 177%;
    /* 9:16 aspect ratio */
    background: #000;
}

.showcase-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    backdrop-filter: blur(5px);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-info {
    padding: 25px;
    text-align: center;
}

.video-info h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark);
}

.video-info p {
    color: var(--gray-700);
    font-size: 14px;
}

/* ===========================
   HAIR TRANSFORMATIONS
   =========================== */
.transformations-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0d0015 0%, #1a0a2e 40%, #2d1b4e 70%, #0d0015 100%);
    position: relative;
    overflow: hidden;
}

.transformations-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(157, 78, 221, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(199, 125, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.transformations-section .section-header {
    position: relative;
    z-index: 1;
}

.transformations-section .section-label {
    background: linear-gradient(135deg, #c77dff, #e0aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.transformations-section .section-title {
    color: #fff;
}

.transformations-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.transform-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(199, 125, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.transform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(199, 125, 255, 0.3), transparent 50%, rgba(218, 165, 32, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.transform-card:hover::before {
    opacity: 1;
}

.transform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.2),
        0 0 30px rgba(199, 125, 255, 0.08);
    border-color: rgba(199, 125, 255, 0.3);
}

.transform-card .video-container {
    position: relative;
    aspect-ratio: 9 / 14;
    overflow: hidden;
}

.transform-card .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.transform-card:hover .video-container video {
    transform: scale(1.03);
}

.transform-info {
    padding: 16px 18px;
    background: rgba(13, 0, 21, 0.7);
    backdrop-filter: blur(8px);
}

.transform-info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.transform-info p {
    color: rgba(199, 125, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
}

.transform-cta-wrap {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.transform-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.transform-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2be774, #25D366);
}

.transform-cta i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .transformations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .transform-info h4 {
        font-size: 13px;
    }

    .transform-info p {
        font-size: 11px;
    }

    .transform-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .transformations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(157, 78, 221, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-light);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    right: 35px;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray-800);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

.user-info h5 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.user-stars {
    color: #ffb800;
    font-size: 12px;
}

/* ===========================
   CUSTOMER SHOWCASE (Justy Queens)
   =========================== */
.showcase-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #fff, #fafafa);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.queen-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.queen-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.queen-image,
.queen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.queen-card:hover .queen-image,
.queen-card:hover .queen-video {
    transform: scale(1.1);
}

.queen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.queen-card:hover .queen-overlay {
    opacity: 1;
    transform: translateY(0);
}

.queen-name {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-light);
}

.queen-hair-details {
    font-size: 14px;
    opacity: 0.9;
}

.queen-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* ===========================
   HAIR CARE GUIDE SECTION
   =========================== */
.blog-section {
    padding: var(--section-padding);
    background: linear-gradient(160deg, #f8f1ff 0%, #fff5f9 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

/* 3-column care card grid */
.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

/* Individual care card */
.care-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 28px 24px;
    box-shadow: 0 4px 24px rgba(157, 78, 221, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1.5px solid rgba(157, 78, 221, 0.08);
}

.care-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.18);
    border-color: rgba(157, 78, 221, 0.2);
}

/* Top row: icon + step number */
.care-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

/* Gradient icon circle */
.care-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: var(--transition);
}

.care-card:hover .care-icon-wrap {
    transform: rotate(-6deg) scale(1.08);
}

/* Step number badge */
.care-step {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    color: rgba(157, 78, 221, 0.1);
    line-height: 1;
    letter-spacing: -2px;
    transition: var(--transition);
}

.care-card:hover .care-step {
    color: rgba(157, 78, 221, 0.18);
}

/* Body area */
.care-body {
    flex: 1;
    margin-bottom: 24px;
}

.care-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.care-desc {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Tip bullet list */
.care-tips {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.care-tips li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--dark);
    line-height: 1.5;
}

.care-tips li i {
    color: var(--whatsapp);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* WhatsApp CTA button inside each card */
.care-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: var(--whatsapp);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    margin-top: auto;
}

.care-cta:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Full-width CTA banner at bottom of section */
.care-cta-banner {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.25);
}

.care-cta-text h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.care-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.care-cta-banner .btn-primary {
    flex-shrink: 0;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
}

.care-cta-banner .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive care grid */
@media (max-width: 1024px) {
    .care-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .care-grid {
        grid-template-columns: 1fr;
    }

    .care-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
    color: var(--primary);
}

/* ===========================
   SCROLL REVEAL & VIP MODE
   =========================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

body.vip-mode {
    background-color: #0d010d;
}

.vip-mode .section-title,
.vip-mode h3,
.vip-mode h4,
.vip-mode .about-text {
    color: #ffd700;
}

.vip-mode .product-card,
.vip-mode .testimonial-card,
.vip-mode .blog-card,
.vip-mode .contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.vip-mode .product-name,
.vip-mode .product-description {
    color: #ccc;
}

/* ===========================
   QUICK VIEW MODAL
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.modal-content {
    width: 90%;
    max-width: 1000px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius-lg);
    position: relative;
    padding: 50px;
    animation: zoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.modal-image-col img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 35px;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg) scale(1.2);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 38px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .sales-pulse {
        left: 15px;
        right: 15px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-form-container {
        padding: 25px;
    }
}

/* Hide products based on filter */
.product-card.hidden {
    display: none;
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* Duplicate keyframes removed - defined in main animations section above */

/* ===========================
   LUXURY LOADER
   =========================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-primary);
    font-size: 40px;
    letter-spacing: 10px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

.loader-line {
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto;
    animation: progress 1.5s ease-in-out forwards;
}

@keyframes progress {
    to {
        width: 150px;
    }
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

/* Base Transitions Override */
.btn-primary,
.btn-secondary {
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
}

.hero-title {
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: var(--text-muted);
}

/* ===========================
   DETAILED VIDEO SECTION
   =========================== */
.detailed-video-section {
    padding: var(--section-padding);
    background: var(--white);
}

.detailed-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.detailed-video-card {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.detailed-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detailed-video-card .video-wrapper {
    position: relative;
    padding-bottom: 125%;
    /* Taller Aspect Ratio for vertical videos */
    height: 0;
    overflow: hidden;
    background: #000;
}

.detailed-video-card .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detailed-video-card .video-details {
    padding: 25px;
}

.detailed-video-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.video-specs {
    list-style: none;
    margin-bottom: 20px;
}

.video-specs li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-300);
    font-size: 15px;
}

.video-specs li:last-child {
    border-bottom: none;
}

.video-specs span {
    font-weight: 600;
    color: var(--dark);
}

.btn-video-order {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-video-order:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}

/* ===========================
   ANNOUNCEMENT TICKER
   =========================== */
/* --- STICKY HEADER WRAPPER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1002;
    width: 100%;
}

.announcement-ticker {
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
    position: relative;
    z-index: 1002;
    height: 40px;
}

.ticker-wrapper {
    display: flex;
    flex-direction: column;
    height: 40px;
    animation: ticker-vertical-roll 25s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.ticker-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    width: 100vw;
    flex-shrink: 0;
}

.ticker-track span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-track span::before {
    display: none;
}

@keyframes ticker-vertical-roll {

    0%,
    15% {
        transform: translateY(0);
    }

    16.66%,
    31.66% {
        transform: translateY(-40px);
    }

    33.33%,
    48.33% {
        transform: translateY(-80px);
    }

    50%,
    65% {
        transform: translateY(-120px);
    }

    66.66%,
    81.66% {
        transform: translateY(-160px);
    }

    83.33%,
    98.33% {
        transform: translateY(-200px);
    }

    100% {
        transform: translateY(-240px);
    }
}

/* Pause ticker on hover */
.announcement-ticker:hover .ticker-wrapper {
    animation-play-state: paused;
}

/* ===========================
   VIDEO SECTION ENHANCEMENTS
   =========================== */
.video-info {
    padding: 18px 20px;
    background: var(--white);
}

.video-info h4 {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.video-info p {
    font-size: 13px;
    color: var(--gray-700);
}

/* ===========================
   PRODUCT GRID ENHANCEMENTS
   =========================== */
.product-card {
    display: flex;
    flex-direction: column;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-cta {
    margin-top: auto;
}

/* Smooth hidden card animation for filter */
.product-card.hidden {
    display: none;
}

/* ===========================
   NAVBAR OFFSET FOR TICKER
   =========================== */
.navbar {
    top: 0;
    margin-top: 0;
}

/* ===========================
   RESPONSIVE UPDATES
   =========================== */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 18px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .ticker-track span {
        padding: 0 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product-name {
        font-size: 16px;
    }

    .product-description {
        font-size: 12px;
    }

    .product-info {
        padding: 16px;
    }
}

/* =====================================================
   ✨ FULL SITE OVERHAUL — 100+ IMPROVEMENTS
   ===================================================== */

/* --- HERO IMPROVEMENTS --- */
.hero {
    background: linear-gradient(135deg, #f5e6ff 0%, #fce4f0 40%, #e8f4ff 100%);
    min-height: 100vh;
}

.hero-background {
    background: none;
    opacity: 1;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: -1px;
    line-height: 1.08;
    color: #1a1025;
}

.hero-badge {
    padding: 12px 24px;
    font-size: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 18px;
    max-width: 580px;
    line-height: 1.8;
    color: #5a4a6a;
}

.hero-buttons {
    margin-bottom: 60px;
    gap: 16px;
}

.hero-features {
    gap: 24px;
    padding-top: 10px;
    border-top: 1px solid rgba(157, 78, 221, 0.12);
}

.feature-item {
    font-size: 14px;
    color: #5a4a6a;
    font-weight: 600;
}

/* Rich hero orbs */
.hero-background::before {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.35) 0%, transparent 65%);
    top: -250px;
    right: -250px;
}

.hero-background::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 65%);
    bottom: -200px;
    left: -150px;
}

/* --- NAVBAR IMPROVEMENTS --- */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(157, 78, 221, 0.12);
}

/* --- SECTION HEADER IMPROVEMENTS --- */
.section-title {
    font-size: clamp(32px, 4vw, 48px);
    background: linear-gradient(135deg, #1a1025, #5A189A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: 50px;
}

/* --- PRODUCT CARD IMPROVEMENTS --- */
.product-image-container {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f3e8ff, #fce4f0);
}

.product-image {
    object-fit: cover;
    object-position: center top;
}

/* Broken image fallback styling */
img[alt] {
    font-size: 0;
}

img::before {
    content: '';
    display: block;
    background: linear-gradient(135deg, #f3e8ff, #fce4f0);
    width: 100%;
    height: 100%;
}

.product-card {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-name {
    font-size: 18px;
    line-height: 1.3;
}

.product-description {
    font-size: 13.5px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- VIDEO SECTION IMPROVEMENTS --- */
.video-section {
    background: linear-gradient(160deg, #0d0618 0%, #1a0a2e 50%, #0d0618 100%);
}

.video-section .section-title {
    background: linear-gradient(135deg, #C77DFF, #E0AAFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-section .section-label {
    background: rgba(199, 125, 255, 0.2);
    color: #C77DFF;
    border: 1px solid rgba(199, 125, 255, 0.3);
}

.video-section .section-description {
    color: rgba(255, 255, 255, 0.65);
}

.video-card {
    background: #1a0a2e;
    border: 1px solid rgba(199, 125, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.video-card:hover {
    border-color: rgba(199, 125, 255, 0.45);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.4);
}

/* Glassmorphism hover overlay on video cards */
.video-play-hint {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(13, 6, 24, 0.55);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.35s ease;
    border-radius: 4px;
    z-index: 2;
}

.video-play-hint i {
    width: 54px;
    height: 54px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.5);
    padding-left: 4px;
    /* optical center for play icon */
}

.video-info {
    background: #1a0a2e;
    border-top: 1px solid rgba(199, 125, 255, 0.1);
}

.video-info h4 {
    color: #E0AAFF;
    font-size: 15px;
}

.video-info p {
    color: rgba(255, 255, 255, 0.5);
}

.video-container {
    padding-top: 160%;
    /* taller 9:16 ratio for phone video feel */
    background: #0d0618;
}

/* --- JUSTY QUEENS IMPROVEMENTS --- */
.showcase-section {
    background: linear-gradient(160deg, #0d0113 0%, #1a0a2e 100%);
}

.showcase-section .section-title {
    color: #E0AAFF;
    background: linear-gradient(135deg, #C77DFF, #FF85A1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-section .section-label {
    background: rgba(199, 125, 255, 0.2);
    color: #C77DFF;
    border: 1px solid rgba(199, 125, 255, 0.3);
}

.showcase-section .section-description {
    color: rgba(255, 255, 255, 0.6);
}

.queen-card {
    border: 1px solid rgba(199, 125, 255, 0.15);
}

.queen-card:hover {
    border-color: rgba(199, 125, 255, 0.4);
    box-shadow: 0 24px 60px rgba(157, 78, 221, 0.35);
}

.queen-overlay {
    background: linear-gradient(to top, rgba(13, 1, 19, 0.92) 0%, rgba(13, 1, 19, 0.4) 60%, transparent 100%);
    opacity: 1;
    transform: translateY(0);
    padding: 20px 16px;
}

.queen-name {
    color: #E0AAFF;
    font-size: 16px;
    margin-bottom: 3px;
}

.queen-hair-details {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

/* --- TESTIMONIALS FULL REDESIGN --- */
.testimonials-section {
    background: linear-gradient(160deg, #f8f1ff 0%, #fff5f9 100%);
    padding: var(--section-padding);
}

.testimonials-section .section-title {
    background: linear-gradient(135deg, #1a1025, #5A189A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    border: 1.5px solid rgba(157, 78, 221, 0.1);
    box-shadow: 0 4px 24px rgba(157, 78, 221, 0.07);
    transition: all 0.35s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(255, 0, 110, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.15);
}

.quote-icon {
    font-size: 56px;
    color: var(--primary-light);
    opacity: 0.12;
    top: 20px;
    right: 25px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.85;
    color: #3d2b5a;
    font-style: italic;
    margin-bottom: 25px;
}

.user-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-top: 4px;
    letter-spacing: 1px;
}

.user-avatar {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
    font-size: 20px;
}

/* --- ABOUT SECTION IMPROVEMENTS --- */
.about-section {
    background: linear-gradient(160deg, #fff 0%, #f8f1ff 100%);
}

.about-grid {
    gap: 60px;
}

.about-visual {
    position: relative;
}

.stats-card {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 25px 60px rgba(157, 78, 221, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    border-radius: 12px;
    margin-bottom: 6px;
    text-align: center;
}

.feature-icon {
    background: var(--gradient-primary);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.25);
    border-radius: 16px;
}

.feature-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1025;
}

.feature-content p {
    color: #5a4a6a;
    font-size: 14px;
}

/* --- CONTACT SECTION IMPROVEMENTS --- */
.contact-section {
    background: linear-gradient(160deg, #f8f1ff 0%, #fff5f9 100%);
}

.contact-form-container {
    border: 1.5px solid rgba(157, 78, 221, 0.12);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.08);
}

.btn-large.btn-full {
    padding: 16px 24px;
    /* normalize oversized contact button */
    font-size: 15px;
    border-radius: 14px;
}

.form-group input,
.form-group textarea {
    border-radius: 14px;
    border: 1.5px solid rgba(157, 78, 221, 0.15);
    background: #faf7ff;
    font-size: 14px;
    padding: 14px 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(157, 78, 221, 0.08);
}

.contact-card {
    border: 1.5px solid rgba(157, 78, 221, 0.1);
    border-radius: 24px;
}

.contact-card:hover {
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 12px 30px rgba(157, 78, 221, 0.12);
}

/* --- FOOTER IMPROVEMENTS --- */
.footer {
    background: linear-gradient(160deg, #0d0113 0%, #1a0a2e 60%, #0d0618 100%);
    padding: 70px 0 30px;
}

.social-link {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.4);
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: transparent;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin-top: 8px;
}

.footer-column h4 {
    color: #C77DFF;
    font-size: 15px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.footer-column a:hover {
    color: #C77DFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.footer-bottom i {
    color: #FF85A1;
}

/* --- FLOATING CEO WIDGET --- */
.ceo-floating-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(20, 5, 36, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(199, 125, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    width: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(157, 78, 221, 0.15);
    z-index: 999;
    display: flex;
    flex-direction: column;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: bottom left;
    transition: opacity 0.3s ease;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ceo-widget-close {
    position: absolute;
    top: 10px;
    right: 12px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
    z-index: 2;
}

.ceo-widget-close:hover {
    color: #FF85A1;
}

.ceo-widget-content {
    display: flex;
    gap: 14px;
    align-items: center;
}

.ceo-avatar-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.ceo-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C77DFF;
    position: relative;
    z-index: 2;
}

.ceo-pulse-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C77DFF, #9D4EDD);
    z-index: 1;
    animation: pulseGlow 2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0.5;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.ceo-message-body {
    flex: 1;
}

.ceo-greeting {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    font-style: italic;
    margin-top: 0;
}

.ceo-audio-player {
    margin-bottom: 6px;
    width: 100%;
}

.ceo-audio {
    width: 100%;
    height: 35px;
    border-radius: 50px;
}

.ceo-audio::-webkit-media-controls-panel {
    background-color: #dfc5ff;
}

.ceo-name {
    font-size: 11px;
    color: #C77DFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

@media (max-width: 480px) {
    .ceo-floating-widget {
        bottom: 90px;
        left: 20px;
        width: 280px;
        padding: 12px;
    }

    .ceo-avatar-wrap {
        width: 50px;
        height: 50px;
    }

    .ceo-greeting {
        font-size: 12px;
    }
}

.whatsapp-float {
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    border-radius: 50px;
    font-size: 22px;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.35);
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(157, 78, 221, 0.5);
}

/* --- CATEGORY TABS IMPROVEMENT --- */
.tab-btn {
    border-radius: 50px;
    padding: 11px 24px;
    font-size: 13.5px;
    letter-spacing: 0.3px;
}

.tab-btn.active {
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.35);
}

/* --- ANNOUNCEMENT TICKER FIXED --- */
.announcement-ticker {
    background: linear-gradient(90deg, #5A189A, #9D4EDD, #FF006E, #9D4EDD, #5A189A);
    background-size: 300% 100%;
    animation: ticker-gradient 6s linear infinite, ticker-scroll 40s linear infinite;
}

@keyframes ticker-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- PRODUCTS SECTION BACKGROUND --- */
.products-section {
    background: linear-gradient(160deg, #f8f2ff 0%, #fff 60%, #f8f2ff 100%);
}

/* --- FEATURE BLOCK HOVER --- */
.feature-block {
    padding: 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-block:hover {
    background: rgba(157, 78, 221, 0.05);
}

/* --- PRODUCT BADGE IMPROVEMENTS --- */
.product-badge {
    font-size: 11px;
    padding: 5px 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- GLOBAL SCROLL REVEAL IMPROVED --- */
.scroll-reveal {
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- CONTAINER PADDING FIX --- */
.container {
    padding: 0 24px;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 52px;
    }

    .care-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 30px;
    }

    .stats-card {
        padding: 35px 25px;
    }

    .stat-number {
        font-size: 38px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .care-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .care-cta-text h3 {
        font-size: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 10px 18px;
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .queen-card {
        aspect-ratio: 3/4;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }

    .product-image-container {
        aspect-ratio: 4/3;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-info {
        padding: 16px;
    }

    .product-name {
        font-size: 18px;
        min-height: auto;
    }

    .product-description {
        font-size: 14px;
    }

    .product-cta {
        padding: 14px;
        font-size: 15px;
    }

    .queen-card {
        aspect-ratio: 3/4;
    }

    .queen-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    section {
        padding: 50px 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   PHOTO LIGHTBOX
   =========================== */
.photo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.25s ease;
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox #lightboxImg {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes scaleIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}