:root {
    --primary: #E41346;
    --primary-light: #FF4D6D;
    --primary-dark: #C20E3A;
    --primary-glow: rgba(228, 19, 70, 0.15);
    --primary-soft: rgba(228, 19, 70, 0.06);
    --white: #FFFFFF;
    --snow: #FFFBFC;
    --blush: #FFF0F3;
    --rose-mist: #FFE4EA;
    --lavender: #F8F0FF;
    --lavender-deep: #F0E4FF;
    --peach: #FFF5EE;
    --sky: #F0F7FF;
    --mint: #F0FFF8;
    --text-primary: #4A2035;
    --text-secondary: #7A5068;
    --text-muted: #A88898;
    --border-light: rgba(228, 19, 70, 0.08);
    --border-medium: rgba(228, 19, 70, 0.15);
    --shadow-soft: 0 4px 20px rgba(228, 19, 70, 0.06);
    --shadow-medium: 0 8px 30px rgba(228, 19, 70, 0.1);
    --shadow-hover: 0 15px 40px rgba(228, 19, 70, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--blush) 0%, var(--white) 50%, var(--lavender) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 70px;
    height: 70px;
    border: 3px solid var(--rose-mist);
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary-light);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

.loader-text {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    letter-spacing: 6px;
    font-weight: 600;
    animation: pulse 1.5s ease infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* CURSOR */
/* .cursor-dot {
            width: 8px; height: 8px;
            background: var(--primary);
            border-radius: 50%;
            position: fixed; pointer-events: none; z-index: 99998;
            transition: transform 0.1s;
        } */
/* .cursor-ring {
            width: 35px; height: 35px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            position: fixed; pointer-events: none; z-index: 99997;
            transition: all 0.15s ease-out;
            opacity: 0.4;
        } */

/* NAVBAR */
.navbar {
    padding: 1rem 0;
    background: transparent !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgb(240 177 177 / 52%) !important;
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px);
    padding: 0.7rem 0;
    box-shadow: 0 4px 30px rgba(228, 19, 70, 0.06);
    border-bottom: 1px solid var(--border-light);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary) !important;
}

.navbar-brand .brand-icon {
    width: 150px;
    height: 49px;
    border: 2px solid currentColor;
    border-radius: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0.6rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0 !important;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: black !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
    color: #1300ed !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1300ed;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: 1px solid var(--primary) !important;
    padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E41346' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-icons .nav-link {
    font-size: 1.1rem !important;
    margin: 0 0.2rem !important;
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(rgb(182 134 134 / 20%) 0%, rgb(120 96 100 / 56%) 10%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    /* transform: scale(1.05); */
}

.hero-bg.active {
    opacity: 1.25;
    animation: heroZoom 14s ease forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(196, 30, 58, 0.3) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: sparkleFloat linear infinite;
    opacity: 0;
}

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(720deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 850px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 40px rgba(228, 19, 70, 0.3);
}

.hero-title .accent {
    color: #FFE4EA;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--primary);
    padding: 16px 48px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 19, 70, 0.1), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background: var(--rose-mist);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    color: var(--primary);
}

.hero-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    padding: 16px 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-left: 15px;
    border-radius: 50px;
}

.hero-cta-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: #fff;
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}

.hero-scroll .scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    margin: 12px auto 0;
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        height: 40px;
        opacity: 1;
    }

    50% {
        height: 20px;
        opacity: 0.4;
    }
}

.hero-slide-indicators {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

.slide-dot.active {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* MARQUEE */
.marquee-banner {
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 40px;
    font-weight: 500;
}

.marquee-item .dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

/* SECTIONS */
.section-white {
    background: var(--white);
}

.section-blush {
    background: var(--blush);
}

.section-lavender {
    background: var(--lavender);
}

.section-peach {
    background: var(--peach);
}

.section-sky {
    background: var(--sky);
}

.section-snow {
    background: var(--snow);
}

.section-gradient-soft {
    background: linear-gradient(180deg, var(--blush) 0%, var(--white) 50%, var(--lavender) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
    background: var(--primary-soft);
    padding: 6px 18px;
    border-radius: 20px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-header .divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 1.2rem auto;
    border-radius: 3px;
}

.section-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* APP DOWNLOAD */
/* ================================================
   APP DOWNLOAD SECTION - PHONE MOCKUP SLIDER
   ================================================ */

#app-download {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#app-download::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 19, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

#app-download::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 19, 70, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* Feature Items */
.app-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
    padding: 14px 20px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
}

.app-feature-item:hover {
    background: var(--blush);
    border-color: var(--border-medium);
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.app-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ================================================
   PHONE WRAPPER
   ================================================ */
.phone-wrapper {
    position: relative;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ================================================
   PHONE MOCKUP
   ================================================ */
.phone-mockup {
    position: relative;
    width: 280px;
    z-index: 5;
    filter: drop-shadow(0 30px 60px rgba(228, 19, 70, 0.15)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.phone-frame {
    background: #1a1a2e;
    border-radius: 35px;
    padding: 6px;
    position: relative;
    border: 1px solid #2d2d44;
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(228, 19, 70, 0.3), transparent);
    z-index: 100;
}

/* Notch */
.phone-notch {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 18px 18px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.phone-speaker {
    width: 40px;
    height: 4px;
    background: #2d2d44;
    border-radius: 4px;
}

.phone-camera {
    width: 10px;
    height: 10px;
    background: #2d2d44;
    border-radius: 50%;
    border: 2px solid #3d3d55;
}

/* Screen */
.phone-screen {
    position: relative;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

/* ================================================
   STATUS BAR
   ================================================ */
.phone-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 25;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent);
}

.status-time {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.status-icons {
    display: flex;
    gap: 4px;
    color: #fff;
    font-size: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ================================================
   SCREENSHOT SLIDER
   ================================================ */
.screenshot-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 6s linear;
    padding-bottom: 9%;
}

.slider-slide.active-zoom img {
    transform: scale(1.08);
}

/* ================================================
   SLIDE CONTENT OVERLAYS (Fake App UI)
   ================================================ */
.slide-content-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    z-index: 5;
}

/* Slide 1 - Home Screen */
.slide-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 16px 8px;
    color: #fff;
}

.app-greeting {
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.slide-app-header i {
    font-size: 16px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Slide 2 - Product Card */
.slide-product-card {
    position: absolute;
    bottom: 70px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mini-price-tag {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.mini-product-name {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 600;
    margin: 2px 0 6px;
}

.mini-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FFB800;
    font-size: 10px;
}

.mini-rating span {
    color: var(--text-muted);
    font-size: 11px;
    margin-left: 4px;
    font-weight: 600;
}

/* Slide 3 - Collection Badge */
.slide-collection-badge {
    position: absolute;
    top: 55px;
    left: 16px;
}

.slide-collection-badge span {
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(228, 19, 70, 0.3);
}

/* Slide 4 - Add to Cart Button */
.slide-add-to-cart {
    position: absolute;
    bottom: 70px;
    left: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(228, 19, 70, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Slide 5 - Wishlist Heart */
.slide-wishlist-icon {
    position: absolute;
    top: 55px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: heartBeat 1.5s ease infinite;
}

@keyframes heartBeat {

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

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

/* ================================================
   SLIDER PROGRESS BAR
   ================================================ */
.slider-progress {
    position: absolute;
    bottom: 55px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    z-index: 20;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s linear;
}

/* ================================================
   BOTTOM NAV BAR
   ================================================ */
.phone-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0 2px;
    z-index: 20;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #bbb;
    font-size: 10px;
    transition: all 0.3s;
}

.bottom-nav-item i {
    font-size: 16px;
}

.bottom-nav-item span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bottom-nav-item.active {
    color: var(--primary);
}

/* Home Indicator */
.phone-home-indicator {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    z-index: 25;
}

/* ================================================
   SLIDER DOTS
   ================================================ */
.screenshot-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
    z-index: 10;
}

.screenshot-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border-medium);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.screenshot-dots .dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(228, 19, 70, 0.3);
}

.screenshot-dots .dot:hover:not(.active) {
    border-color: var(--primary);
    background: rgba(228, 19, 70, 0.2);
}

/* ================================================
   SLIDER ARROWS
   ================================================ */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border-medium);
    background: var(--white);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.slider-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(228, 19, 70, 0.3);
}

.slider-prev {
    left: -5px;
}

.slider-next {
    right: -5px;
}

/* ================================================
   FLOATING BADGES
   ================================================ */
.floating-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border-medium);
    border-radius: 16px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 0.85rem;
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.fb-rating {
    top: 10%;
    right: -30px;
    animation: floatBadge 3s ease infinite;
}

.fb-downloads {
    bottom: 15%;
    left: -30px;
    animation: floatBadge 3s ease infinite 1.5s;
}

@keyframes floatBadge {

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

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

/* ================================================
   RESPONSIVE - PHONE MOCKUP
   ================================================ */
@media (max-width: 1200px) {
    .slider-prev {
        left: -15px;
    }

    .slider-next {
        right: -15px;
    }

    .fb-rating {
        right: -10px;
    }

    .fb-downloads {
        left: -10px;
    }
}

@media (max-width: 992px) {
    .phone-wrapper {
        padding: 2rem 0;
    }

    .phone-mockup {
        width: 250px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

    .fb-rating {
        top: 5%;
        right: 5px;
        padding: 10px 14px;
    }

    .fb-downloads {
        bottom: 12%;
        left: 5px;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    #app-download {
        padding: 80px 0;
    }

    .phone-mockup {
        width: 230px;
    }

    .slider-arrow {
        display: none;
    }

    .fb-rating,
    .fb-downloads {
        display: none;
    }

    .screenshot-dots .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    .phone-mockup {
        width: 210px;
    }
}

/* CATEGORIES */
#categories {
    padding: 120px 0;
}

.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 400px;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover img {
    transform: scale(1.12);
}

.category-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(228, 19, 70, 0.6) 100%);
    z-index: 1;
    transition: all 0.4s;
}

.category-item:hover::before {
    background: linear-gradient(180deg, rgba(228, 19, 70, 0.05) 0%, rgba(228, 19, 70, 0.75) 100%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.category-item:hover .category-info {
    transform: translateY(0);
}

.category-info .cat-tag {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.category-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.category-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    margin: 0;
}

.category-item .explore-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s;
    box-shadow: var(--shadow-soft);
}

.category-item:hover .explore-btn {
    opacity: 1;
    transform: translateY(0);
}

.category-item .explore-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* COLLECTIONS */
#collections {
    padding: 0 0 120px;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-medium);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--blush);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-actions {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(228, 19, 70, 0.1);
}

.product-action-btn:hover {
    background: var(--primary);
    color: #fff;
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-body {
    padding: 1.3rem;
}

.product-body .product-category {
    font-size: 0.72rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.product-body h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--text-primary);
}

.product-body .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-body .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-body .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 6px;
}

.add-to-bag {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-bag:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ABOUT */
#about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 19, 70, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.story-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.story-image img {
    width: 100%;
    border-radius: 24px;
    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}

.story-image .experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(228, 19, 70, 0.3);
}

.experience-badge .number {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-text h2 {
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 1.3rem;
    line-height: 1.2;
}

.story-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 22px;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    background: var(--blush);
    border-color: var(--border-medium);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.feature-card h5 {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}

/* INSTAGRAM */
#instagram {
    padding: 120px 0;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-item:hover img {
    transform: scale(1.12);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(228, 19, 70, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* .insta-overlay i {
    color: #fff;
    font-size: 1.5rem;
} */

/* TESTIMONIALS */
#testimonials {
    padding: 120px 0;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.2rem;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.testimonial-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.8rem;
    font-family: Georgia, serif;
}

.testimonial-card .stars {
    color: #FFB800;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.testimonial-card .review {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.reviewer-info h6 {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.reviewer-info small {
    color: var(--primary);
    font-size: 0.72rem;
    letter-spacing: 1px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 4.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.8rem;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.3s;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.stat-item:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* FAQ */
#faq {
    padding: 120px 0;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--border-medium);
}

.faq-item .accordion-button {
    background: #fff;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.2rem 1.6rem;
    font-size: 0.95rem;
    border: none;
    box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--blush);
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E41346'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item .accordion-body {
    padding: 0 1.6rem 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CONTACT */
#contact {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
}

.contact-left {
    background: #ffdce3;
    border-radius: 24px;
    padding: 2.5rem;
    color: #fff;
    box-shadow: 0 15px 40px rgba(228, 19, 70, 0.2);
}

.contact-method {
    display: flex;
    gap: 14px;
}

.contact-method:last-of-type {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: #000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-method h6 {
    color: #4A2035;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-method p {
    color: #4A2035;
    font-size: 0.88rem;
    margin: 0;
}

.contact-right {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.contact-right h3 {
    color: var(--text-primary);
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.contact-right .subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
}

.contact-right .form-control,
.contact-right textarea.form-control {
    background: var(--blush);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    color: var(--text-primary);
    padding: 13px 16px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.contact-right .form-control:focus,
.contact-right textarea.form-control:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(228, 19, 70, 0.1);
    color: var(--text-primary);
}

.contact-right .form-control::placeholder {
    color: var(--text-muted);
}

.contact-right label {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.btn-submit {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    padding: 14px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    width: 100%;
}

.btn-submit:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 19, 70, 0.3);
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 50%, var(--peach) 100%);
    color: var(--text-primary);
    padding: 70px 0 0;
    border-top: 3px solid var(--primary);
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-light);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.footer-left .brand-icon {
    max-width: 250px;
    height: auto;
    display: block;
}

.footer-right {
    text-align: right;
}

.footer-right .footer-desc {
    margin-bottom: 1rem;
}

footer .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

footer .footer-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.social-row {
    display: flex;
    gap: 8px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    background: var(--white);
}

.social-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

footer h6 {
    color: var(--text-primary);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.7rem;
}

footer ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

footer ul a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.newsletter-input {
    display: flex;
    gap: 0;
    margin-top: 0.8rem;
}

.newsletter-input input {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border-medium);
    border-radius: 50px 0 0 50px;
    padding: 12px 18px;
    color: var(--text-primary);
    font-size: 0.88rem;
}

.newsletter-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-input input::placeholder {
    color: var(--text-muted);
}

.newsletter-input button {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-input button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.admin-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.3s;
}

.admin-link:hover {
    color: var(--primary);
}

/* FLOATING */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: whatsappPulse 2s ease infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

#backToTop {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(228, 19, 70, 0.3);
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-cta-outline {
        display: none;
    }

    .hero-slide-indicators {
        display: none;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-cta {
        padding: 14px 30px;
        font-size: 0.78rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .category-item {
        height: 280px;
    }

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

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 16px;
        margin-top: 8px;
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-medium);
    }

    .navbar-collapse .nav-link {
        color: var(--text-primary) !important;
    }

    .navbar-collapse .nav-link:hover {
        color: var(--primary) !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

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