:root {
    --primary: #0e854d;
    --primary-light: #16a34a;
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
}

html,
body {
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;

    background: rgba(255, 255, 255);
    /*     backdrop-filter: blur(12px); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* =========================
   ON SCROLL (GLASS EFFECT)
========================= */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================
   MAIN LAYOUT
========================= */
.nav-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* =========================
   LOGO
========================= */
.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
}

/* =========================
   RIGHT SIDE (NAV + BUTTON)
========================= */
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

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

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

/* BUTTON */
.nav-btn {
    background: var(--primary);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-1px);
    background: var(--primary-light);
}

/* =========================
   MOBILE MENU ICON
========================= */
.menu-toggle {
    display: none;
    font-size: 1.7rem;
    cursor: pointer;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 0 20px;
    }
}


/* SECTIONS */
.section {
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: auto;
}

/* =========================
   HERO (BASE - unchanged)
========================= */
.hero {
    position: relative;
    height: 95vh;
    background: url("../image/background.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    padding: 80px;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.6));
}

/* CONTENT */
.hero-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
    margin-top: 80px;
}

/* TITLE */
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero h1 span {
    color: #0e854d;
}

/* TEXT */
.hero p {
    margin: 20px 0;
    color: #e5e7eb;
    font-size: 1.1rem;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {

    .hero {
        padding: 60px 20px;
        height: auto;
        min-height: 85vh;
    }

    .hero-content {
        margin-top: 60px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

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

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

    .hero {
        padding: 40px 20px;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .hero-content {
        margin-top: 40px;
    }

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

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

    /* FLEX BUTTONS (NO GRID) */
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .hero-buttons button,
    .hero-buttons a {
        flex: 1 1 120px;
        max-width: 180px;
    }

    /* STATS INLINE + CENTERED */
    .hero-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        text-align: center;
    }
}

/* =========================
   VERY SMALL DEVICES (≤ 300px)
========================= */
@media (max-width: 300px) {

    .hero {
        padding: 30px 12px;
        min-height: 80vh;
        text-align: center;
    }

    .hero-content {
        margin-top: 30px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.85rem;
        margin: 15px 0;
    }

    /* STILL FLEX (NO GRID) */
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .hero-buttons button,
    .hero-buttons a {
        flex: 1 1 100px;
        max-width: 140px;
        padding: 10px;
        font-size: 0.8rem;
    }

    /* STATS KEEP STRUCTURE */
    .hero-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        text-align: center;
    }

    .hero-stats strong {
        font-size: 1.1rem;
    }

    .hero-stats span {
        font-size: 0.7rem;
    }
}

.primary {
    background: #0e854d;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
}

.secondary {
    border: 1px solid white;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    background: transparent;
}

/* STATS */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stats strong {
    font-size: 1.5rem;
}

.hero-stats span {
    display: block;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* BUTTONS */
button {
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

/* =========================
   GRID
========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding: 0 80px;
}

/* =========================
   CARD
========================= */
.card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    text-align: left;
}

/* HOVER: BORDER HIGHLIGHT */
.card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* =========================
   ICON (TOP LEFT BIG)
========================= */
.card i {
    width: 60px;
    height: 60px;
    background: rgba(14, 133, 77, 0.1);
    /* soft primary */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

/* =========================
   TEXT
========================= */
.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }
}

/* =========================
   MOBILE (FORCE 2 COLUMNS)
========================= */
@media (max-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 5px;
        gap: 12px;
    }

    .card {
        padding: 20px;
    }

    .card i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .card h3 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.85rem;
    }
}

/* =========================
   VERY SMALL DEVICES (≤ 300px)
========================= */
@media (max-width: 300px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 5px;
    }

    .card {
        padding: 15px;
    }

    .card i {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .card h3 {
        font-size: 0.9rem;
    }

    .card p {
        font-size: 0.75rem;
    }
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section p {
    color: var(--muted);
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}

.section h2 span {
    color: var(--primary);
}

/* TABLET */
@media (max-width: 900px) {
    .section h2 {
        font-size: 2.4rem;
    }

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

/* MOBILE */
@media (max-width: 600px) {
    .section h2 {
        font-size: 2rem;
    }

    .section p {
        font-size: 0.9rem;
    }
}

/* VERY SMALL */
@media (max-width: 300px) {
    .section h2 {
        font-size: 1.6rem;
    }

    .section p {
        font-size: 0.8rem;
    }
}





/* DARK SECTION */
.dark {
    background: #0f172a;
    color: white;
    padding: 40px 80px;
}

/* =========================
   STEPS GRID
========================= */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* =========================
   STEP CARD
========================= */
.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: all 0.25s ease;
    position: relative;
}

/* HOVER */
.step:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

/* =========================
   STEP NUMBER
========================= */
.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.9;
}

/* =========================
   TEXT
========================= */
.step h3 {
    font-size: 1.1rem;
    color: white;
    line-height: 1.4;
}

/* TABLET */
@media (max-width: 900px) {
    .dark {
        background: #0f172a;
        color: white;
        padding: 10px;
    }

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

/* MOBILE */
@media (max-width: 600px) {
    .dark {
        background: #0f172a;
        color: white;
        padding: 30px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .step {
        padding: 20px;
    }

    .step-number {
        font-size: 1.6rem;
    }

    .step h3 {
        font-size: 0.95rem;
    }
}

/* VERY SMALL */
@media (max-width: 300px) {
    .dark {
        background: #0f172a;
        color: white;
        padding: 30px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .step {
        padding: 15px;
    }

    .step-number {
        font-size: 1.3rem;
    }

    .step h3 {
        font-size: 0.85rem;
    }
}

.step::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.4;
}



/* /////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////// */

/* =========================
   SECTION WRAPPER
========================= */
.vendors {
    padding: 80px 20px;
    background: var(--bg);
    text-align: left;
}

/* =========================
   SPLIT LAYOUT (FIXED)
========================= */
.split {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* =========================
   LEFT CONTENT
========================= */
.vendor-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 15px;
    color: var(--text);
}

.vendor-content h2 span {
    color: var(--primary);
}

.vendor-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 480px;
}

/* =========================
   LIST STYLE
========================= */
/* =========================
   VENDOR LIST (MODERN CARD STYLE)
========================= */
.vendor-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 18px;

    text-align: left;
}

/* ITEM */
.vendor-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* ICON BOX */
.icon-box {
    min-width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(14, 133, 77, 0.12);
    /* primary transparent */
    border: 1px solid rgba(14, 133, 77, 0.2);
}

/* ICON */
.icon-box i {
    font-size: 1.3rem;
    color: var(--primary);
}

/* TEXT BLOCK */
.item-text {
    text-align: left;
}

/* TITLE */
.item-text h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

/* DESCRIPTION */
.item-text p {
    margin: 5px 0 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 500px;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .vendor-item {
        gap: 12px;
    }

    .icon-box {
        min-width: 40px;
        height: 40px;
    }

    .item-text h4 {
        font-size: 1rem;
    }

    .item-text p {
        font-size: 0.88rem;
    }
}

/* =========================
   IMAGE WRAPPER
========================= */
.vendor-image {
    position: relative;
    width: 100%;
}

/* image styling */
.vendor-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   FLOATING CARD (OVERLAP STYLE)
========================= */
.vendor-card {
    position: absolute;

    /* makes it overlap image + outside */
    bottom: -25px;
    left: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);

    color: var(--text);
    font-size: 0.95rem;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* icon inside card */
.vendor-card i {
    font-size: 1.4rem;
    color: var(--primary);
}

/* emphasize number */
.vendor-card strong {
    color: var(--primary);
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
    }

    .vendor-content {
        text-align: left;
    }

    .vendor-image img {
        height: 380px;
    }

    .vendor-card {
        left: 15px;
        bottom: -20px;
    }
}

/* =========================
   MOBILE SMALL DEVICES
========================= */
@media (max-width: 480px) {
    .vendors {
        padding: 60px 15px;
    }

    .vendor-image img {
        height: 300px;
    }

    .vendor-card {
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: -18px;

        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
    }

    .vendor-content p {
        max-width: 100%;
    }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////// */

.faq-section {
    background: var(--bg);
    padding: 60px 20px;
}

.faq-title {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: var(--muted);
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-item.active {
    border-color: var(--primary-light);
}

.icon {
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}




/* STATS */
.stat h3 {
    font-size: 2rem;
    color: var(--primary);
}






.footer {
    background: var(--text);
    color: #e2e8f0;
    padding: 60px 20px 20px;
}

/* =========================
   COLUMN SEPARATORS (DESKTOP)
========================= */
.footer-col {
    position: relative;
    padding-left: 20px;
}

/* add border to all except first column */
.footer-col:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* was 40px */
}

/* Brand */
.footer-brand h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Links */
.footer-col h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

/* Socials */
.footer-socials {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Contact icons */
.footer-col p {
    color: #94a3b8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 0 90px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom p a {
    text-decoration: none;
    color: var(--primary);
}

.footer-bottom .privacy-terms .privacy {
    margin-right: 15px;
    color: #94a3b8;
}

.footer-bottom .privacy-terms .terms {
    margin-left: 15px;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        padding: 15px;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        padding: 15px;
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
    .footer-col {
        border-left: none;
        padding-left: 0;
        padding-top: 15px;
    }

    .footer-col:not(:first-child) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 500px) {
    .footer-col {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 15px;
    }

    .footer-col:first-child {
        border-top: none;
    }
}









/* =========================
   CTA SECTION (DARK → PRIMARY GRADIENT)
========================= */
.cta {
    position: relative;
    padding: 90px 20px;

    background: linear-gradient(135deg,
            var(--text),
            #0c2f22,
            var(--primary));

    color: white;
}

.cta::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 12px);

    pointer-events: none;
}

/* =========================
   CONTAINER
========================= */
.cta-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* =========================
   TEXT
========================= */
.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    max-width: 600px;
    margin: auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================
   CTA BUTTONS
========================= */
.cta-actions {
    margin-top: 25px;

    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 12px;
}

/* BUTTON BASE */
.cta-actions a {
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.25s ease;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* SECONDARY BUTTON */
.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* =========================
   STORE BUTTONS
========================= */
.store-list {
    margin-top: 30px;

    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 14px;

    list-style: none;
    padding: 0;
}

.store-list img {
    width: 95%;
    max-width: 100%;
    height: auto;
    transition: 0.25s ease;
    border-radius: 8px;
}

.store-list img:hover {
    transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
    .cta {
        padding: 70px 20px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

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

    .store-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

/* =========================
   VERY SMALL DEVICES
========================= */
@media (max-width: 360px) {

    .cta-actions,
    .store-list {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}




/* =========================
   PAGE (CENTERED LAYOUT)
========================= */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* your gradient (dark + primary) */
    background: linear-gradient(135deg,
            var(--text),
            #081c15,
            var(--primary));

    position: relative;
    padding: 20px;
}

.auth-page .backhome {
    text-decoration: none;
    color: var(--primary);
    margin-bottom: 25px;
}

/* subtle pattern overlay (like your image) */
.auth-page::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 12px);

    pointer-events: none;
}

.auth-card {
    width: 100%;
    max-width: 380px;

    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(14px);

    border-radius: 18px;
    padding: 35px 25px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

    color: white;
    position: relative;
    z-index: 2;
}

.auth-icon {
    width: 60px;
    height: 60px;

    background: rgba(14, 133, 78, 0.379);
    border: 1px solid var(--primary);
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;
}

.auth-icon i {
    color: var(--primary);
    font-size: 1.5rem;
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 5px;
}

.auth-sub {
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group input {
    width: 100%;
    padding: 13px 12px 13px 40px;

    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;

    color: white;
    font-size: 0.9rem;

    outline: none;
    transition: 0.25s;
}

.input-group label {
    color: #777;
    font-size: 0.9rem;
}

/* icons */
.input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    /* transform: translateY(-50%); */
    color: #777;
}

/* focus */
.input-group input:focus {
    border-color: var(--primary);
    background: #111;
}

/* placeholder */
.input-group input::placeholder {
    color: #777;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 0.8rem;
    margin-bottom: 18px;
}

.auth-options label {
    color: #aaa;
}

.auth-options a {
    color: var(--primary);
    text-decoration: none;
}

.btn-auth {
    width: 100%;
    padding: 12px;

    background: var(--primary);
    border: none;
    border-radius: 8px;

    color: white;
    font-weight: 600;
    cursor: pointer;

    transition: 0.25s;
}

.btn-auth:hover {
    background: var(--primary-light);
}

.auth-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
}






/* =========================
   MOBILE MENU DRAWER
========================= */
/* when active */
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;

    background: var(--card);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);

    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 20px;

    transition: 0.3s ease;
    z-index: 2000;
}

.mobile-menu.active {
    right: 0;
}

/* header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dadada;
}

.mobile-menu-header span {
    font-weight: bold;
    color: var(--primary);
}

/* links */
.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.mobile-links a {
    text-decoration: none;
    color: var(--text);
}

/* button */
.mobile-btn {
    margin-top: auto;
    text-align: center;
    padding: 12px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    text-decoration: none;
}

/* =========================
   OVERLAY BACKDROP
========================= */
.menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
    z-index: 1500;
}


#visualizer {
    width: 100%;
    margin-top: 15px;
}

.alert {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 16px;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 500;

    animation: fadeIn .3s ease;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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