:root {
    --green-deep: #0a2e1a;
    --green-dark: #0d3d20;
    --green-mid: #145e30;
    --green-bright: #1db954;
    --green-neon: #39ff6a;
    --green-lime: #a8ff3e;
    --green-pale: #d4fce6;
    --accent-gold: #c8f500;
    --white: #f5fff8;
    --gray-light: #e8f5ec;
    --text-dim: #8db89a;
    --font-display: 'Bebas Neue', cursive;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--green-deep);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(10, 46, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(57, 255, 106, 0.1);
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
}

.nav-logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-neon);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--green-neon);
    color: var(--green-deep) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 20px rgba(57, 255, 106, 0.3);
}

.nav-cta:hover {
    background: var(--accent-gold) !important;
    box-shadow: 0 0 30px rgba(200, 245, 0, 0.5) !important;
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--green-neon);
    transition: all 0.3s ease;
}

.nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nav-right>a {
    text-decoration: none;
    color: var(--text-dim);
    display: flex;
}

.nav-right>a>svg {
    height: 25px;
    width: 25px;
}

.nav-cart-btn {
    font-weight: bold;
    color: var(--text-dim);
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px;
    cursor: pointer;
}

.nav-cart-btn:hover {
    color: #39ff6a;
    border-color: #39ff6a;
    background-color: rgba(57, 255, 106, 0.05);
}

/* Cart Icon SVG inside button */
.nav-cart-btn svg {
    width: 25px;
    height: 25px;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s ease;
}

.nav-cart-btn:hover svg {
    stroke: #39ff6a;
}

/* Cart Count Badge */
.nav-cart-btn>span {
    color: #0a0a0a;
    background-color: #39ff6a;
    display: flex;
    border-radius: 20px;
    min-width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0 0.35rem;
    transition: all 0.3s ease;
}

.nav-cart-btn:hover>span {
    background-color: #ffffff;
    color: #0a0a0a;
}

/* Optional: Icon-only variant for mobile */
@media (max-width: 768px) {

    .nav-cart-btn .cart-text {
        display: none;
    }

}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(20, 94, 48, 0.4) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(57, 255, 106, 0.08) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(57, 255, 106, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(57, 255, 106, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(57, 255, 106, 0.1);
    border: 1px solid rgba(57, 255, 106, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-neon);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease forwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green-neon);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3)
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 0.3rem;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title .green {
    color: var(--green-neon);
    text-shadow: 0 0 40px rgba(57, 255, 106, 0.4);
}

.hero-title .outline {
    -webkit-text-stroke: 2px var(--green-neon);
    color: transparent;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-dim);
    max-width: 500px;
    line-height: 1.7;
    margin: 1.5rem 0 2.5rem;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
    background: var(--green-neon);
    color: var(--green-deep);
    padding: 0.9rem 2.2rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 30px rgba(57, 255, 106, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(200, 245, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.2rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--green-neon);
    color: var(--green-neon);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    animation: fadeUp 0.8s 0.4s ease both;
}



.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--green-neon);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s 0.3s ease both;
}

.scooter-showcase {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.scooter-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    /* background: radial-gradient(circle, rgb(0 255 63) 0%, transparent 70%); */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1)
    }
}

.scooter-svg-wrap {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }
}

/* ---- SCOOTER SVG ---- */
.scooter-svg {
    width: 100%;
    max-width: 560px;
    filter: drop-shadow(0 20px 60px rgba(57, 255, 106, 0.3));
}

.speed-badge {
    position: absolute;
    top: 10%;
    right: 5%;
    background: rgba(57, 255, 106, 0.15);
    border: 1px solid var(--green-neon);
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s 0.8s ease both;
}

.speed-badge .num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--green-neon);
    line-height: 1;
}

.speed-badge .unit {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.range-badge {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: rgba(10, 46, 26, 0.9);
    border: 1px solid rgba(57, 255, 106, 0.3);
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s 1s ease both;
}

.range-badge .rnum {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent-gold);
    line-height: 1;
}

.range-badge .runit {
    font-size: 0.7rem;
    color: var(--text-dim);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ---- MARQUEE ---- */
.marquee-wrap {
    background: var(--green-neon);
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-deep);
    flex-shrink: 0;
}

.marquee-item span {
    color: rgba(10, 46, 26, 0.5);
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ---- SECTION BASE ---- */
section {
    padding: 6rem 3rem;
}

.section-label {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-neon);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--green-neon);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title .hl {
    color: var(--green-neon);
}

/* ---- ECO SECTION ---- */
.eco-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
    position: relative;
    overflow: hidden;
}

.eco-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(57, 255, 106, 0.08) 0%, transparent 70%);
}

.eco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.eco-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin: 1.5rem 0 2.5rem;
}

.eco-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(57, 255, 106, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--green-pale);
    background: rgba(57, 255, 106, 0.05);
}

.pill-icon {
    font-size: 1rem;
}

.eco-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.eco-card {
    background: rgba(57, 255, 106, 0.05);
    border: 1px solid rgba(57, 255, 106, 0.15);
    border-radius: 8px;
    padding: 1.8rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.eco-card:hover {
    background: rgba(57, 255, 106, 0.1);
    border-color: rgba(57, 255, 106, 0.4);
    transform: translateY(-5px);
}

.eco-icon {
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-self: center;
    background-color: #f5fff8;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.eco-icon>img {
    max-width: 100%;
    max-height: 100%;
}

.eco-card h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-neon);
    margin-bottom: 0.5rem;
}

.eco-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ---- MODELS SECTION ---- */
.models-section {
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

.models-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1300px;
    margin: 0 auto 3.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.model-card {
    background: var(--green-dark);
    border: 1px solid rgba(57, 255, 106, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.model-card:hover {
    border-color: rgba(57, 255, 106, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(57, 255, 106, 0.15);
}

.model-card.featured {
    border-color: rgba(57, 255, 106, 0.4);
    box-shadow: 0 0 40px rgba(57, 255, 106, 0.1);
}

.model-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--green-neon);
    color: var(--green-deep);
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
}

.model-img-wrap {
    background: linear-gradient(135deg, rgba(57, 255, 106, 0.05) 0%, rgba(20, 94, 48, 0.3) 100%);
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.model-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 106, 0.4), transparent);
}

.model-svg {
    height: auto;
    max-width: 100%;
    max-height: 300px;
    z-index: 10;
    filter: drop-shadow(2px 5px 52px #5dec5dba);
}

.model-info {
    padding: 1.8rem;
}

.model-name {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.model-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.model-specs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    text-align: center;
}

.spec-val {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-neon);
    line-height: 1;
}

.spec-key {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.model-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(57, 255, 106, 0.1);
}

.price-tag {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-gold);
}

.price-tag span {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-family: var(--font-body);
}

.btn-sm {
    background: transparent;
    color: var(--green-neon);
    border: 1px solid var(--green-neon);
    padding: 0.6rem 1.2rem;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-sm:hover {
    background: var(--green-neon);
    color: var(--green-deep);
}

/* ---- FEATURES SECTION ---- */
.features-section {
    background: linear-gradient(180deg, var(--green-dark) 0%, var(--green-deep) 100%);
}

.features-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.features-intro {
    max-width: 600px;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(57, 255, 106, 0.1);
    border: 1px solid rgba(57, 255, 106, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.feat-item {
    background: var(--green-dark);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feat-item:hover {
    background: rgba(57, 255, 106, 0.06);
}

.feat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feat-item:hover::before {
    transform: scaleX(1);
}

.feat-icon {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 80px;
    height: 80px;
    background-color: #f5fff8;
    border-radius: 100%;
}

.feat-icon>img {
    max-width: 100%;
    max-height: 100%;
}

.feat-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.7rem;
}

.feat-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ---- DEALERSHIP ---- */
.deal-section {
    background: var(--green-deep);
}

.deal-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.deal-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.deal-map {
    background: rgba(57, 255, 106, 0.05);
    border: 1px solid rgba(57, 255, 106, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.deal-map::before {
    content: 'DEALERSHIP\ANETWORK';
    white-space: pre;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(57, 255, 106, 0.04);
    text-align: right;
    line-height: 1;
}

.city-chip {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    background: rgba(57, 255, 106, 0.08);
    border: 1px solid rgba(57, 255, 106, 0.2);
    border-radius: 6px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s;
}

.city-chip:hover {
    background: rgba(57, 255, 106, 0.15);
    border-color: var(--green-neon);
}

.city-dot {
    width: 8px;
    height: 8px;
    background: var(--green-neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green-neon);
    flex-shrink: 0;
}

.city-info {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-left: auto;
}

.deal-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
}

.deal-nums {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.deal-num-item .big {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--green-neon);
    line-height: 1;
}

.deal-num-item .lbl {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- TESTIMONIALS ---- */
.testi-section {
    background: var(--green-dark);
    overflow: hidden;
}

.testi-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--green-deep);
    border: 1px solid rgba(57, 255, 106, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.testi-card:hover {
    border-color: rgba(57, 255, 106, 0.4);
    transform: translateY(-5px);
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(57, 255, 106, 0.1);
    line-height: 1;
}

.testi-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-mid), var(--green-neon));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--green-deep);
    font-weight: 700;
    flex-shrink: 0;
}

.testi-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.testi-loc {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ---- ABOUT ---- */
.about-section {
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(57, 255, 106, 0.06) 0%, transparent 70%);
}

.about-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .section-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin: 1.5rem 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.val-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: rgba(57, 255, 106, 0.04);
    border: 1px solid rgba(57, 255, 106, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.val-item:hover {
    background: rgba(57, 255, 106, 0.08);
    border-color: rgba(57, 255, 106, 0.3);
}

.val-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
}

.val-icon>img {
    max-width: 100%;
    max-height: 100%;
}

.val-info h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.val-info p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.about-visual {
    position: relative;
    background: linear-gradient(135deg, rgba(57, 255, 106, 0.08) 0%, rgba(10, 46, 26, 0.5) 100%);
    border: 1px solid rgba(57, 255, 106, 0.15);
    border-radius: 16px;
    padding: 3rem;
    overflow: hidden;
}

.about-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(57, 255, 106, 0.1) 0%, transparent 70%);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(57, 255, 106, 0.05);
    border: 1px solid rgba(57, 255, 106, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.team-member:hover {
    border-color: rgba(57, 255, 106, 0.4);
    transform: translateY(-4px);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--green-deep);
    border: 2px solid rgba(57, 255, 106, 0.3);
}

.team-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.team-role {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.2rem;
}

/* ---- CONTACT ---- */
.contact-section {
    background: var(--green-dark);
}

.contact-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info .section-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin: 1.5rem 0 2.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.c-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: rgba(57, 255, 106, 0.05);
    border: 1px solid rgba(57, 255, 106, 0.1);
    border-radius: 8px;
}

.c-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.c-label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-neon);
    margin-bottom: 0.2rem;
}

.c-val {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.contact-form {
    background: rgba(57, 255, 106, 0.03);
    border: 1px solid rgba(57, 255, 106, 0.15);
    border-radius: 16px;
    padding: 3rem;
}

.form-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.8rem;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(57, 255, 106, 0.05);
    border: 1px solid rgba(57, 255, 106, 0.15);
    border-radius: 6px;
    padding: 0.9rem 1.1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green-neon);
    background: rgba(57, 255, 106, 0.08);
}

.form-group select option {
    background: var(--green-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: var(--green-neon);
    color: var(--green-deep);
    padding: 1rem;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(57, 255, 106, 0.3);
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--accent-gold);
    box-shadow: 0 0 40px rgba(200, 245, 0, 0.4);
    transform: translateY(-2px);
}

/* ---- FOOTER ---- */
footer {
    background: #060f0a;
    padding: 5rem 3rem 2rem;
    border-top: 1px solid rgba(57, 255, 106, 0.1);
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: var(--green-neon);
    text-shadow: 0 0 20px rgba(57, 255, 106, 0.3);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(57, 255, 106, 0.08);
    border: 1px solid rgba(57, 255, 106, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--green-neon);
    color: var(--green-deep);
    border-color: var(--green-neon);
}

.footer-col h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--green-neon);
}

.footer-links a::before {
    content: '→';
    font-size: 0.8rem;
    color: var(--green-mid);
}

.newsletter-input-wrap {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    background: rgba(57, 255, 106, 0.05);
    border: 1px solid rgba(57, 255, 106, 0.15);
    border-radius: 4px;
    padding: 0.7rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--green-neon);
}

.newsletter-btn {
    background: var(--green-neon);
    color: var(--green-deep);
    border: none;
    border-radius: 4px;
    padding: 0.7rem 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--accent-gold);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(57, 255, 106, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-copy span {
    color: var(--green-neon);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--green-neon);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    text-decoration: none;
}

/* ---- MOBILE MENU ---- */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 46, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    top: 0px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--green-neon);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-dim);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .models-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-visual {
        order: -1;
    }

    .scooter-showcase {
        max-width: 400px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .eco-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .deal-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

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

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .eco-visual {
        grid-template-columns: 1fr 1fr;
    }

    .eco-card:nth-child(2), .eco-card:nth-child(4) {
        margin-top: 0;
    }

    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .cursor, .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }

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

    .hero-stats {
        gap: 1.5rem;
    }

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

    .deal-nums {
        gap: 1.5rem;
    }
}

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

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .eco-visual {
        grid-template-columns: 1fr;
    }

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

/* ============================================ */
/* UNIVERSAL CART SECTION - VOLTRIDE EV THEME */
/* ============================================ */
/* QUANTITY BUTTON */
.bc-cart-input {
    display: flex;
    gap: 10px;
    border: 1px solid rgba(57, 255, 106, 0.2);
    background: rgba(10, 10, 10, 0.8);
    flex: 1;
    border-radius: 8px;
}

.bc-cart-input>button {
    padding: 8px 20px;
    background: transparent;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #39ff6a;
    border: none;
}

.bc-cart-input>button:hover {
    background: rgba(57, 255, 106, 0.1);
    color: #ffffff;
}

.bc-cart-input>input {
    background: transparent;
    border: 1px solid rgba(57, 255, 106, 0.3);
    color: #39ff6a;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    flex: 1;
    padding: 8px;
}

.bc-cart-input>input:focus {
    outline: none;
    border-color: #39ff6a;
    box-shadow: 0 0 0 2px rgba(57, 255, 106, 0.1);
}

/* Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: #0a0a0a;
    border-left: 1px solid rgba(57, 255, 106, 0.15);
    z-index: 99999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

/* Drawer Header */
.cart-drawer-header {
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(57, 255, 106, 0.15);
}

.cart-drawer-header h2 {
    font-family: var(--font-display, 'Syne', 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.cart-close-btn {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(57, 255, 106, 0.2);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-close-btn:hover {
    background: rgba(57, 255, 106, 0.1);
    border-color: #39ff6a;
    color: #39ff6a;
}

.cart-close-btn svg {
    width: 18px;
    height: 18px;
}

/* Drawer Body (Empty State) */
.cart-drawer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.cart-empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.cart-empty-icon {
    color: #39ff6a;
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.cart-empty-icon svg {
    width: 64px;
    height: 64px;
}

.cart-empty-title {
    font-family: var(--font-display, 'Syne', 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.cart-empty-text {
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.cart-shop-btn {
    background: transparent;
    border: 1px solid #39ff6a;
    color: #39ff6a;
    padding: 0.75rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cart-shop-btn:hover {
    background: #39ff6a;
    color: #0a0a0a;
}

/* Drawer Footer */
.cart-drawer-footer {
    border-top: 1px solid rgba(57, 255, 106, 0.15);
    background: rgba(10, 10, 10, 0.95);
}

/* Cart Item List */
.cart-item-list {
    overflow-y: auto;
    flex: 1;
    padding: 0.5rem 0;
}

.cart-item-list::-webkit-scrollbar {
    width: 4px;
}

.cart-item-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.cart-item-list::-webkit-scrollbar-thumb {
    background: #39ff6a;
    border-radius: 10px;
}

/* Cart Item */
.cart-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(57, 255, 106, 0.1);
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-top {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(57, 255, 106, 0.15);
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    display: block;
    width: 100%;
    font-family: var(--font-display, 'Syne', 'Poppins', sans-serif);
}

/* Tax and Discount Breakdown */
.cart-item-tax-breakdown {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 6px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    line-height: 1.4;
    color: #a0a0a0;
    border-left: 2px solid #39ff6a;
}

.cart-tax-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.cart-discount-row {
    display: flex;
    justify-content: space-between;
    color: #39ff6a;
    font-weight: 600;
    margin-top: 0.25rem;
    border-top: 1px dashed rgba(57, 255, 106, 0.2);
    padding-top: 0.25rem;
}

.cart-item-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.cart-price-group {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
}

.cart-item-price {
    font-size: 1rem;
    color: #39ff6a;
    font-weight: 700;
}

.cart-item-old-price {
    font-size: 0.7rem;
    text-decoration: line-through;
    color: #a0a0a0;
}

/* Quantity Controls */
.cart-quantity-controls {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(57, 255, 106, 0.2);
    padding: 0.25rem;
    border-radius: 6px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: none;
    background: rgba(10, 10, 10, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #39ff6a;
    transition: all 0.3s ease;
}

.cart-qty-btn:hover {
    background: rgba(57, 255, 106, 0.1);
    color: #ffffff;
}

.cart-qty-btn svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.cart-qty-input {
    width: 35px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    outline: none;
}

.cart-remove-item {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: #ff4d4d;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cart-remove-item:hover {
    background: rgba(255, 77, 77, 0.1);
    color: #ff6b6b;
}

/* Coupon Section */
.cart-coupon-section {
    padding: 1rem;
    background: rgba(20, 20, 20, 0.4);
    border-top: 1px solid rgba(57, 255, 106, 0.1);
    border-bottom: 1px solid rgba(57, 255, 106, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-coupon-apply {
    display: flex;
    gap: 0.5rem;
}

.cart-coupon-input {
    flex-grow: 1;
    padding: 0.6rem 0.75rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(57, 255, 106, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.cart-coupon-input:focus {
    border-color: #39ff6a;
    box-shadow: 0 0 0 2px rgba(57, 255, 106, 0.1);
}

.cart-coupon-input::placeholder {
    color: #a0a0a0;
}

.cart-coupon-btn {
    background: #39ff6a;
    color: #0a0a0a;
    border: none;
    padding: 0 1rem;
    border-radius: 6px;
    font-size: 0.7rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cart-coupon-btn:hover {
    background: #2ecc55;
    transform: translateY(-1px);
}

/* Applied Coupon (Detailed) */
.cart-coupon-applied {
    background: rgba(57, 255, 106, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(57, 255, 106, 0.2);
    position: relative;
}

.cart-coupon-header {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cart-coupon-info {
    flex-grow: 1;
}

.cart-coupon-tag {
    background: #39ff6a;
    color: #0a0a0a;
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.cart-coupon-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #39ff6a;
}

.cart-coupon-desc {
    display: block;
    font-size: 0.6rem;
    color: #a0a0a0;
    margin-top: 0.15rem;
}

.cart-coupon-remove {
    color: #ff4d4d;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.3s ease;
}

.cart-coupon-remove:hover {
    color: #ff6b6b;
}

.cart-coupon-pill {
    display: inline-block;
    background: rgba(57, 255, 106, 0.1);
    border: 1px solid rgba(57, 255, 106, 0.3);
    color: #39ff6a;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 0.65rem;
    transition: all 0.3s ease;
}

.cart-coupon-pill:hover {
    background: rgba(57, 255, 106, 0.2);
    border-color: #39ff6a;
}

/* Summary */
.cart-summary {
    padding: 1rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: #a0a0a0;
}

.cart-summary-total {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(57, 255, 106, 0.2);
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.cart-summary-total .total-amount {
    color: #39ff6a;
    font-size: 1.1rem;
}

.cart-checkout-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #39ff6a;
    color: #39ff6a;
    padding: 0.8rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
    background: #39ff6a;
    color: #0a0a0a;
}

.cart-start-shopping-btn {
    background: transparent;
    border: 1px solid #39ff6a;
    color: #39ff6a;
    padding: 0.7rem 1.8rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-start-shopping-btn:hover {
    background: #39ff6a;
    color: #0a0a0a;
}

/* Responsive */
@media (max-width: 480px) {
    .cart-drawer {
        max-width: 100%;
    }

    .cart-item-img {
        width: 55px;
        height: 55px;
    }

    .cart-item-name {
        font-size: 0.8rem;
    }

    .cart-qty-btn {
        width: 24px;
        height: 24px;
    }

    .cart-qty-input {
        width: 30px;
        font-size: 0.7rem;
    }
}