/* =========================================
   🌸 FASHNOW Global Typography System
   ========================================= */
:root {
    /* Font families */
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Colors */
    --color-bg: #000000;
    --color-text: #f5f5f5;
    --color-subtext: #c7c7c7;
    --color-accent: #ff007f;
    --color-accent-light: #ff66b3;

    /* Font sizes (responsive scale) */
    --fs-xxl: clamp(2.8rem, 5vw, 3.6rem);
    --fs-xl: clamp(2rem, 4vw, 2.6rem);
    --fs-lg: clamp(1.4rem, 2.5vw, 1.8rem);
    --fs-md: 1rem;
    --fs-sm: 0.9rem;
    --fs-xs: 0.8rem;

    /* Line heights */
    --lh-tight: 1.2;
    --lh-normal: 1.6;
    --lh-loose: 1.8;

    /* Letter spacing */
    --ls-wide: 1px;
    --ls-normal: 0.5px;

    /* Transition */
    --transition: all 0.3s ease;
}

/* Base styles */
body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: var(--lh-normal);
    margin: 0;
    padding: 0;
}

/* Headings */
h1 {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    letter-spacing: var(--ls-normal);
    margin-bottom: 0.75em;
    transition: var(--transition);
}

h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    letter-spacing: var(--ls-normal);
    margin-bottom: 0.75em;
    transition: var(--transition);
}

h1 {
    font-size: var(--fs-xxl);
    font-weight: 700;
}

h2 {
    font-size: var(--fs-xl);
    font-weight: 600;
}

h3 {
    font-size: var(--fs-lg);
    font-weight: 600;
}

h4,
h5,
h6 {
    font-size: var(--fs-md);
    font-weight: 500;
}

/* Paragraphs */
p {
    font-size: var(--fs-md);
    color: var(--color-subtext);
    margin-bottom: 1.2em;
}

/* Links */
a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent-light);
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.6);
}

/* Buttons */
button,
.btn {
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-normal);
    transition: var(--transition);
}

button:hover,
.btn:hover {
    background: var(--color-accent-light);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.7);
    transform: translateY(-3px);
}

/* Section Titles */
.section-title {
    font-family: var(--font-accent);
    font-size: var(--fs-xl);
    color: var(--color-accent);
    text-align: center;
    margin: 2em 0 1em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-accent);
    margin: 10px auto 0;
    border-radius: 10px;
}

/* Small captions / tags */
.small-text {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    color: var(--color-subtext);
    letter-spacing: var(--ls-wide);
}

/* Quote / Highlight */
blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 15px;
    font-style: italic;
    color: var(--color-accent-light);
}

/* List */
ul,
ol {
    margin-left: 1.5em;
}

li {
    margin-bottom: 0.5em;
    color: var(--color-subtext);
}

/* Responsive heading adjustment */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
    }
}

body {
    font-family: var(--font-primary) !important;
}

/* Loader background */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

/* The loader animation */
.fashnow-loader-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff007a, #8a00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fashnow-pulse 1.6s infinite ease-in-out;
}

.fashnow-loader-logo {
    width: 90px;
    height: 90px;
}

@keyframes fashnow-pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 10px #ff007a;
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px #ff00b3;
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 10px #8a00ff;
    }
}



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

    100% {
        transform: rotate(360deg);
    }
}

/* Hide loader */
.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Main content */
#content {
    opacity: 0;
    transition: opacity 1s ease;
}

#content.show {
    opacity: 1;
}

.fashnow-loader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.fashnow-dots {
    display: flex;
    gap: 8px;
}

.fashnow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    animation: fashnow-bounce 0.8s infinite ease-in-out;
}

.fashnow-dot:nth-child(2) {
    animation-delay: 0.15s;
}

.fashnow-dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fashnow-bounce {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.fashnow-navbar {
    background-color: #000;
    padding: 10px 20px;
    transition: all 0.4s ease;
    z-index: 999;
}

.fashnow-navbar .navbar-brand img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fashnow-navbar .navbar-brand img:hover {
    transform: rotate(360deg);
}

.fashnow-navbar .nav-link {
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
    font-size: 24px;
}

.fashnow-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #ff007f;
    transition: width 0.3s ease;
}

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

.fashnow-navbar .nav-link:hover {
    color: #ff007f !important;
}

/* Responsive toggle animation */
.fashnow-navbar .navbar-collapse {
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

.fashnow-navbar .navbar-collapse.collapsing {
    opacity: 0;
}

.fashnow-navbar .navbar-collapse.show {
    max-height: 400px;
    opacity: 1;
}

/* Mobile styles */
@media (max-width: 991px) {
    .fashnow-navbar .navbar-nav {
        background: #111;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
    }

    .fashnow-navbar .nav-link {
        margin: 8px 0;
    }
}


/* ------------------hero content------------------ */

.fashnow-hero {
    position: relative;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35)),
        url('../images/hero-background.png') center/cover no-repeat;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.fashnow-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* ===== Text Animations ===== */
@keyframes slideFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.fashnow-hero h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    font-size: 4.5rem;
    color: #fff;
    opacity: 0;
    animation: slideFromLeft 1s ease-out forwards;
    animation-delay: 1s;
}

.fashnow-hero h1 .highlight {
    color: #ff007f;
    display: inline-block;
}

.fashnow-hero p {
    color: #cfcfcf;
    font-size: 1.1rem;
    max-width: 550px;
    margin: 25px 0;
    line-height: 1.6;
    opacity: 0;
    animation: slideFromLeft 1s ease-out forwards;
    animation-delay: 1.5s;
}

.fashnow-hero .btn-primary {
    background-color: #b00063;
    border: none;
    border-radius: 8px;
    padding: 14px 80px;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideFromLeft 1s ease-out forwards;
    animation-delay: 2s;
}

.fashnow-hero .btn-primary:hover {
    background-color: #ff007f;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
    transform: translateY(-3px);
}

/* ===== App Icons ===== */
.app-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    opacity: 0;
    animation: slideFromLeft 1s ease-out forwards;
    animation-delay: 1.3s;
}

.app-icons-body {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 10px 14px;
    transition: 0.3s ease;
    cursor: pointer;
}

.app-icons-body:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.app-icons-body img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    filter: brightness(100%);
}

.app-icons-body span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

/* ===== Image Animations ===== */
@keyframes slideFromTop {
    0% {
        transform: translateY(-300px);
        opacity: 0;
    }

    60% {
        transform: translateY(15px);
        opacity: 1;
    }

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

@keyframes floatMobile {
    0% {
        transform: translateY(0);
    }

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

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

.fashnow-hero .hero-img {
    text-align: center !important;
    z-index: 2;

}

.hero-img {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;

}

.hero-circle-wrapper {
    position: absolute;
    animation: floatHeroCircle 6s ease-in-out infinite alternate;
}

.hero-circle {
    border-radius: 50%;
    opacity: 0.75;
    mix-blend-mode: screen;
    animation: circleScaleIn 8s cubic-bezier(.16, .84, .44, 1) forwards;
    transform-origin: center;
}

@keyframes circleScaleIn {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

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

    100% {
        transform: scale(1);
        opacity: 0.75;
    }
}




@keyframes floatHeroCircle {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-18px);
    }
}



.fashnow-hero .hero-img img {
    width: 250px;
    max-width: 90%;
    animation: slideFromTop 4s ease-out forwards,
        floatMobile 4s ease-in-out infinite 3s;
    z-index: 100;
}

/* ===== Floating Circles ===== */
.fashnow-hero .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
    animation: floatCircle 6s ease-in-out infinite alternate;
}


.circle3 {
    width: 50px;
    height: 50px;
    background: #ff007f;
    bottom: 30%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes floatCircle {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .fashnow-hero {
        text-align: center;
        padding: 80px 20px;
    }

    .fashnow-hero .hero-img {
        text-align: center;
        margin-top: 50px;
    }

    .fashnow-hero .hero-img img {
        width: 260px;
    }

    .app-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .fashnow-hero .btn-primary {
        font-size: 22px;
    }

    .fashnow-hero h1 {
        font-size: 2rem;
    }

    .fashnow-hero p {
        font-size: 0.95rem;
    }

    .fashnow-hero .btn-primary {
        padding: 12px 28px;
    }

    .app-icons-body span {
        font-size: 0.8rem;
    }
}


/*------------- section-2 --------------- */


.journey-section-2 {
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-wrap: wrap;
}

/* Left image */
.journey-2-left {
    flex: 1 1 50%;
    min-height: 100%;
}

.journey-2-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right content */
.journey-2-right {
    flex: 1 1 50%;
    padding: 60px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.journey-2-title {
    color: #ae1c77;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.journey-2-text {
    color: black;
    font-size: 20px;
    line-height: 1.6;
}

/* Laptop */
@media (max-width: 1200px) {
    .journey-2-right {
        padding: 50px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .journey-section-2 {
        flex-direction: column;
    }

    .journey-2-left,
    .journey-2-right {
        flex: 1 1 100%;
        width: 100%;
    }

    .journey-2-right {
        padding: 45px 35px;
    }

    .journey-2-title {
        font-size: 32px;
    }

    .journey-2-text {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .journey-2-right {
        padding: 30px 20px;
    }

    .journey-2-title {
        font-size: 28px;
        text-align: center;
    }

    .journey-2-text {
        font-size: 16px;
        text-align: center;
    }
}


.whychoose-sec {
    background: linear-gradient(135deg, #8c006d, #b30074);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

/* Title */
.whychoose-sec .whychoose-title {
    font-size: 120px;
    font-weight: 800;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .whychoose-sec .whychoose-title {
        font-size: 50px;
        text-align: center;
    }
}

/* Slider container */
.whychoose-slider {
    width: 100%;
    height: 500px;
    /* visible height */
    overflow: hidden;
    position: relative;
}

/* Track animation */
.whychoose-slider-track {
    display: flex;
    flex-direction: column;
    animation: whychooseScroll 20s linear infinite;
}

/* Each box */
.whychoose-img-box {
    border-radius: 18px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.whychoose-img-box:hover {
    transform: scale(1.03);
}

.whychoose-img-box img {
    width: 100%;
    border-radius: 12px;
}

.whychoose-desc {
    font-size: 24px;
    font-weight: 600;
    margin-top: 12px;
    color: white;
    text-align: start;
}

/* Infinite scroll animation */
@keyframes whychooseScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Floating circles (unchanged from yours) */
.whychoose-sec .circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.7;
}

.circle-1 {
    width: 180px;
    height: 180px;
    top: -30px;
    left: -40px;
    background: #FF0087;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 20px;
    right: 60px;
    animation-delay: 1s;
    background: #FF0087;
}

.circle-3 {
    width: 40px;
    height: 40px;
    bottom: 12%;
    left: 50%;
    animation-delay: 2s;
    background: #FF0087;
}

.circle-4 {
    width: 30px;
    height: 30px;
    bottom: 28%;
    left: 41%;
    animation-delay: 2s;
    background: white;
    opacity: 1;
}

.circle-5 {
    width: 200px;
    height: 200px;
    top: -19%;
    left: 88%;
    animation-delay: 2s;
    background: #FF0087;
    opacity: 1;
}

.circle-6 {
    bottom: 50%;
    left: 87%;
    animation-delay: 2s;
    opacity: 1;
}

.circle-6 img {
    width: 100px;
}

.whychoose-slider:hover .whychoose-slider-track {
    animation-play-state: paused;
}

/* Floating animation for circles */
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .whychoose-slider {
        height: 300px;
    }

    .whychoose-img-box {
        margin: 15px 0;
        padding: 15px;
    }

    .whychoose-desc {
        font-size: 14px;
    }
}


.vision-section-2 {
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-wrap: wrap;
}

/* Left image */
.vision-2-left {
    flex: 1 1 50%;
    min-height: 100%;
}

.vision-2-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right content */
.vision-2-right {
    flex: 1 1 50%;
    padding: 60px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.vision-2-title {
    color: #ae1c77;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.vision-2-text {
    color: black;
    font-size: 20px;
    line-height: 1.6;
}

/* Laptop */
@media (max-width: 1200px) {
    .vision-2-right {
        padding: 50px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .vision-section-2 {
        flex-direction: column;
    }

    .vision-2-left,
    .vision-2-right {
        flex: 1 1 100%;
        width: 100%;
    }

    .vision-2-right {
        padding: 45px 35px;
    }

    .vision-2-title {
        font-size: 32px;
    }

    .vision-2-text {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .vision-2-right {
        padding: 30px 20px;
    }

    .vision-2-title {
        font-size: 28px;
        text-align: center;
    }

    .vision-2-text {
        font-size: 16px;
        text-align: center;
    }
}


.grow-store-section {
    position: relative;
    background-color: #40092C !important;
}

.grow-store-fullwrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #40092C;
}

.grow-store-left,
.grow-store-right {
    width: 50%;
    text-align: center;
}

.grow-store-left img,
.grow-store-right img {
    width: 100%;
    height: auto;
    display: block;
}

.grow-store-header {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    color: white;
    font-weight: 800;
    z-index: 10;
    /* ensures it's above images */
    text-align: center;
    white-space: nowrap;
}

.grow-store-title {
    margin-top: -92px;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    color: #F4007A;
    margin-bottom: 50px;
}

/* Center vertical line */
.grow-store-divider {
    width: 2px;
    height: 80%;
    background: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .grow-store-fullwrap {
        flex-direction: column;
        gap: 50px;
    }

    .grow-store-divider {
        width: 80%;
        height: 2px;
    }

    .grow-store-left,
    .grow-store-right {
        width: 90%;
    }

    .grow-store-header {
        top: 6%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 22px;
    }

    .grow-store-title {
        margin-top: -32px;
    }
}


.fashnow-partner-section {
    background: #ffffff;
}

.fashnow-partner-title {
    color: #cc007b;
    font-size: 56px;
}

.fashnow-partner-box {
    gap: 15px;
    align-items: flex-start;
    padding: 20px 10px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.fashnow-partner-box:hover {
    transform: translateY(-6px);
    background: #fff1fa;
    border-radius: 8px;
}

.fashnow-partner-icon {
    width: 100px;
    min-width: 110px;
}

/* Text Styles */
.fashnow-partner-heading {
    font-weight: 800;
    font-size: 24px;
    color: #cc007b;
}

.fashnow-partner-text {
    font-size: 24px;
    color: #444;
}

.fashnow-partner-bigtext {
    color: #cc007b;
    font-size: 32px;
    line-height: 1.4;
}

/* ✅ Mobile Optimization */
@media (max-width: 576px) {
    .fashnow-partner-box {
        text-align: left;
    }

    .fashnow-partner-icon {
        width: 35px;
    }

    .fashnow-partner-heading {
        font-size: 16px;
    }

    .fashnow-partner-text {
        font-size: 16px;

    }

    .fashnow-partner-icon {
        width: 50px;
        min-width: 50px;
    }


    .fashnow-partner-bigtext {
        font-size: 20px;
        text-align: left;
    }

    .fashnow-partner-title {
        font-size: 24px;
    }
}



.delivery-section-wrap .deliver-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.7;
    transition: transform 1.2s ease-in-out;
}

.deliver-circle-1 {
    width: 200px;
    height: 200px;
    top: -74px;
    right: -19px;
    background: #ff007f;
    box-shadow: 0 0 10px 15px #ff007f;

}

.deliver-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -10%;
    right: 50%;
    animation-delay: 1s;
    background: #ff007f;
    box-shadow: 0 0 10px 15px #ff007f;
}

.deliver-circle-3 {
    width: 100px;
    height: 100px;
    bottom: 60%;
    left: 37%;
    background: #ff007f;

}

.deliver-circle-4 {
    width: 50px;
    height: 50px;
    bottom: 40%;
    left: 5%;
    animation-delay: 1s;
    background: white;

}

.deliver-circle-5 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 40%;
    animation-delay: 1s;
    background: white;

}


.delivery-section-wrap.alt .deliver-circle-1 {
    top: -11%;
    right: 80%;
}

.delivery-section-wrap.alt .deliver-circle-2 {
    bottom: -22%;
    right: 32%;
    width: 300px;
    height: 300px;
}

.delivery-section-wrap.alt .deliver-circle-3 {
    bottom: 66%;
    left: 79%;
}

.delivery-section-wrap.alt .deliver-circle-4 {
    bottom: 20%;
    left: 15%;
}

.delivery-section-wrap.alt .deliver-circle-5 {
    bottom: 38%;
    left: 41%;
}


.delivery-section-wrap {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at bottom right, #21001b, #000);
    overflow: hidden;
    color: white;
    padding: 60px 5%;
}


@keyframes deliveryFloat {
    0% {
        transform: translateY(0) scale(1);
    }

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

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

/* Layout */
.delivery-container {
    display: none;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.delivery-container.active {
    display: flex;
    opacity: 1;
}

/* Animations */
@keyframes phoneSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-200px) scale(0.95);
    }

    60% {
        opacity: 1;
        transform: translateY(20px) scale(1.02);
        /* slight bounce */
    }

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

@keyframes textSlideRight {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }

    60% {
        opacity: 1;
        transform: translateX(15px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/* When active, animate phone + right content */
.delivery-container.active .delivery-phone img {
    animation: phoneSlideDown 4s ease forwards;
}

.delivery-container.active .delivery-right {
    animation: textSlideRight 4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}




/* Left Image */
.delivery-left {
    flex: 1;
    text-align: center;
}

.delivery-phone img {
    max-width: 500px;
    width: 100%;
    border-radius: 30px;

    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0% {
        transform: translateY(0);
    }

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

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

/* Right Content */
.delivery-right {
    flex: 1;
    padding-left: 50px;
}

.delivery-title {
    color: #ff1fa3;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 15px;
}

.delivery-desc {
    color: #ddd;
    font-size: 24px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.delivery-next-btn {
    background-color: #ff1fa3;
    border: none;
    border-radius: 50px;
    padding: 10px 35px;
    color: white;
    font-weight: 500;
    text-transform: lowercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.delivery-next-btn:hover {
    background-color: #ff4fbf;
    transform: scale(1.08);
    box-shadow: 0 0 15px #ff4fbf;
}

/* Responsive */
@media (max-width: 992px) {
    .delivery-container {
        flex-direction: column;
        text-align: center;
    }

    .delivery-right {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media only screen and (max-width:500px) {
    .deliver-circle-5 {
        display: none;

    }

    .delivery-desc {
        font-size: 18px;
    }
}

.faq-bot-section {
    width: 100%;
    background: #ffffff;
    color: #333;
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
}

.faq-bot-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Bot Image */
.faq-bot-left {
    flex: 1;
    text-align: center;
    animation: fadeInLeft 1.5s ease;
}

.faq-bot-image {
    max-width: 400px;
    width: 100%;
    animation: botFloat 3.5s ease-in-out infinite;
}

@keyframes botFloat {
    0% {
        transform: translateY(0);
    }

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

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

/* Right Content */
.faq-bot-right {
    flex: 1;
    padding-left: 60px;
    animation: fadeInRight 1.5s ease;
}

.faq-bot-title {
    color: #d61a8c;
    font-size: 56px;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 800;
}

.faq-bot-search input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #d61a8c;
    border-radius: 7px;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.faq-bot-search input:focus {
    box-shadow: 0 0 10px rgba(214, 26, 140, 0.3);
}

/* Buttons */
.faq-bot-buttons {
    margin-top: 25px;
    margin-bottom: 30px;
}

.faq-bot-btn {
    background-color: white;
    border: none;
    color: #d61a8c;
    padding: 10px 25px;
    border-radius: 10px;
    border: 2px solid #d61a8c;
    font-weight: 500;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.faq-bot-btn:hover {
    background-color: #C8036F;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 61, 173, 0.4);
}

/* Accordion */
.faq-bot-accordion {
    width: 100%;
    max-width: 500px;
}

.faq-bot-accordion {
    display: none;
    transition: all 0.4s ease;
}

.faq-bot-accordion.active {
    display: block;
}

.faq-bot-btn.active {
    background-color: #C8036F;
    color: white;
}

.faq-bot-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-bot-question {
    padding: 12px 10px;
    font-size: 1rem;
    position: relative;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.faq-bot-question::after {
    content: '+';
    position: absolute;
    right: 10px;
    font-weight: bold;
    color: #d61a8c;
    transition: transform 0.3s;
}

.faq-bot-item.active .faq-bot-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-bot-answer {
    max-height: 0;
    overflow: hidden;
    color: #555;
    line-height: 1.6;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 10px;
}

.faq-bot-item.active .faq-bot-answer {
    max-height: 200px;
    opacity: 1;
    padding-top: 5px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@media (max-width: 992px) {
    .faq-bot-container {
        flex-direction: column;

    }

    .faq-bot-right {
        padding-left: 0;
        margin-top: 40px;
    }

    .faq-bot-title {
        font-size: 30px;
    }

    .faq-bot-buttons {
        display: flex;
    }

    .faq-bot-btn {
        padding: 10px 14px;
    }


}

@media (max-width: 500px) {
    .faq-bot-title {
        font-size: 26px;
    }

    .faq-bot-section {
        padding: 50px 5%;
    }

}

.fashnow-footer-section {
    width: 100%;
    background: linear-gradient(180deg, #1a0014 0%, #0b0010 100%);
    color: #fff;
    padding: 80px 8% 50px;
    position: relative;
    overflow: hidden;
}

/* Floating gradient circles */
.fashnow-footer-section::before,
.fashnow-footer-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 150, 0.4) 0%, transparent 70%);
    animation: floatCircles 6s ease-in-out infinite;
    z-index: 0;
}

.fashnow-footer-section::before {
    width: 200px;
    height: 200px;
    top: 20%;
    left: -80px;
}

.fashnow-footer-section::after {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -100px;
    animation-delay: 2s;
}

@keyframes floatCircles {

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

    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Top section layout */
.fashnow-footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
    animation: fadeUp 1.5s ease;
    margin-bottom: 50px;
    gap: 20px;
}

.fashnow-footer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.fashnow-footer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 0, 150, 0.3);
}

.fashnow-footer-left {
    flex: 0 0 40%;
    min-width: 300px;
}

.fashnow-footer-right {
    flex: 0 0 58%;
    min-width: 300px;
}

.fashnow-footer-box h3 {
    color: #ff2c97;
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 28px;
}

.fashnow-footer-box h4 {
    color: #ff2c97;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 22px;
}

.fashnow-footer-box p,
.fashnow-footer-box li {
    color: #ddd;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.fashnow-footer-box a {
    color: #fff;
    text-decoration: none;
}

.fashnow-footer-box a:hover {
    color: #ff2c97;
    text-decoration: underline;
}

/* Bottom section */
.fashnow-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease;
}

.fashnow-footer-left-bottom {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 20px;
}

.fashnow-footer-logo img {
    max-width: 230px;
    width: 100%;
    border-radius: 25%;
    margin-bottom: 15px;
}

.fashnow-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 40px;
}

.fashnow-footer-links li {
    margin: 5px 0;
}

.fashnow-footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.fashnow-footer-links a:hover {
    color: #ff2c97;
}

.fashnow-footer-right-bottom {
    flex: 1;
    min-width: 300px;
    text-align: left;
    justify-items: center;
}

.fashnow-footer-right-bottom h5 {
    color: #ff2c97;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 32px;
}

.fashnow-footer-right-bottom img {
    width: 88px;
    margin: 20px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fashnow-footer-apps img {
    width: 155px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.fashnow-footer-apps img:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ✅ Responsive Fix */
@media (max-width: 992px) {
    .fashnow-footer-top {
        flex-direction: column;
    }

    .fashnow-footer-left,
    .fashnow-footer-right {
        flex: 100%;
    }

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

    .fashnow-footer-left-bottom {
        flex-direction: column;
        align-items: start;
        text-align: center;
    }

    .fashnow-footer-right-bottom {
        text-align: center;
    }

    .fashnow-footer-right-bottom h5 {
        font-size: 26px;
    }

    .fashnow-footer-links {
        text-align: start;
    }

    .fashnow-footer-right .row .col-md-6 {
        margin-top: 20px;
    }
}

/* ✅ Mobile Fix */
@media (max-width: 576px) {

    .fashnow-footer-box h3 {
        font-size: 22px;
    }

    .fashnow-footer-right-bottom h5 {
        font-size: 24px;
    }

    .fashnow-footer-apps img {
        width: 130px;
    }

    .fashnow-footer-logo img {
        max-width: 200px;
    }
}



.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745 !important;
    /* green */
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2000;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 3000;
}

.confetti {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #f2b705;
    animation: confetti-fall 4s linear forwards;
    opacity: 0.9;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

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

.popup-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 18px;
    color: #000;
}

.hidden {
    display: none;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.error {
    border: 1px solid red;
}

.category-option {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ccc;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
}

.category-option.selected {
    background-color: #007bff;
    color: #fff;
}

.password-toggle {
    cursor: pointer;
    margin-left: -25px;
    position: relative;
    top: -30px;
    float: right;
}

.success-box h2 {
    color: green;
}

/* === General Styles === */
sup {
    color: red;
    font-size: 13px;
    padding-left: 3px;
}

/* === Popup Overlay === */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

/* === Popup Box === */
.popup-box {
    background: #fff;
    max-width: 800px;
    width: 100%;
    max-height: 95vh;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

/* Scrollbar */
.popup-box::-webkit-scrollbar {
    width: 8px;
}

.popup-box::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
}

.popup-box::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* === Close Button === */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* === Form Sections === */
.form-section.hidden {
    display: none;
}

.form-section.active {
    display: block;
}

/* === Form Grid === */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Full Width Grid Item */
.full-width {
    grid-column: span 2;
}

/* === Form Group === */
.form-group {
    position: relative;
}

/* Inputs and Textareas */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background: transparent;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #aa0365;
}

/* Floating Labels */
.form-group label {
    padding: 0 5px;
    color: black;
    font-size: 18px;
    pointer-events: none;
    transition: 0.3s ease;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:not([value=""])+label {
    top: -10px;
    left: 8px;
    font-size: 12px;
    color: #aa0365;
}

.form-group-file {
    position: relative;
}

.form-group-file label {
    position: absolute;
    top: -10px;
    left: 8px;
    font-size: 12px;
    color: #aa0365;
    background-color: white;

}

.form-group-file input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background: transparent;
    outline: none;
    transition: 0.3s;
}

.form-group-file input:focus {
    border-color: #aa0365;
}

/* File Labels */
.file-label {
    position: static !important;
    font-size: 14px;
    color: #444;
    margin-top: 6px;
    display: block;
}

/* === Password Group === */
.password-group {
    position: relative;
}

.password-group input {
    padding-right: 35px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.password-toggle:hover {
    color: #000;
}

/* === Category Options === */
.category-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.category-option {
    padding: 5px 12px;
    border: 2px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    user-select: none;
}

.category-option:hover {
    border-color: #aa0365;
    color: #aa0365;
}

.category-option.selected {
    background: linear-gradient(90deg, #aa0365, #340536);
    border-color: #aa0365;
    color: #fff;
}

/* === Form Actions === */
.form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 10px;
}

.form-actions button {
    flex: 1;
    max-width: 180px;
    padding: 12px 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #aa0365, #340536);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.form-actions button:hover {
    transform: scale(1.05);
}

/* === Error Highlight === */
.error {
    border-color: red !important;
}

/* === Section Heading === */
.form-section-heading {
    text-align: left;
    background: linear-gradient(90deg, #f20181, #40053b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === Responsive === */

/* Tablets */
@media (max-width: 992px) {
    .popup-box {
        max-width: 95%;
        padding: 20px;
    }

    .form-grid {
        gap: 15px;
    }

    .full-width {
        grid-column: span 1;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .form-section h2{
         font-size: 18px;
         width: 80%;
    }
    .form-group input,.form-group-file input{
        margin-bottom: 10px;
    }
    .popup-overlay {
        padding: 10px;
    }

    .popup-box {
        width: 100%;
        max-height: 95vh;
        padding: 15px;
        border-radius: 8px;
    }

    /* Single column layout */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .form-grid>* {
        grid-column: span 1 !important;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions button {
        width: 100%;
    }

    .form-group label {
        font-size: 14px;
    }
}

.popup-overlay.hidden {
    display: none;
}