:root {
    --brand-blue: #1FA9DD;
    --brand-blue-dark: #1589b5;
    --brand-blue-light: #e0f5fd;
    --brand-orange: #F39C12;
    --brand-orange-dark: #d68910;
    --brand-orange-light: #fef9e7;

    --bg-light: #F8F8F8;
    --bg-card: #FFFFFF;
    --bg-dark: #0A0A0A;

    --text-primary: #0A0A0A;
    --text-secondary: #5C5C5C;
    --text-muted: #9A9A9A;
    --text-on-brand: #FFFFFF;

    --border: #E8E8E8;
    --border-strong: #C8C8C8;

    --success: #27AE60;
    --danger: #E74C3C;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-full: 999px;

    --header-height: 96px;
    --container-max: 1280px;
    --transition: 0.25s ease;
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    padding-top: var(--header-height);
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 24px;
}

/* ============ HEADER ============ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header.is-hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-height);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.header-logo-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(calc(-50% + 10px));
    margin-inline: auto;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 220px;
    width: 380px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-block;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    inset-inline-start: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transform: translateX(50%);
    transition: width var(--transition);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

.nav-link:hover::after {
    width: 24px;
}

/* ── DROPDOWN NAV ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: rgba(10,22,40,0.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(31,169,221,.25);
    border-radius: 12px;
    padding: 8px;
    z-index: 200;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
    animation: dropdown-in .18s ease;
}
@keyframes dropdown-in {
    from { opacity:0; transform:translateY(-6px); }
    to   { opacity:1; transform:translateY(0); }
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    color: rgba(255,255,255,.9);
    font-size: 14px; font-weight: 600;
    border-radius: 8px;
    transition: background .15s, color .15s;
    text-decoration: none;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(31,169,221,.2); color: #fff; }
.nav-dropdown-menu a .dd-icon { font-size: 18px; flex-shrink: 0; }
.nav-dropdown > .nav-link::before {
    content: ' ▾'; font-size: 11px; opacity: .7;
}

.cart-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.2);
    color: #fff;
    transition: all var(--transition);
    flex-shrink: 0;
}

.cart-toggle:hover {
    background: var(--brand-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-icon {
    width: 22px;
    height: 22px;
}

.cart-badge {
    position: absolute;
    top: -4px;
    inset-inline-start: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: var(--radius-full);
    background: var(--brand-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    line-height: 1;
}

/* ============ HERO ============ */
#hero {
    position: relative;
    padding-block: 0;
    height: 100vh;
    min-height: 580px;
    margin-top: calc(-1 * var(--header-height));
    background: var(--bg-dark);
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100vh;
    padding-block: 48px;
}

.hero-text {
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-block;
    padding: 0;
    padding-inline-start: 18px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    background: none;
    border-radius: 0;
    border: none;
    position: relative;
}
.hero-eyebrow::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
}

.hero-title-accent {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-typed-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 32px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
    direction: rtl;
}

.hero-typed-prefix {
    display: none;
}

#hero-typed {
    color: rgba(255, 255, 255, 0.9);
}

.typed-cursor {
    color: var(--brand-blue);
    font-weight: 400;
    opacity: 1;
    animation: typedBlink 0.9s infinite;
    margin-inline-start: 2px;
}

.section-title[data-typed-title] {
    min-height: 1.3em;
}

.section-title[data-typed-title].is-pending-type::after,
.section-title[data-typed-title].is-typing + .typed-cursor,
.section-title[data-typed-title] .typed-cursor {
    color: var(--brand-orange);
}

@keyframes typedBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 6px 20px rgba(31, 169, 221, 0.35);
}

.btn-primary:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(31, 169, 221, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--brand-orange-dark);
    border-color: var(--brand-orange);
}

.btn-outline:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(243, 156, 18, 0.35);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.hero-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    max-height: 540px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(22, 127, 168, 0.35));
    animation: floatY 6s ease-in-out infinite;
}

.hero-image-logo {
    max-width: 100%;
    max-height: 420px;
    filter: drop-shadow(0 18px 32px rgba(22, 127, 168, 0.25));
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ============ HERO VIDEO BACKGROUND ============ */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* YouTube iframe background */
.hero-yt-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}
.hero-yt-wrap iframe,
.hero-yt-wrap #hero-yt-player {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    /* Cover banner: fill width, keep 16:9, min-height=banner height */
    width: 100vw !important;
    height: 56.25vw !important;   /* 9/16 of viewport width */
    min-height: 520px !important;
    min-width: 925px !important;  /* 520 * 16/9 */
    pointer-events: none !important;
    border: none !important;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(5, 12, 22, 0.45) 0%,
            rgba(5, 12, 22, 0.05) 30%,
            rgba(5, 12, 22, 0.05) 70%,
            rgba(5, 12, 22, 0.55) 100%
        ),
        linear-gradient(to left,
            rgba(5, 12, 22, 0.0) 0%,
            rgba(5, 12, 22, 0.35) 100%
        );
    z-index: 1;
}

.hero-logo-watermark {
    position: absolute;
    bottom: 40px;
    inset-inline-end: 48px;
    z-index: 3;
}

.hero-logo-watermark img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.7));
    opacity: 0.92;
    animation: floatY 6s ease-in-out infinite;
}

/* ============ SECTION COMMON ============ */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    display: inline-block;
    padding: 0;
    padding-inline-start: 18px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-blue);
    background: none;
    border-radius: 0;
    border: none;
    position: relative;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background: var(--brand-blue);
}

.section-title {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.4px;
}

.text-accent {
    color: var(--brand-blue);
    -webkit-text-fill-color: var(--brand-blue);
}

.section-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============ FEATURES ============ */
#features {
    padding-block: 90px;
    background: var(--bg-card);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-light);
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue);
    box-shadow: none;
    transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-4deg);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue-dark);
    box-shadow: none;
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============ PRODUCTS ============ */
#products {
    padding-block: 90px;
    background:
        radial-gradient(ellipse at top left, var(--brand-blue-light) 0%, transparent 50%),
        var(--bg-light);
}

/* ── Category filter bar ── */
.cat-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    padding: 4px 0;
}

.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.cat-btn:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background: rgba(31, 169, 221, 0.06);
}

.cat-btn.active {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(31, 169, 221, 0.32);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 28px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-lg);
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    max-width: 78%;
    max-height: 86%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-category {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-blue-dark);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.image-placeholder-badge {
    position: absolute;
    bottom: 12px;
    inset-inline-start: 12px;
    padding: 3px 10px;
    background: rgba(243, 156, 18, 0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: 0.2px;
}

.product-body {
    display: flex;
    flex-direction: column;
    padding: 20px 22px 22px;
    flex-grow: 1;
}

.product-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.product-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-model {
    font-family: 'Rubik', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-orange-dark);
    background: var(--brand-orange-light);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    direction: ltr;
    white-space: nowrap;
}

.product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.product-specs {
    margin-bottom: 20px;
    flex-grow: 1;
}

.spec-item {
    position: relative;
    padding-inline-start: 22px;
    margin-bottom: 6px;
    font-size: 13.5px;
    color: var(--text-primary);
    line-height: 1.55;
}

.spec-item::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    background: var(--brand-blue);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-block {
    width: 100%;
    padding: 13px 20px;
    margin-top: auto;
}

.btn-disabled {
    background: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
    border-color: transparent;
    font-weight: 600;
}

.btn-disabled:hover {
    background: var(--border);
    color: var(--text-muted);
    transform: none;
    box-shadow: none;
}

.out-of-stock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 35, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.out-of-stock-label {
    background: var(--danger);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    transform: rotate(-8deg);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
    border: 2px solid #fff;
}

.product-card.is-out-of-stock {
    opacity: 0.85;
}

.product-card.is-out-of-stock .product-image {
    filter: grayscale(0.4);
}

.product-card.is-out-of-stock:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.product-card.is-out-of-stock:hover .product-image {
    transform: none;
}

.btn.added {
    background: var(--success) !important;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.35) !important;
    pointer-events: none;
}

.cart-badge.is-empty {
    background: var(--text-muted);
}

.cart-badge.pulse {
    animation: badgePulse 0.5s ease;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* ============ CART SIDEBAR ============ */
#cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 35, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 200;
}

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

#cart-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-card);
    box-shadow: 10px 0 40px rgba(15, 23, 35, 0.2);
    z-index: 300;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    will-change: transform;
}

#cart-sidebar.is-open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, #fff 100%);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.sidebar-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.sidebar-close {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.sidebar-close:hover {
    background: var(--border);
    color: var(--danger);
}

.sidebar-close svg {
    width: 22px;
    height: 22px;
}

.sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.quote-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    padding: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    align-items: center;
}

.quote-item-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.quote-item-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.quote-item-info {
    min-width: 0;
}

.quote-item-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    line-height: 1.3;
}

.quote-item-model {
    display: inline-block;
    font-family: 'Rubik', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-orange-dark);
    background: var(--brand-orange-light);
    padding: 1px 6px;
    border-radius: 4px;
    margin-bottom: 10px;
    direction: ltr;
}

.quote-item-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 2px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--brand-blue-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    transition: all var(--transition);
}

.qty-btn:hover {
    background: var(--brand-blue);
    color: #fff;
}

.qty-val {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
}

.quote-item-remove {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quote-item-remove:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

.quote-item-remove svg {
    width: 16px;
    height: 16px;
}

.sidebar-empty {
    flex: 1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}

.empty-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--brand-blue-light);
    color: var(--brand-blue);
    margin-bottom: 18px;
}

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

.empty-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.empty-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 22px;
}

.sidebar-footer {
    padding: 18px 22px 22px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.quote-field {
    display: block;
    margin-bottom: 14px;
}

.field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.field-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    background: var(--bg-light);
    transition: all var(--transition);
}

.field-input:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(31, 169, 221, 0.15);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-link-danger {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition);
}

.btn-link-danger:hover {
    color: var(--danger);
}

/* ============ ABOUT ============ */
#about {
    padding-block: 90px;
    background: var(--bg-card);
}

.about-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-eyebrow {
    margin-bottom: 16px;
}

.about-text .section-title {
    text-align: start;
    margin-bottom: 22px;
}

.about-para {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.about-text .btn {
    margin-top: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.stat-card:nth-child(2),
.stat-card:nth-child(3) {
    background: var(--bg-light);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-num {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-card:nth-child(2) .stat-num,
.stat-card:nth-child(3) .stat-num {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============ CONTACT ============ */
#contact {
    padding-block: 90px;
    background:
        radial-gradient(ellipse at bottom right, var(--brand-orange-light) 0%, transparent 50%),
        var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(31, 169, 221, 0.3);
}

.contact-card-whatsapp .contact-icon {
    background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
}

.contact-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-value {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    direction: ltr;
    font-family: 'Rubik', sans-serif;
}

.contact-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-blue-dark);
}

.contact-card-whatsapp .contact-cta {
    color: #1ebe5d;
}

/* ============ PRODUCT PRICE + BUY BUTTON ============ */
.product-price {
    font-size: 26px;
    font-weight: 900;
    color: var(--brand-blue-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.btn-buy {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    box-shadow: 0 6px 18px rgba(31, 169, 221, 0.32);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(31, 169, 221, 0.45);
}

.btn-quote-link {
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 6px;
    transition: color var(--transition);
    cursor: pointer;
}

.btn-quote-link:hover {
    color: var(--brand-blue-dark);
}

.btn-quote-link.added {
    color: var(--success);
}

.product-featured-badge {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
    z-index: 2;
}

.product-card.is-featured {
    border-color: rgba(31, 169, 221, 0.4);
    box-shadow: 0 0 0 2px rgba(31, 169, 221, 0.15), var(--shadow-md);
}

/* ============ CHECKOUT MODAL ============ */
#checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#checkout-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 35, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.checkout-card {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(15, 23, 35, 0.35);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 28px;
    transform: translateY(16px);
    transition: transform 0.3s ease;
}

#checkout-modal.is-open .checkout-card {
    transform: translateY(0);
}

.checkout-close {
    position: absolute;
    top: 16px;
    inset-inline-start: 16px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.checkout-close:hover {
    background: var(--border);
    color: var(--danger);
}

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

.checkout-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 8px;
}

.checkout-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brand-orange-dark);
    background: var(--brand-orange-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.checkout-product-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.checkout-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.checkout-price {
    font-size: 38px;
    font-weight: 900;
    color: var(--brand-blue-dark);
    letter-spacing: -1px;
}

.checkout-vat {
    font-size: 13px;
    color: var(--text-muted);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.co-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.co-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.co-input {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-light);
    color: var(--text-primary);
    transition: all var(--transition);
    width: 100%;
}

.co-input:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(31, 169, 221, 0.15);
}

.co-textarea {
    resize: vertical;
    min-height: 80px;
}

.checkout-submit {
    margin-top: 4px;
    font-size: 16px;
    gap: 10px;
}

.checkout-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-top: -4px;
}

/* ── Step progress ── */
.co-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 4px 0 20px;
}

.co-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.co-step.active {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(31, 169, 221, 0.35);
}

.co-step.done {
    background: var(--success);
    color: #fff;
}

.co-step-line {
    flex: 1;
    max-width: 80px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    transition: background var(--transition);
}

.co-step-line.done {
    background: var(--success);
}

/* ── Panel ── */
.co-panel-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.55;
}

.co-otp-info {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.co-input-otp {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
    text-align: center;
    font-family: 'Rubik', monospace;
}

/* ── Layout helpers ── */
.co-row {
    display: flex;
    gap: 12px;
}

.co-row .co-field { flex: 1; }
.co-row .co-field-sm { flex: 0 0 72px; }

/* ── Delivery badge ── */
.co-delivery-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--brand-blue-light);
    border: 1px solid rgba(31, 169, 221, 0.25);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--brand-blue-dark);
    margin: 4px 0;
}

/* ── Business toggle ── */
.co-business-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    user-select: none;
}

.co-business-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-blue);
    cursor: pointer;
}

/* ── Error message ── */
.co-error-msg {
    font-size: 13px;
    color: var(--danger);
    min-height: 18px;
    margin-top: -6px;
}

.checkout-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 8px;
    gap: 14px;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #27AE60 0%, #1e9e52 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.35);
}

.success-icon svg {
    width: 36px;
    height: 36px;
}

.success-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.success-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ FOOTER ============ */
#site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 60px;
    margin-top: 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 16px;
    background: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-list a:hover {
    color: var(--brand-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 18px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

/* ── Address autocomplete dropdown ──────────────────── */
.co-ac-list {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    border: 1.5px solid var(--border-strong);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    max-height: 220px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    display: none;
}
.co-ac-item {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: background .12s;
}
.co-ac-item:hover,
.co-ac-active {
    background: var(--bg-light);
    color: var(--text-primary);
}

/* ── Checkout step 3 extras ─────────────────────────── */
.co-secure-note {
    background: #f0f9f0;
    border: 1px solid #b7deb7;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #2d6a2d;
}

/* ── Testimonials ────────────────────────────────────── */
#testimonials {
    padding-block: 80px;
    background: var(--bg-light);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: right;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.10);
}

.review-stars {
    color: #C9A96E;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a4a5c;
    flex: 1;
    margin: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border) !important;
    padding-top: 8px;
    border-top: 1px solid rgba(31, 169, 221, 0.12);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--text-primary);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-name {
    display: block;
    font-size: 15px;
    color: #1a2a3a;
}

.review-city {
    display: block;
    font-size: 13px;
    color: #6a7e90;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Shipping promo bar ── */
.ship-bar {
    background: #0A0A0A;
    overflow: hidden;
    white-space: nowrap;
    height: 36px;
    display: flex;
    align-items: center;
}
.ship-bar-inner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    animation: shipScroll 40s linear infinite;
    padding-right: 100%;
}
@keyframes shipScroll {
    from { transform: translateX(100%); }
    to   { transform: translateX(-100%); }
}
.ship-bar-text {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.ship-bar-text strong { color: #C8C8C8; }
.ship-bar-sub  { color: rgba(255,255,255,.75); font-size: 12px; }
.ship-bar-sep  { color: rgba(255,255,255,.4); }
.ship-bar-icon { font-size: 15px; }

/* ── Free shipping section ── */
.free-ship-section {
    padding: 60px 0;
    background: var(--bg-light);
}
.free-ship-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    border-radius: 14px;
    padding: 52px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,.30);
}
.free-ship-glow {
    position: absolute;
    top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 70%);
    pointer-events: none;
}
.free-ship-left { flex: 1; min-width: 0; }
.free-ship-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.free-ship-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}
.free-ship-title span { color: #C8C8C8; }
.free-ship-desc {
    color: rgba(255,255,255,.8);
    font-size: 14px;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 28px;
}
.free-ship-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #0A0A0A;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.free-ship-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.free-ship-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.free-ship-truck {
    font-size: 72px;
    line-height: 1;
    animation: truckBounce 2.4s ease-in-out infinite;
}
@keyframes truckBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.free-ship-price-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.free-ship-was {
    font-size: 22px;
    color: rgba(255,255,255,.5);
    text-decoration: line-through;
    font-weight: 700;
}
.free-ship-free {
    font-size: 36px;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: none;
}
.free-ship-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    max-width: 280px;
}
.free-ship-cities span {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.2);
}
@media (max-width: 768px) {
    .free-ship-card {
        flex-direction: column;
        padding: 36px 24px;
        text-align: center;
    }
    .free-ship-desc { max-width: 100%; }
    .free-ship-btn { width: 100%; justify-content: center; }
}

/* ── Mobile responsive – header & hero ── */
@media (max-width: 768px) {
    /* Header */
    .header-inner {
        position: relative;
        padding-block: 8px;
    }

    .main-nav .nav-list {
        display: none;
    }

    .header-logo-link {
        position: absolute;
        left: 50%;
        right: auto;
        top: 50%;
        transform: translate(-50%, calc(-50% + 6px));
        margin-inline: 0;
    }

    .header-logo {
        height: 110px;
        width: auto;
    }

    /* Hero */
    #hero {
        height: 100svh;
        min-height: 500px;
    }

    .hero-inner {
        height: 100svh;
        align-items: flex-end;
        padding-bottom: 60px;
        padding-inline: 20px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 40px);
        margin-bottom: 16px;
    }

    .hero-typed-wrap {
        justify-content: center;
        font-size: 15px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

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

    .hero-ctas .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .feature-card { padding: 24px 16px; }

    /* About */
    .about-inner {
        flex-direction: column;
        gap: 32px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }
    .footer-list { align-items: center; }

    /* Sections padding */
    #features, #about, #contact { padding: 56px 16px; }
    .section-title { font-size: 26px; }
    .section-sub   { font-size: 14px; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 20px 12px; }
    .stat-num  { font-size: 36px; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 8px; }
}
