:root {
    --primary: #ff6b00;
    --primary-dark: #e85d00;
    --secondary: #082a5e;
    --secondary-light: #123d78;

    --orange-light: #fff2e7;
    --blue-light: #eef5ff;

    --background: #f7f9fc;
    --white: #ffffff;

    --text: #273449;
    --muted: #718096;

    --border: #e7ebf2;

    --shadow:
        0 15px 40px rgba(8, 42, 94, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}


/* =========================
   NAVBAR
========================= */

/* =========================
   HEADER / NAVBAR
========================= */

.site-header {
    position: relative;
    z-index: 1000;
}


.qwk-navbar {

    min-height: 92px;

    padding: 10px 0;

    background: rgba(255,255,255,.97) !important;

    border-bottom: 1px solid #edf0f5;

    box-shadow:
        0 4px 18px rgba(8,42,94,.05);

    backdrop-filter: blur(12px);

}


/* =========================
   QWKCART LOGO
========================= */

.qwk-brand {

    display: flex;

    align-items: center;

    padding: 0;

}


.qwk-logo {

    width: 180px;

    height: auto;

    display: block;

    object-fit: contain;

    transition: .25s ease;

}


.qwk-brand:hover .qwk-logo {

    transform: scale(1.02);

}


/* =========================
   NAVBAR ACTIONS
========================= */

.navbar-actions {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 30px;

}


/* =========================
   BECOME SELLER
========================= */

.seller-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--secondary);

    text-decoration: none;

    font-size: 22px;

    font-weight: 600;

    padding: 10px 5px;

    transition: .25s ease;

}


.seller-link i {

    color: var(--primary);

    font-size: 24px;

}


.seller-link:hover {

    color: var(--primary);

}


/* =========================
   CALL
========================= */

.call-link {

    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: var(--secondary);

}


.call-icon {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--orange-light);

    color: var(--primary);

    font-size: 17px;

    transition: .25s ease;

}


.call-link:hover .call-icon {

    background: var(--primary);

    color: #fff;

}


.call-details {

    display: flex;

    flex-direction: column;

    line-height: 1.2;

}


.call-details small {

    color: var(--muted);

    font-size: 18px;

    margin-bottom: 3px;

}


.call-details strong {

    color: var(--secondary);

    font-size: 15px;

    letter-spacing: .3px;

}


/* =========================
   MOBILE TOGGLE
========================= */

.navbar-toggler {

    border: 1px solid #dfe4ec;

    border-radius: 10px;

    padding: 7px 10px;

}


.navbar-toggler:focus {

    box-shadow:
        0 0 0 3px rgba(255,107,0,.12);

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .qwk-navbar {

        min-height: 80px;

    }


    .qwk-logo {

        width: 190px;

    }


    .navbar-actions {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

        padding: 20px 0 10px;

    }


    .seller-link {

        padding-left: 0;

    }

}


@media (max-width: 576px) {

    .qwk-navbar {

        min-height: 72px;

        padding: 8px 0;

    }


    .qwk-logo {

        width: 165px;

    }


    .navbar-actions {

        gap: 12px;

    }


    .call-details strong {

        font-size: 14px;

    }

}

/* =========================
   HERO
========================= */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255,107,0,.10),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f9ff 100%
        );

    display: flex;
    align-items: center;
}

.min-vh-75 {
    min-height: 680px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-one {
    width: 420px;
    height: 420px;

    background: rgba(255,107,0,.06);

    right: -180px;
    top: -150px;
}

.hero-shape-two {
    width: 250px;
    height: 250px;

    background: rgba(8,42,94,.05);

    left: -130px;
    bottom: -120px;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 18px;

    border-radius: 50px;

    background: var(--orange-light);
    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .4px;

    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.12;
    font-weight: 800;

    color: var(--secondary);

    max-width: 760px;
}

.hero-title span {
    color: var(--primary);
    display: block;
}

.hero-tagline {
    font-size: 28px;
    color: var(--secondary);

    margin-top: 25px;
    margin-bottom: 15px;

    font-weight: 500;
}

.hero-tagline strong {
    color: var(--primary);
}

.hero-description {
    max-width: 650px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-qwk {
    background: var(--primary);
    color: #fff;

    border: none;

    padding: 14px 25px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;
}

.btn-qwk:hover {
    background: var(--primary-dark);
    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(255,107,0,.25);
}

.btn-outline-qwk {
    border: 1px solid var(--secondary);

    color: var(--secondary);

    padding: 14px 22px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;
}

.btn-outline-qwk:hover {
    background: var(--secondary);
    color: #fff;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 13px;
}

.hero-trust i {
    color: var(--primary);
    margin-right: 5px;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;

    width: 420px;
    height: 470px;

    margin: auto;
}

.hero-cart {
    position: absolute;

    width: 270px;
    height: 270px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--secondary),
            #16447e
        );

    top: 85px;
    left: 75px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
        0 30px 60px rgba(8,42,94,.20);
}

.cart-circle {
    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 75px;

    box-shadow:
        0 15px 30px rgba(0,0,0,.15);
}

.speed-line {
    position: absolute;

    height: 5px;

    border-radius: 10px;

    background: var(--primary);

    right: -65px;
}

.line-one {
    width: 80px;
    top: 75px;
}

.line-two {
    width: 50px;
    top: 95px;
    right: -45px;
}

.line-three {
    width: 35px;
    top: 115px;
    right: -30px;
}

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 17px;

    background: rgba(255,255,255,.95);

    border-radius: 14px;

    box-shadow: var(--shadow);

    font-size: 13px;
    font-weight: 600;

    z-index: 3;
}

.floating-card i {
    color: var(--primary);
    font-size: 20px;
}

.card-one {
    top: 40px;
    left: 10px;
    animation: floating 4s infinite ease-in-out;
}

.card-two {
    right: 0;
    top: 200px;
    animation: floating 4s infinite ease-in-out 1s;
}

.card-three {
    bottom: 70px;
    left: 5px;
    animation: floating 4s infinite ease-in-out 2s;
}

.location-bubble {
    position: absolute;

    bottom: 20px;
    right: 15px;

    background: #fff;

    border-radius: 15px;

    padding: 12px 17px;

    display: flex;
    align-items: center;
    gap: 10px;

    box-shadow: var(--shadow);

    z-index: 4;
}

.location-bubble > i {
    font-size: 25px;
    color: var(--primary);
}

.location-bubble strong,
.location-bubble small {
    display: block;
}

.location-bubble strong {
    color: var(--secondary);
}

.location-bubble small {
    color: var(--muted);
}


/* =========================
   SECTION
========================= */

.categories-section,
.future-section,
.why-section,
.notify-section {
    padding: 100px 0;
}

.categories-section {
    background: #fff;
}

.section-heading {
    max-width: 700px;
    margin: auto;
}

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.section-heading h2,
.why-section h2 {
    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;

    color: var(--secondary);

    font-weight: 750;
}

.section-heading h2 span,
.why-section h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--muted);

    line-height: 1.7;

    margin-top: 15px;
}


/* =========================
   CATEGORY CARDS
========================= */

.category-card {
    position: relative;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 20px;

    height: 100%;

    overflow: hidden;

    transition: .35s;

    background: #fff;
}

.category-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,107,0,.25);

    box-shadow: var(--shadow);
}

.category-icon {
    width: 65px;
    height: 65px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    margin-bottom: 22px;
}

.category-icon.books {
    background: #fff0e7;
    color: #ff6b00;
}

.category-icon.study {
    background: #eef5ff;
    color: #2468c4;
}

.category-icon.gifts {
    background: #fff0f3;
    color: #e5486e;
}

.category-icon.craft {
    background: #f3efff;
    color: #7b50d5;
}

.category-card h4 {
    color: var(--secondary);
    font-weight: 700;
}

.category-card p {
    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}

.category-number {
    position: absolute;

    right: 20px;
    bottom: 15px;

    font-size: 45px;

    font-weight: 800;

    color: #f2f4f8;
}


/* =========================
   FUTURE SECTION
========================= */

.future-section {
    background: var(--background);
}

.future-card {
    background: #fff;

    border: 1px solid var(--border);

    border-radius: 18px;

    min-height: 150px;

    padding: 22px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    transition: .3s;
}

.future-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.future-card i {
    font-size: 30px;
    color: var(--secondary);

    margin-bottom: 10px;
}

.future-card span {
    font-weight: 600;
    color: var(--secondary);
}

.future-card small {
    margin-top: 5px;

    font-size: 10px;

    color: var(--primary);

    text-transform: uppercase;

    font-weight: 700;
}


/* =========================
   WHY SECTION
========================= */

.why-section {
    background: #fff;
}

.why-description {
    color: var(--muted);

    line-height: 1.8;

    margin-top: 20px;

    max-width: 500px;
}

.why-card {
    height: 100%;

    padding: 25px;

    border-radius: 18px;

    background: var(--background);

    display: flex;

    gap: 17px;

    transition: .3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-icon {
    min-width: 48px;
    height: 48px;

    border-radius: 14px;

    background: var(--orange-light);

    color: var(--primary);

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 22px;
}

.why-card h5 {
    color: var(--secondary);

    font-size: 16px;

    margin-bottom: 7px;
}

.why-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;

    margin: 0;
}


/* =========================
   COUNTDOWN
========================= */

.countdown-section {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            var(--secondary),
            #0d3d76
        );
}

.countdown-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.countdown-content {
    max-width: 540px;
}

.countdown-content .section-label {
    color: #ffab6b;
}

.countdown-content h2 {
    color: #fff;

    font-size: 42px;

    font-weight: 750;
}

.countdown-content h2 span {
    color: #ff8b3d;
}

.countdown-content p {
    color: rgba(255,255,255,.7);

    line-height: 1.7;
}

.countdown {
    display: flex;
    gap: 12px;
}

.time-box {
    min-width: 90px;

    padding: 18px 12px;

    text-align: center;

    border-radius: 15px;

    background: rgba(255,255,255,.1);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(10px);
}

.time-box strong {
    display: block;

    color: #fff;

    font-size: 30px;

    font-weight: 700;
}

.time-box span {
    color: rgba(255,255,255,.65);

    font-size: 10px;

    text-transform: uppercase;
}


/* =========================
   NOTIFY
========================= */

.notify-section {
    background: var(--background);
}

.notify-box {
    max-width: 800px;

    margin: auto;

    padding: 65px 30px;

    background: #fff;

    border-radius: 28px;

    box-shadow: var(--shadow);
}

.notify-icon {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    margin: 0 auto 20px;

    background: var(--orange-light);

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
}

.notify-box h2 {
    color: var(--secondary);

    font-size: 34px;

    font-weight: 750;
}

.notify-box p {
    color: var(--muted);
}

.notify-form {
    max-width: 550px;

    margin: 25px auto 12px;
}

.notify-form .form-control {
    height: 55px;

    border-radius: 30px 0 0 30px;

    border: 1px solid var(--border);

    padding-left: 22px;

    box-shadow: none;
}

.notify-form .btn {
    border-radius: 0 30px 30px 0;
}

.notify-box small {
    color: #a0a7b3;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding: 90px 0;

    background: #fff;
}

.qwk-logo-text {
    font-size: 48px;

    font-weight: 800;

    color: var(--secondary);
}

.qwk-logo-text span {
    color: var(--primary);
}

.final-tagline {
    color: var(--muted);

    margin: 5px 0 25px;
}

.final-cta h2 {
    font-size: 40px;

    font-weight: 750;

    color: var(--secondary);
}

.final-cta h2 span {
    color: var(--primary);
}

.final-cta p:last-child {
    color: var(--muted);
}


/* =========================
   FOOTER
========================= */

.footer {
    background: var(--secondary);

    color: rgba(255,255,255,.75);

    padding: 30px 0;

    text-align: center;

    font-size: 13px;
}

.footer p {
    margin: 0;
}


/* =========================
   ANIMATION
========================= */

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .hero-section {
        padding: 70px 0;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .countdown-box {
        flex-direction: column;

        text-align: center;
    }

    .countdown {
        justify-content: center;
        flex-wrap: wrap;
    }

}

@media (max-width: 576px) {

    .hero-section {
        min-height: auto;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .hero-visual {
        width: 320px;
        height: 400px;
    }

    .hero-cart {
        width: 220px;
        height: 220px;

        left: 50px;
    }

    .cart-circle {
        width: 120px;
        height: 120px;

        font-size: 60px;
    }

    .card-one {
        left: 0;
    }

    .card-two {
        right: -5px;
    }

    .countdown-content h2 {
        font-size: 32px;
    }

    .time-box {
        min-width: 70px;
    }

    .time-box strong {
        font-size: 24px;
    }

    .notify-box {
        padding: 45px 20px;
    }

    .notify-form .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .notify-form .form-control,
    .notify-form .btn {
        border-radius: 30px;
        width: 100%;
    }

    .final-cta h2 {
        font-size: 30px;
    }

.hero-countdown {

    margin-top: 25px;

    padding: 15px;

}

.countdown-heading {

    margin-bottom: 12px;

}

.hero-countdown-timer {

    gap: 6px;

}

.hero-countdown-timer .time-box {

    min-width: 0;

    padding: 9px 5px;

}

.hero-countdown-timer .time-box strong {

    font-size: 20px;

}

.hero-countdown-timer .time-box span {

    font-size: 8px;

}

@media (max-width: 576px) {

    .hero-right {

        margin-top: 45px;

    }

    .hero-countdown {

        max-width: 320px;

        padding: 15px;

    }

    .hero-countdown-timer {

        gap: 5px;

    }

    .hero-countdown-timer .time-box {

        padding: 9px 4px;

    }

    .hero-countdown-timer .time-box strong {

        font-size: 20px;

    }

    .hero-countdown-timer .time-box span {

        font-size: 8px;

    }

}

}

/* =========================
   HERO COUNTDOWN
========================= */

.hero-countdown {

    margin-top: 32px;

    max-width: 610px;

    padding: 18px 20px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(8, 42, 94, 0.08);

    box-shadow:
        0 12px 35px rgba(8, 42, 94, 0.10);

    backdrop-filter: blur(12px);

}

.countdown-heading {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

}

.countdown-heading > i {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--orange-light);

    color: var(--primary);

    font-size: 19px;

}

.countdown-heading strong {

    display: block;

    color: var(--secondary);

    font-size: 26px;

    font-weight: 700;

}

.countdown-heading small {

    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-top: 2px;

}


/* Timer */

.hero-countdown-timer {

    display: flex;

    gap: 10px;

    margin: 0;

}


.hero-countdown-timer .time-box {

    flex: 1;

    min-width: 70px;

    padding: 10px 8px;

    border-radius: 12px;

    background: var(--secondary);

    border: none;

    box-shadow: none;

}


.hero-countdown-timer .time-box strong {

    color: #fff;

    font-size: 24px;

    line-height: 1.1;

}


.hero-countdown-timer .time-box span {

    color: rgba(255,255,255,.65);

    font-size: 9px;

    margin-top: 3px;

}

/* =========================
   HERO RIGHT SIDE
========================= */

.hero-right {

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

}


/* =========================
   HERO COUNTDOWN
========================= */

.hero-countdown {

    width: 100%;

    max-width: 430px;

    margin: -10px auto 0;

    padding: 18px 20px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(8, 42, 94, 0.08);

    box-shadow:
        0 15px 40px rgba(8, 42, 94, 0.12);

    backdrop-filter: blur(12px);

    position: relative;

    z-index: 10;

}


/* Countdown heading */

.countdown-heading {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

}


.countdown-heading > i {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--orange-light);

    color: var(--primary);

    font-size: 19px;

}


.countdown-heading strong {

    display: block;

    color: var(--secondary);

    font-size: 14px;

    font-weight: 700;

}


.countdown-heading small {

    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-top: 2px;

}


/* Timer */

.hero-countdown-timer {

    display: flex;

    gap: 8px;

    margin: 0;

}


.hero-countdown-timer .time-box {

    flex: 1;

    min-width: 0;

    padding: 11px 7px;

    border-radius: 12px;

    background: var(--secondary);

    border: none;

    box-shadow: none;

}


.hero-countdown-timer .time-box strong {

    display: block;

    color: #fff;

    font-size: 24px;

    line-height: 1.1;

}


.hero-countdown-timer .time-box span {

    display: block;

    color: rgba(255,255,255,.65);

    font-size: 9px;

    margin-top: 4px;

    text-transform: uppercase;

}