/* ═══════════════════════════════════════════════════════════
   TAHMCO THEME — MAIN STYLESHEET
   Dark-themed surgical instruments marketplace
   ═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
    --bg-darkest:    #070F1B;
    --bg-dark:       #0B1A2F;
    --bg-card:       #0F2240;
    --bg-card-hover: #132D52;
    --bg-lighter:    #163158;
    --bg-input:      #0D1E38;

    --accent-green:  #10B981;
    --accent-green-hover: #059669;
    --accent-blue:   #3B82F6;
    --accent-teal:   #0EA5E9;
    --accent-gold:   #F59E0B;
    --accent-red:    #EF4444;
    --accent-purple: #8B5CF6;

    --text-white:    #FFFFFF;
    --text-light:    #CBD5E1;
    --text-muted:    #64748B;
    --text-dim:      #475569;

    --border:        #1E3A5F;
    --border-light:  #253D5E;

    --radius-sm:     6px;
    --radius:        10px;
    --radius-lg:     14px;
    --radius-xl:     20px;

    --shadow:        0 4px 20px rgba(0,0,0,.3);
    --shadow-lg:     0 8px 40px rgba(0,0,0,.4);

    --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container:     1280px;
    --header-h:      70px;

    /* Aliases for consistency across pages */
    --accent:        var(--accent-green);
    --card-bg:       var(--bg-card);
    --muted:         var(--text-muted);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-darkest);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, select, input { font-family: inherit; font-size: inherit; }

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

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .25s;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent-green);
    color: #fff;
    border-color: var(--accent-green);
}
.btn--primary:hover {
    background: var(--accent-green-hover);
    border-color: var(--accent-green-hover);
}
.btn--outline {
    background: transparent;
    color: var(--text-light);
    border-color: var(--border-light);
}
.btn--outline:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}
.btn--white {
    background: #fff;
    color: var(--bg-dark);
    border-color: #fff;
    font-weight: 700;
}
.btn--white:hover { background: #f1f5f9; }
.btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}
.btn--full { width: 100%; justify-content: center; }
.btn--checkout {
    display: flex !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: var(--accent-green) !important;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, .3);
    transition: all .3s ease;
}
.btn--checkout:hover {
    background: var(--accent-green-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, .4);
}
.btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: transparent;
    padding: 8px 14px;
}
.btn--ghost:hover { color: var(--accent-green); }

/* ── Breadcrumb ────────────────────────────────────────── */
.page-breadcrumb {
    padding: 14px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.page-breadcrumb a { color: var(--text-muted); }
.page-breadcrumb a:hover { color: var(--accent-green); }
.page-breadcrumb .sep { color: var(--text-dim); margin: 0 8px; }
.page-breadcrumb .current { color: var(--text-light); }

/* ── Section Tag ───────────────────────────────────────── */
.section-tag {
    display: inline-block;
    color: var(--accent-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ── Floating Buttons ──────────────────────────────────── */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 999;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--accent-green); border-color: var(--accent-green); color: #fff; }

/* ══════════════════════════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════════════════════ */
.topbar {
    background: var(--bg-darkest);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 12px;
    color: var(--text-muted);
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.topbar__left, .topbar__right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}
.topbar__item:hover { color: var(--text-light); }
.topbar__item i { font-size: 11px; color: var(--accent-green); }

.topbar__social { display: flex; gap: 12px; }
.topbar__social a { color: var(--text-muted); font-size: 13px; }
.topbar__social a:hover { color: var(--accent-green); }

.topbar__selectors { display: flex; gap: 8px; }
.topbar__select {
    background: var(--bg-dark);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    cursor: pointer;
}

/* ══════════════════════════════════════════════════════════
   SITE HEADER
   ══════════════════════════════════════════════════════ */
.site-header {
    background: var(--bg-dark);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.site-header__logo { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-text__name {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
    line-height: 1;
}
.logo-text__accent {
    color: var(--accent-teal);
}
.logo-text__tagline {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Search */
.site-header__search { flex: 1; max-width: 720px; }
.search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s;
}
.search-bar:focus-within { border-color: var(--accent-green); }
.search-bar__icon { padding: 0 14px; color: var(--text-muted); }
.search-bar__input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-white);
    padding: 12px 0;
    outline: none;
    font-size: 13px;
}
.search-bar__input::placeholder { color: var(--text-dim); }
.search-bar__btn {
    background: var(--accent-green);
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
}
.search-bar__btn:hover { background: var(--accent-green-hover); }

/* Header Actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}
.header-btn--register {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-green);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: background .2s;
}
.header-btn--register:hover { background: var(--accent-green-hover); }

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-muted);
    font-size: 12px;
    position: relative;
    transition: color .2s;
}
.header-action:hover { color: var(--text-white); }
.header-action i { font-size: 18px; }
.header-action__label { font-size: 11px; }
.header-action__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent-green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

/* ── Header Wrapper ───────────────────────────── */
.site-header-wrap {
    position: relative;
    z-index: 1000;
}

/* ══════════════════════════════════════════════════════════
   MAIN NAVIGATION
   ══════════════════════════════════════════════════════ */
.main-nav {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 950;
    overflow: visible;
}
.main-nav__inner {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 24px;
}
.main-nav__left { flex-shrink: 0; }

/* ── Nav Dropdown (ALL PRODUCTS) ─────────────────────── */
.nav-dropdown { position: relative; z-index: 960; }
.nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--accent-green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none;
    cursor: pointer;
    transition: background .2s;
}
.nav-dropdown__trigger:hover { background: var(--accent-green-hover); }
.nav-dropdown__arrow { font-size: 10px; transition: transform .2s; }
.nav-dropdown.is-open .nav-dropdown__arrow { transform: rotate(180deg); }

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s ease;
    padding: 12px 0;
}
.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown__grid {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 400px;
    overflow-y: auto;
}
.nav-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    transition: all .15s;
}
.nav-dropdown__item:hover {
    background: rgba(16,185,129,.08);
    color: var(--accent-green);
    padding-left: 24px;
}
.nav-dropdown__item i { font-size: 9px; color: var(--text-dim); }
.nav-dropdown__item:hover i { color: var(--accent-green); }
.nav-dropdown__count {
    margin-left: auto;
    background: var(--bg-input);
    color: var(--text-muted);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
}
.nav-dropdown__all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    color: var(--accent-green);
    font-size: 13px;
    font-weight: 600;
    transition: gap .2s;
}
.nav-dropdown__all:hover { gap: 12px; }

/* ── Rotating Headlines ──────────────────────────────── */
.nav-headlines {
    flex: 1;
    position: relative;
    height: 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.nav-headline {
    position: absolute;
    left: 0;
    white-space: nowrap;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s, transform .4s;
}
.nav-headline.active {
    opacity: 1;
    transform: translateY(0);
}
.nav-headline::before {
    content: '\f0a1';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--accent-green);
    font-size: 12px;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════ */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0A1628 50%, #0D1F3C 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.12);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero__title {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 18px;
}
.hero__title--accent {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 560px;
}
.hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero__trust-checks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.hero__trust-checks span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 12px;
}
.hero__trust-checks i { color: var(--accent-green); font-size: 11px; }
.hero__note {
    font-size: 12px;
    color: var(--text-dim);
}
.hero__note i { color: var(--accent-blue); margin-right: 4px; }

/* Hero Stats */
.hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 18px;
    text-align: center;
    transition: border-color .25s, transform .25s;
}
.stat-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
}
.stat-card__number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 6px;
}
.stat-card__label {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════ */
.trust-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}
.trust-strip__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(16,185,129,.1);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.trust-strip__text strong {
    display: block;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 600;
}
.trust-strip__text span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════════════ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    gap: 20px;
}
.section-header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}
.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: gap .2s;
}
.section-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════════
   BROWSE BY SPECIALTY
   ══════════════════════════════════════════════════════ */
.specialties {
    padding: 60px 0;
}
.specialties__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.specialty-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all .25s;
    cursor: pointer;
}
.specialty-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.specialty-card__icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
}
.specialty-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
    line-height: 1.3;
}
.specialty-card__desc {
    font-size: 11px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   BULK ORDER BANNER
   ══════════════════════════════════════════════════════ */
.bulk-banner {
    padding: 0 0 60px;
}
.bulk-banner__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
}
.bulk-banner__icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}
.bulk-banner__content { flex: 1; }
.bulk-banner__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.bulk-banner__desc {
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

/* ══════════════════════════════════════════════════════════
   FEATURED PRODUCTS
   ══════════════════════════════════════════════════════ */
.featured-products {
    padding: 0 0 60px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s;
}
.product-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.product-card__image {
    position: relative;
    background: var(--bg-input);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__actions-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    display: flex;
    gap: 8px;
    z-index: 3;
}
.product-card__quick-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
}
.product-card__quick-btn:hover { background: var(--accent-green); border-color: var(--accent-green); }
.product-card__quick-btn.is-wishlisted,
.product-card__quick-btn.is-wishlisted:hover { background: #ef4444; border-color: #ef4444; color: #fff; }
.product-card__placeholder {
    font-size: 40px;
    color: var(--text-dim);
}
.product-card__sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.product-card__info {
    padding: 16px;
}
.product-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
    line-height: 1.3;
}
.product-card__title a:hover { color: var(--accent-green); }
.product-card__cat {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-card__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */
.testimonials {
    padding: 60px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color .25s;
}
.testimonial-card:hover { border-color: var(--accent-gold); }
.testimonial-card__stars {
    display: flex;
    gap: 3px;
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 16px;
}
.testimonial-card__text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(16,185,129,.12);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-card__author strong {
    display: block;
    color: var(--text-white);
    font-size: 14px;
}
.testimonial-card__author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   MANUFACTURING PARTNERS
   ══════════════════════════════════════════════════════ */
.partners {
    padding: 60px 0;
}
.partners__grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.partner-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    min-width: 200px;
    transition: border-color .2s;
}
.partner-badge:hover { border-color: var(--accent-teal); }
.partner-badge i {
    font-size: 22px;
    color: var(--accent-teal);
}
.partner-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════ */
.newsletter {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(59,130,246,.08));
    border-top: 1px solid var(--border);
}
.newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.newsletter__content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.newsletter__content h3 i { color: var(--accent-green); }
.newsletter__content p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 420px;
}
.newsletter__form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.newsletter__form input {
    padding: 14px 20px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-white);
    font-size: 14px;
    width: 300px;
    outline: none;
}
.newsletter__form input:focus { border-color: var(--accent-green); }
.newsletter__form input::placeholder { color: var(--text-dim); }

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════════════ */
.why-choose {
    padding: 60px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}
.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-choose__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}
.why-choose__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-green);
    transform: scaleX(0);
    transition: transform .3s;
}
.why-choose__card:hover::before { transform: scaleX(1); }
.why-choose__card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
}
.why-choose__num {
    font-size: 32px;
    font-weight: 800;
    color: rgba(16,185,129,.15);
    margin-bottom: 8px;
    display: block;
}
.why-choose__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(16,185,129,.1);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
}
.why-choose__card h4 {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}
.why-choose__card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding-top: 50px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer__logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer__logo .logo-text__name {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
}
.footer__desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}
.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: all .2s;
}
.footer__social a:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
}
.footer__heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color .2s;
}
.footer__links a:hover { color: var(--accent-green); }

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 18px 0;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p {
    font-size: 12px;
    color: var(--text-muted);
}
.footer__certifications {
    display: flex;
    gap: 16px;
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}
.cert-badge i { color: var(--accent-green); }

/* ══════════════════════════════════════════════════════════
   GENERIC PAGE STYLES
   ══════════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}
.page-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
}
.page-body {
    padding: 50px 20px;
    max-width: 860px;
}
.page-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin: 36px 0 14px;
}
.page-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin: 28px 0 10px;
}
.page-body p { margin-bottom: 16px; }
.page-body ul, .page-body ol {
    margin: 0 0 16px 20px;
    list-style: disc;
}
.page-body li { margin-bottom: 6px; }
.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.page-body th, .page-body td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    font-size: 13px;
    text-align: left;
}
.page-body th {
    background: var(--bg-card);
    color: var(--text-white);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   STICKY HEADER (disabled)
   ══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.specialties__grid .animate-on-scroll:nth-child(2)  { transition-delay: .05s; }
.specialties__grid .animate-on-scroll:nth-child(3)  { transition-delay: .10s; }
.specialties__grid .animate-on-scroll:nth-child(4)  { transition-delay: .15s; }
.specialties__grid .animate-on-scroll:nth-child(5)  { transition-delay: .20s; }
.specialties__grid .animate-on-scroll:nth-child(6)  { transition-delay: .25s; }
.specialties__grid .animate-on-scroll:nth-child(7)  { transition-delay: .30s; }
.specialties__grid .animate-on-scroll:nth-child(8)  { transition-delay: .35s; }
.specialties__grid .animate-on-scroll:nth-child(9)  { transition-delay: .40s; }
.specialties__grid .animate-on-scroll:nth-child(10) { transition-delay: .45s; }
.specialties__grid .animate-on-scroll:nth-child(11) { transition-delay: .50s; }
.specialties__grid .animate-on-scroll:nth-child(12) { transition-delay: .55s; }

.products-grid .animate-on-scroll:nth-child(2) { transition-delay: .07s; }
.products-grid .animate-on-scroll:nth-child(3) { transition-delay: .14s; }
.products-grid .animate-on-scroll:nth-child(4) { transition-delay: .21s; }
.products-grid .animate-on-scroll:nth-child(5) { transition-delay: .28s; }
.products-grid .animate-on-scroll:nth-child(6) { transition-delay: .35s; }
.products-grid .animate-on-scroll:nth-child(7) { transition-delay: .42s; }
.products-grid .animate-on-scroll:nth-child(8) { transition-delay: .49s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero__inner { grid-template-columns: 1fr 260px; }
    .hero__title { font-size: 36px; }
    .specialties__grid { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer__col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 850px) {
    .topbar__item--hide-mobile { display: none; }
    .site-header__search { display: none; }
    .mobile-toggle { display: block; }
    .site-header__actions .header-action__label { display: none; }
    .header-btn--register span { display: none; }

    .main-nav { display: none; }
    .main-nav.is-open { display: block; }
    .main-nav__list { flex-direction: column; }
    .main-nav__item a { padding: 12px 20px; border-bottom: 1px solid var(--border); }

    .hero__inner { grid-template-columns: 1fr; }
    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .hero__title { font-size: 30px; }

    .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .specialties__grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; }
    .bulk-banner__inner { flex-direction: column; text-align: center; }
    .why-choose__grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter__inner { flex-direction: column; text-align: center; }
    .newsletter__form { width: 100%; }
    .newsletter__form input { flex: 1; width: auto; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 550px) {
    .topbar__selectors { display: none; }
    .hero { padding: 40px 0 30px; }
    .hero__title { font-size: 26px; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); }
    .hero__trust-checks { flex-direction: column; gap: 8px; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { width: 100%; justify-content: center; }

    .trust-strip__inner { grid-template-columns: 1fr; }
    .specialties__grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .why-choose__grid { grid-template-columns: 1fr; }
    .partners__grid { flex-direction: column; }
    .newsletter__form { flex-direction: column; }
    .newsletter__form input { width: 100%; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }

    .section-header { flex-direction: column; align-items: flex-start; }
    .section-title { font-size: 22px; }
}

/* ══════════════════════════════════════════════════════════
   SHOP PAGE — BREADCRUMB
   ══════════════════════════════════════════════════════ */
.shop-breadcrumb {
    background: var(--bg-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.breadcrumb a { color: var(--accent-green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--text-dim); font-size: 9px; }
.breadcrumb__current { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   SHOP PAGE — HEADER
   ══════════════════════════════════════════════════════ */
.shop-header {
    background: var(--bg-dark);
    padding: 24px 0 16px;
    border-bottom: 1px solid var(--border);
}
.shop-header__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}
.shop-header__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}
.shop-header__count {
    font-size: 13px;
    color: var(--text-muted);
}
.shop-header__controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* View Toggle */
.view-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}
.view-toggle__btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}
.view-toggle__btn:hover,
.view-toggle__btn.is-active {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
}

/* Sort */
.sort-control { display: flex; align-items: center; gap: 8px; }
.sort-control label { font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.sort-control select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    cursor: pointer;
    min-width: 160px;
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.active-filters__label {
    font-size: 12px;
    color: var(--text-muted);
}
.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all .2s;
}
.active-filter-tag:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}
.active-filter-tag i { font-size: 10px; }
.active-filters__clear {
    color: var(--accent-red);
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}
.active-filters__clear:hover { text-decoration: underline; }

/* Result Bar */
.shop-header__result-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}


/* ══════════════════════════════════════════════════════════
   SHOP PAGE — BODY LAYOUT
   ══════════════════════════════════════════════════════ */
.shop-body { padding: 24px 0 60px; }
.shop-body__inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

/* ══════════════════════════════════════════════════════════
   SHOP PAGE — SIDEBAR
   ══════════════════════════════════════════════════════ */
.shop-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-right: 8px;
}
.shop-sidebar::-webkit-scrollbar { width: 4px; }
.shop-sidebar::-webkit-scrollbar-track { background: transparent; }
.shop-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.filter-group {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.filter-group:last-of-type { border-bottom: none; }
.filter-group__title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Filter List */
.filter-list__item {
    margin-bottom: 8px;
}
.filter-list__item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-light);
    transition: color .2s;
    padding: 4px 0;
}
.filter-list__item label:hover { color: var(--text-white); }

/* Custom Checkbox / Radio */
.filter-list__item input[type="checkbox"],
.filter-list__item input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 3px;
    background: var(--bg-input);
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: all .2s;
}
.filter-list__item input[type="radio"] { border-radius: 50%; }
.filter-list__item input:checked {
    background: var(--accent-green);
    border-color: var(--accent-green);
}
.filter-list__item input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.filter-list__item input[type="radio"]:checked::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-count {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-dim);
    flex-shrink: 0;
}

/* Rating Stars in Filter */
.filter-list--rating .stars {
    display: inline-flex;
    gap: 2px;
    color: var(--accent-gold);
    font-size: 12px;
}

/* Price Range Inputs */
.price-range-inputs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.price-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
}
.price-input:focus { border-color: var(--accent-green); }
.price-input::placeholder { color: var(--text-dim); }

/* Filter Actions */
.filter-actions { margin-top: 20px; }

/* ══════════════════════════════════════════════════════════
   SHOP PAGE — PRODUCT CARDS (SHOP VARIANT)
   ══════════════════════════════════════════════════════ */
.products-grid--shop {
    grid-template-columns: repeat(3, 1fr);
}
/* ── List View ────────────────────────────────────── */
.products-grid--list {
    grid-template-columns: 1fr !important;
}
.products-grid--list .product-card--shop {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
}
.products-grid--list .product-card--shop .product-card__image {
    aspect-ratio: 1 / 1;
    border-radius: 12px 0 0 12px;
}
.products-grid--list .product-card--shop .product-card__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 24px;
}
.products-grid--list .product-card--shop .product-card__actions {
    margin-top: auto;
}
.product-card--shop .product-card__image {
    aspect-ratio: 1 / 1;
}
.product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .3px;
    z-index: 2;
}
.product-card__badge--sale { background: var(--accent-red); }

.product-card__compare {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    cursor: pointer;
}
.product-card__compare input { display: none; }
.product-card__compare span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    transition: all .2s;
}
.product-card__compare input:checked + span {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
}
.product-card__compare:hover span {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.product-card__brand {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-teal);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.product-card__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
    font-size: 11px;
    color: var(--accent-gold);
}
.product-card__rating span {
    color: var(--text-muted);
    margin-left: 4px;
}
.product-card__price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

/* Stock Badge */
.stock-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}
.stock-badge--low {
    background: rgba(245,158,11,.15);
    color: var(--accent-gold);
}
.stock-badge--out {
    background: rgba(239,68,68,.15);
    color: var(--accent-red);
}

/* Product Card Actions */
.product-card__actions {
    display: flex;
    gap: 8px;
}
.product-card__actions .btn { flex: 1; justify-content: center; font-size: 12px; padding: 8px 10px; }

/* ══════════════════════════════════════════════════════════
   SHOP PAGE — PAGINATION
   ══════════════════════════════════════════════════════ */
.shop-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.shop-pagination .page-numbers,
.pagination-sample .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
}
.shop-pagination .page-numbers:hover,
.pagination-sample .page-numbers:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}
.shop-pagination .page-numbers.current,
.pagination-sample .page-numbers.current {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
}
.pagination-sample {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.page-dots {
    color: var(--text-muted);
    padding: 0 6px;
    line-height: 38px;
}



/* ══════════════════════════════════════════════════════════
   SHOP PAGE — RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .products-grid--shop { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 850px) {
    .shop-body__inner { grid-template-columns: 1fr; }
    .shop-sidebar {
        position: fixed;
        top: 0; left: 0;
        width: 300px;
        height: 100vh;
        background: var(--bg-dark);
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform .3s ease;
        padding: 20px;
        max-height: 100vh;
        border-right: 1px solid var(--border);
    }
    .shop-sidebar.is-open { transform: translateX(0); }
    .shop-header__top { flex-direction: column; }

}
@media (max-width: 550px) {
    .products-grid--shop { grid-template-columns: 1fr; }
    .product-card__actions { flex-direction: column; }
    .shop-header__controls { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT — MAIN LAYOUT
   ══════════════════════════════════════════════════════ */
.sp-main { padding: 30px 0 40px; }
.sp-main__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Gallery ─────────────────────────────────────────────── */
.sp-gallery { position: sticky; top: 90px; }
.sp-gallery__badges {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.sp-gallery__badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.sp-gallery__main {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.sp-gallery__img { width: 100%; height: 100%; object-fit: contain; }
.sp-gallery__placeholder { font-size: 80px; color: var(--text-dim); }

.sp-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.sp-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    background: var(--bg-card);
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s;
    padding: 0;
}
.sp-thumb:hover, .sp-thumb.is-active { border-color: var(--accent-green); }
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-thumb__ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 18px;
}

.sp-gallery__actions {
    display: flex;
    gap: 10px;
}
.sp-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.sp-action-btn:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}
.sp-action-btn i { font-size: 14px; }

/* ── Product Info ────────────────────────────────────────── */
.sp-info__brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-teal);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.sp-info__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 12px;
}

/* Rating Row */
.sp-info__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.sp-stars { display: flex; gap: 2px; color: var(--accent-gold); font-size: 14px; }
.sp-stars--lg { font-size: 18px; }
.sp-info__rating-text { font-weight: 700; color: var(--text-white); font-size: 14px; }
.sp-info__reviews { font-size: 13px; color: var(--accent-green); }
.sp-info__sold {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 3px 10px;
    border-radius: 12px;
}

/* Price Box */
.sp-price-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}
.sp-price-box__current {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 4px;
}
.sp-price-box__original {
    font-size: 14px;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-right: 8px;
}
.sp-price-box__bulk {
    display: block;
    font-size: 12px;
    color: var(--accent-green);
    margin-top: 6px;
}
.sp-price-box__bulk i { margin-right: 4px; }
.sp-price-box__right { text-align: right; }
.sp-stock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}
.sp-stock--in { color: var(--accent-green); }
.sp-stock--out { color: var(--accent-red); }
.sp-stock__qty {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Quick Specs Grid */
.sp-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 22px;
}
.sp-spec {
    background: var(--bg-card);
    padding: 12px 16px;
}
.sp-spec__label {
    display: block;
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}
.sp-spec__value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
}

/* Quantity + Cart Row */
.sp-cart-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.sp-qty label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.sp-qty__controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.sp-qty__btn {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: none;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    transition: background .2s;
}
.sp-qty__btn:hover { background: var(--bg-lighter); }
.sp-qty__input {
    width: 56px;
    height: 40px;
    text-align: center;
    background: var(--bg-input);
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
}
.sp-qty__input::-webkit-inner-spin-button { display: none; }
.sp-cart-row__note {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}
.sp-cart-row__note a {
    color: var(--accent-green);
    font-weight: 600;
}
.sp-cart-row__note a:hover { text-decoration: underline; }

/* Action Buttons */
.sp-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}
.btn--lg { padding: 14px 28px; font-size: 15px; }
.sp-actions__cart { flex: 2; justify-content: center; }
.sp-actions__quote { flex: 1.2; justify-content: center; }
.sp-actions__wish {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    flex-shrink: 0;
}
.sp-actions__wish:hover,
.sp-actions__wish.is-liked {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* Trust Badges */
.sp-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.sp-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}
.sp-trust i { color: var(--accent-green); font-size: 14px; }

/* Social Proof */
.sp-social-proof {
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--accent-gold);
}
.sp-social-proof i { margin-right: 4px; }

/* Share */
.sp-share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}
.sp-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    padding: 7px 14px;
    font-size: 12px;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font);
    text-decoration: none;
}
.sp-share__btn:hover { border-color: var(--accent-green); color: var(--accent-green); }

/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT — TABS
   ══════════════════════════════════════════════════════ */
.sp-tabs-section {
    padding: 0 0 40px;
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.sp-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 28px;
    overflow-x: auto;
}
.sp-tabs__btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 16px 24px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
    font-family: var(--font);
}
.sp-tabs__btn:hover { color: var(--text-light); }
.sp-tabs__btn.is-active {
    color: var(--accent-green);
    border-bottom-color: var(--accent-green);
}
.sp-tab-panel { display: none; }
.sp-tab-panel.is-active { display: block; }

/* Specs Table */
.sp-spec-table {
    width: 100%;
    border-collapse: collapse;
}
.sp-spec-table td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-size: 13px;
}
.sp-spec-table td:nth-child(odd) {
    color: var(--text-muted);
    font-weight: 600;
    background: var(--bg-card);
    width: 18%;
}
.sp-spec-table td:nth-child(even) {
    color: var(--text-white);
    width: 32%;
}

/* Description */
.sp-description h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin: 24px 0 10px;
}
.sp-description p { margin-bottom: 14px; line-height: 1.7; }
.sp-description ul {
    margin: 0 0 16px 20px;
    list-style: disc;
}
.sp-description li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* ── Reviews ─────────────────────────────────────────────── */
.sp-reviews {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}
.sp-reviews__summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}
.sp-reviews__big-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin-bottom: 20px;
}
.sp-reviews__number {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}
.sp-reviews__count {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* Rating Bars */
.sp-reviews__bars { margin-bottom: 20px; }
.sp-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--text-muted);
}
.sp-bar-row i { font-size: 10px; color: var(--accent-gold); }
.sp-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-input);
    border-radius: 4px;
    overflow: hidden;
}
.sp-bar__fill {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 4px;
}
.sp-bar__pct { min-width: 28px; text-align: right; }

/* Review Cards */
.sp-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 14px;
}
.sp-review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.sp-review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.sp-review-card__header strong {
    display: block;
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 2px;
}
.sp-review-card__header .sp-stars { font-size: 12px; }
.sp-review-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

/* Certifications Grid */
.sp-certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.sp-cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: border-color .2s;
}
.sp-cert-card:hover { border-color: var(--accent-green); }
.sp-cert-card i {
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 12px;
}
.sp-cert-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}
.sp-cert-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Related Products */
.sp-related {
    padding: 40px 0 60px;
    border-top: 1px solid var(--border);
}

/* ── Single Product Responsive ───────────────────────────── */
@media (max-width: 900px) {
    .sp-main__inner { grid-template-columns: 1fr; }
    .sp-gallery { position: static; }
    .sp-reviews { grid-template-columns: 1fr; }
    .sp-certs-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-spec-table td { display: block; width: 100% !important; }
    .sp-spec-table tr { display: flex; flex-wrap: wrap; }
    .sp-spec-table td:nth-child(odd) { width: 40% !important; }
    .sp-spec-table td:nth-child(even) { width: 60% !important; }
}
@media (max-width: 550px) {
    .sp-info__title { font-size: 22px; }
    .sp-price-box { flex-direction: column; }
    .sp-price-box__right { text-align: left; }
    .sp-actions { flex-direction: column; }
    .sp-actions__wish { width: 100%; height: 46px; }
    .sp-gallery__actions { flex-direction: column; }
    .sp-tabs__btn { padding: 12px 16px; font-size: 13px; }
    .sp-certs-grid { grid-template-columns: 1fr; }
    .sp-trust { flex-direction: column; gap: 8px; }
    .sp-share { flex-wrap: wrap; }
}


/* ------------------------------------------------------------
   QUOTE PAGE
   ------------------------------------------------------------ */
.quote-page { background: var(--bg-dark); color: var(--text-primary); }

/* Hero */
.quote-hero {
    background: linear-gradient(135deg, #0c1424 0%, #0f1a2e 60%, #0c1424 100%);
    border-bottom: 1px solid var(--border);
    padding: 48px 0 56px;
    position: relative;
}
.quote-hero::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(circle at 80% 50%, rgba(16,185,129,.08), transparent 60%);
    pointer-events:none;
}
.quote-hero__grid {
    display:grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
    align-items:center; position:relative;
}
.quote-hero__badge {
    display:inline-flex; align-items:center; gap:8px;
    background: rgba(16,185,129,.12); color: var(--accent);
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight:700; letter-spacing:.5px;
    border: 1px solid rgba(16,185,129,.3);
    margin-bottom: 18px;
}
.quote-hero__title {
    font-size: 44px; font-weight: 800; line-height: 1.1;
    margin: 0 0 14px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.quote-hero__lead {
    font-size: 17px; color: var(--text-secondary);
    line-height: 1.6; max-width: 620px;
}
.quote-hero__stats {
    display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.quote-stat {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align:center;
}
.quote-stat__value {
    font-size: 30px; font-weight: 800; color: var(--accent);
    margin-bottom: 4px;
}
.quote-stat__label {
    font-size: 11px; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 1px;
}

/* Body grid */
.quote-body { padding: 40px 0 80px; }
.quote-grid {
    display:grid; grid-template-columns: 1.6fr 1fr; gap: 28px;
    align-items: flex-start;
}

/* Form sections */
.quote-form { display:flex; flex-direction:column; gap: 18px; }
.quote-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.quote-section__title {
    display:flex; align-items:center; gap:10px;
    font-size: 13px; font-weight:700;
    color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.quote-section__title i { font-size: 14px; }

.quote-row { display:grid; gap: 14px; margin-bottom: 14px; }
.quote-row--2 { grid-template-columns: 1fr 1fr; }
.quote-row:last-child { margin-bottom: 0; }
.quote-field { display:flex; flex-direction:column; gap: 6px; margin-bottom: 14px; }
.quote-field:last-child { margin-bottom: 0; }
.quote-field label {
    font-size: 12px; font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: .3px;
}
.quote-field .req { color: #f87171; }
.quote-field input[type=text],
.quote-field input[type=tel],
.quote-field input[type=email],
.quote-field input[type=number],
.quote-field input[type=date],
.quote-field select,
.quote-field textarea {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: border-color .2s, background .2s;
}
.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(16,185,129,.04);
}
.quote-field textarea { resize: vertical; min-height: 110px; }
.quote-field select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* Instruments table */
.quote-instruments__head {
    display:grid;
    grid-template-columns: 1.5fr 1.3fr 70px 1.3fr 32px;
    gap: 8px;
    font-size: 11px; font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px;
    padding: 0 4px;
}
.quote-instruments__body { display:flex; flex-direction:column; gap: 8px; }
.quote-instrument-row {
    display:grid;
    grid-template-columns: 1.5fr 1.3fr 70px 1.3fr 32px;
    gap: 8px;
    align-items:center;
}
.quote-instrument-row input {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
}
.quote-instrument-row input:focus {
    outline: none; border-color: var(--accent);
}
.quote-row-remove {
    width: 32px; height: 38px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #f87171;
    cursor: pointer;
    display:flex; align-items:center; justify-content:center;
    transition: all .2s;
}
.quote-row-remove:hover { background: rgba(248,113,113,.1); border-color:#f87171; }
.quote-add-row {
    margin-top: 12px;
    width: 100%;
    background: rgba(16,185,129,.08);
    border: 1px dashed rgba(16,185,129,.4);
    color: var(--accent);
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600; font-size: 14px;
    transition: all .2s;
}
.quote-add-row:hover {
    background: rgba(16,185,129,.15);
    border-style: solid;
}

/* Checks (certifications) */
.quote-checks {
    display:grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
    margin-top: 4px;
}
.quote-checks label {
    display:flex; align-items:center; gap:8px;
    font-size: 13px; color: var(--text-primary);
    cursor: pointer;
}
.quote-checks input[type=checkbox] {
    width: 16px; height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* File upload */
.quote-upload { cursor:pointer; }
.quote-upload input[type=file] { display:none; }
.quote-upload span {
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
    padding: 22px;
    background: rgba(255,255,255,.02);
    border: 1px dashed var(--border);
    border-radius: 10px;
    text-align:center;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all .2s;
}
.quote-upload span small { font-size: 11px; opacity: .7; }
.quote-upload span i { font-size: 22px; color: var(--accent); }
.quote-upload:hover span { border-color: var(--accent); background: rgba(16,185,129,.04); }

/* Submit section */
.quote-section--submit { display:flex; flex-direction:column; gap: 14px; }
.quote-terms {
    display:flex; align-items:flex-start; gap:10px;
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}
.quote-terms input { margin-top: 3px; accent-color: var(--accent); }
.quote-terms a { color: var(--accent); text-decoration: underline; }
.quote-submit, .quote-alt { width: 100%; justify-content: center; }
.quote-fineprint {
    text-align:center;
    font-size: 12px; color: var(--text-secondary);
    margin: 6px 0 0;
}
.quote-fineprint i { color: var(--accent); margin-right: 4px; }

/* Sidebar cards */
.quote-side { display:flex; flex-direction:column; gap: 18px; position:sticky; top: 90px; }
.quote-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}
.quote-card h3 {
    display:flex; align-items:center; gap:10px;
    font-size: 15px; font-weight:700;
    color: var(--text-primary);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.quote-card h3 i { color: var(--accent); }
.quote-list, .quote-steps { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 14px; }
.quote-list li, .quote-steps li {
    display:flex; gap: 12px; align-items:flex-start;
    font-size: 13px;
}
.quote-list li i {
    width: 32px; height: 32px;
    flex-shrink: 0;
    background: rgba(16,185,129,.12);
    color: var(--accent);
    border-radius: 8px;
    display:flex; align-items:center; justify-content:center;
    font-size: 13px;
}
.quote-list li strong, .quote-steps li strong {
    display:block; color: var(--text-primary);
    font-size: 13px; margin-bottom: 2px;
}
.quote-list li span, .quote-steps li span {
    color: var(--text-secondary);
    font-size: 12px; line-height: 1.5;
}
.quote-steps__num {
    width: 28px; height: 28px;
    flex-shrink: 0;
    background: var(--accent);
    color: #06281d;
    border-radius: 50%;
    display:flex; align-items:center; justify-content:center;
    font-weight: 700; font-size: 13px;
}

/* Contact card */
.quote-card--contact { background: linear-gradient(160deg, rgba(16,185,129,.05), var(--bg-card)); }
.quote-contact-row {
    display:flex; align-items:center; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    text-decoration:none;
    transition: padding-left .2s;
}
.quote-contact-row:hover { padding-left: 6px; }
.quote-contact-row:last-of-type { border-bottom: none; }
.quote-contact-row i {
    width: 36px; height: 36px;
    background: rgba(16,185,129,.12);
    color: var(--accent);
    border-radius: 8px;
    display:flex; align-items:center; justify-content:center;
    font-size: 14px;
    flex-shrink: 0;
}
.quote-contact-row strong { display:block; font-size: 14px; }
.quote-contact-row span { font-size: 12px; color: var(--text-secondary); }
.btn--whatsapp { background: #25d366; color:#fff; border-color: #25d366; }
.btn--whatsapp:hover { background: #1fbe5b; border-color: #1fbe5b; }
.quote-whatsapp { width: 100%; justify-content: center; margin-top: 12px; }

/* Clients */
.quote-clients { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 8px; }
.quote-clients li {
    display:flex; align-items:center; gap:8px;
    font-size: 13px; color: var(--text-primary);
    padding: 6px 0;
    border-bottom: 1px dashed var(--border);
}
.quote-clients li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 11px;
}
.quote-clients li:last-child { border-bottom:none; }
.quote-clients li em { color: var(--text-secondary); font-style: italic; }
.quote-clients li em::before { display:none; }

/* Success message */
.quote-success {
    display:flex; align-items:center; gap: 16px;
    background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(16,185,129,.05));
    border: 1px solid rgba(16,185,129,.4);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}
.quote-success i { font-size: 36px; color: var(--accent); }
.quote-success h3 { margin: 0 0 4px; color: var(--text-primary); font-size: 17px; }
.quote-success p { margin: 0; color: var(--text-secondary); font-size: 14px; }

/* Responsive */
@media (max-width: 1024px) {
    .quote-grid { grid-template-columns: 1fr; }
    .quote-side { position: static; }
}
@media (max-width: 720px) {
    .quote-hero__grid { grid-template-columns: 1fr; gap: 24px; }
    .quote-hero__title { font-size: 32px; }
    .quote-hero__stats { grid-template-columns: repeat(3, 1fr); }
    .quote-row--2 { grid-template-columns: 1fr; }
    .quote-checks { grid-template-columns: 1fr; }
    .quote-instruments__head { display:none; }
    .quote-instrument-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px;
        background: rgba(255,255,255,.02);
        border: 1px solid var(--border);
        border-radius: 10px;
    }
    .quote-row-remove { width: 100%; }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-hero { padding: 80px 0; text-align: center; background: linear-gradient(180deg, rgba(0,150,255,.06) 0%, transparent 100%); }
.about-hero__tag { display: inline-block; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; padding: 6px 16px; background: rgba(0,150,255,.1); border-radius: 20px; }
.about-hero__title { font-size: 56px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.about-hero__desc { max-width: 800px; margin: 0 auto 40px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.about-hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 700px; margin: 0 auto 40px; }
.about-hero__stat { text-align: center; }
.about-hero__stat-num { display: block; font-size: 32px; font-weight: 800; color: var(--accent); }
.about-hero__stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.about-hero__cta { display: flex; gap: 16px; justify-content: center; }

.about-pillars { padding: 80px 0; }
.about-pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.about-pillar { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 32px; text-align: center; }
.about-pillar__icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,150,255,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; color: var(--accent); }
.about-pillar h3 { color: #fff; font-size: 20px; margin-bottom: 12px; }
.about-pillar p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.about-story { padding: 80px 0; background: var(--card-bg); }
.about-story__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; margin-top: 40px; }
.about-story__content p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-story__quote { border-left: 3px solid var(--accent); padding: 16px 24px; margin: 24px 0; background: rgba(0,150,255,.05); border-radius: 0 12px 12px 0; color: #ccc; font-style: italic; }
.about-story__quote cite { display: block; margin-top: 8px; font-size: 13px; color: var(--accent); font-style: normal; }
.about-story__facts { display: flex; flex-direction: column; gap: 16px; }
.about-story__fact { display: flex; align-items: center; gap: 16px; padding: 16px; background: rgba(0,150,255,.05); border: 1px solid var(--border); border-radius: 12px; }
.about-story__fact i { font-size: 22px; color: var(--accent); width: 40px; text-align: center; }
.about-story__fact strong { color: #fff; display: block; font-size: 15px; }
.about-story__fact span { color: var(--muted); font-size: 13px; }

.about-certs { padding: 80px 0; }
.about-certs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.about-cert { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; }
.about-cert__flag { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.about-cert h4 { color: #fff; font-size: 16px; margin-bottom: 10px; }
.about-cert p { color: var(--muted); font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.about-cert__id { font-size: 11px; color: var(--accent); background: rgba(0,150,255,.1); padding: 4px 10px; border-radius: 4px; }

.about-values { padding: 80px 0; background: var(--card-bg); }
.about-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.about-value { text-align: center; padding: 28px 20px; border: 1px solid var(--border); border-radius: 16px; }
.about-value__icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,150,255,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; color: var(--accent); }
.about-value h4 { color: #fff; font-size: 15px; margin-bottom: 10px; }
.about-value p { color: var(--muted); font-size: 13px; line-height: 1.6; }

.about-team { padding: 80px 0; }
.about-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.about-team__member { text-align: center; padding: 32px 20px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; }
.about-team__avatar { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 24px; font-weight: 800; color: #fff; }
.about-team__member h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.about-team__member span { color: var(--muted); font-size: 13px; }

.about-offices { padding: 80px 0; background: var(--card-bg); }
.about-offices__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.about-office { text-align: center; padding: 28px 20px; border: 1px solid var(--border); border-radius: 16px; }
.about-office__icon { font-size: 28px; color: var(--accent); margin-bottom: 12px; }
.about-office h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.about-office p { color: var(--accent); font-size: 13px; margin-bottom: 4px; }
.about-office span { color: var(--muted); font-size: 12px; }

.about-partners { padding: 80px 0; }
.about-partners__logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 40px; }
.about-partners__logo { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; color: var(--muted); font-size: 13px; display: flex; align-items: center; justify-content: center; min-height: 80px; }

.about-cta { padding: 80px 0; text-align: center; background: linear-gradient(180deg, transparent, rgba(0,150,255,.08)); border-top: 1px solid var(--border); }
.about-cta h2 { color: #fff; font-size: 32px; margin-bottom: 12px; }
.about-cta p { color: var(--muted); margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.about-cta__btns { display: flex; gap: 16px; justify-content: center; }

@media (max-width: 1024px) {
    .about-hero__stats { grid-template-columns: repeat(2, 1fr); }
    .about-pillars__grid, .about-certs__grid, .about-values__grid, .about-team__grid, .about-offices__grid { grid-template-columns: repeat(2, 1fr); }
    .about-story__grid { grid-template-columns: 1fr; }
    .about-partners__logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .about-hero__title { font-size: 36px; }
    .about-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .about-hero__cta { flex-direction: column; align-items: center; }
    .about-pillars__grid, .about-certs__grid, .about-values__grid, .about-team__grid, .about-offices__grid { grid-template-columns: 1fr; }
    .about-partners__logos { grid-template-columns: repeat(2, 1fr); }
    .about-cta__btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   CONTACT US PAGE
   ============================================================ */
.contact-hero { padding: 60px 0; text-align: center; background: linear-gradient(180deg, rgba(0,150,255,.06) 0%, transparent 100%); }
.contact-hero__title { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.contact-hero__desc { color: var(--muted); max-width: 600px; margin: 0 auto 30px; font-size: 15px; }
.contact-hero__methods { display: flex; gap: 16px; justify-content: center; }
.contact-method { display: flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; color: #fff; text-decoration: none; font-weight: 600; font-size: 14px; transition: all .2s; }
.contact-method:hover { border-color: var(--accent); color: var(--accent); }
.contact-method--whatsapp { border-color: #25d366; color: #25d366; }
.contact-method i { font-size: 18px; }

.contact-channels { padding: 40px 0; }
.contact-channels__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-channel { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; }
.contact-channel i { font-size: 28px; color: var(--accent); margin-bottom: 12px; }
.contact-channel h4 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.contact-channel p { color: #fff; font-size: 14px; margin-bottom: 4px; }
.contact-channel span { color: var(--muted); font-size: 12px; }

.contact-main { padding: 60px 0; }
.contact-main__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.contact-form-wrap h2 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--muted); margin-bottom: 24px; font-size: 14px; }

.contact-form .form-group { margin-bottom: 18px; }
.contact-form .form-group label { display: block; color: #ccc; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select { width: 100%; padding: 12px 16px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; color: #fff; font-size: 14px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); outline: none; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; display: block; }
.contact-form .form-section-title { color: var(--accent); font-size: 14px; font-weight: 700; margin: 24px 0 12px; text-transform: uppercase; letter-spacing: 1px; }
.contact-form .form-radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-form .form-radio { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 8px; color: #ccc; font-size: 13px; cursor: pointer; transition: all .2s; }
.contact-form .form-radio:has(input:checked) { border-color: var(--accent); background: rgba(0,150,255,.08); color: var(--accent); }
.contact-form .form-radio input { accent-color: var(--accent); }
.contact-form input[type="file"] { padding: 10px; background: rgba(255,255,255,.03); border: 1px dashed var(--border); border-radius: 10px; color: var(--muted); font-size: 13px; }

.star-rating { display: flex; gap: 4px; margin-top: 6px; }
.star-rating i { font-size: 20px; color: var(--border); cursor: pointer; transition: color .2s; }
.star-rating i.active, .star-rating i:hover { color: #ffc107; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-sidebar__card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.contact-sidebar__card h3 { color: #fff; font-size: 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.contact-sidebar__card h3 i { color: var(--accent); }
.contact-sidebar__card--cta { background: linear-gradient(135deg, rgba(0,150,255,.1), rgba(0,150,255,.02)); border-color: var(--accent); }
.contact-sidebar__card--cta p { color: var(--muted); font-size: 13px; margin-bottom: 16px; line-height: 1.6; }

.contact-office-list { display: flex; flex-direction: column; gap: 12px; }
.contact-office-item { display: flex; align-items: center; gap: 10px; }
.contact-office-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.contact-office-dot--green { background: #4caf50; }
.contact-office-item strong { color: #fff; font-size: 14px; display: block; }
.contact-office-item p { color: var(--muted); font-size: 12px; margin: 0; }

.contact-hours { width: 100%; border-collapse: collapse; }
.contact-hours td { padding: 8px 0; font-size: 13px; color: #ccc; border-bottom: 1px solid var(--border); }
.contact-hours td:last-child { text-align: right; color: var(--muted); }
.contact-hours tr.closed td { color: #e74c3c; }
.contact-hours__note { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; color: #4caf50; }

.contact-connect-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.connect-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity .2s; }
.connect-btn--whatsapp { background: #25d366; color: #fff; }
.connect-btn--linkedin { background: #0077b5; color: #fff; }
.connect-btn--email { background: rgba(255,255,255,.1); color: #fff; border: 1px solid var(--border); }

.contact-map { padding: 60px 0; }
.contact-map h2 { color: #fff; font-size: 28px; margin-bottom: 20px; text-align: center; }
.contact-map__tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; }
.contact-map__tab { padding: 10px 20px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; color: var(--muted); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.contact-map__tab.active, .contact-map__tab:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,150,255,.08); }
.contact-map__placeholder { text-align: center; padding: 80px 20px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; }
.contact-map__placeholder i { font-size: 48px; color: var(--accent); margin-bottom: 12px; }
.contact-map__placeholder p { color: var(--muted); margin-bottom: 16px; }

.contact-faq { padding: 60px 0; background: var(--card-bg); }
.contact-faq h2 { color: #fff; font-size: 28px; margin-bottom: 30px; text-align: center; }
.contact-faq__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.contact-faq__item { padding: 24px; border: 1px solid var(--border); border-radius: 14px; }
.contact-faq__item h4 { color: #fff; font-size: 15px; margin-bottom: 10px; }
.contact-faq__item p { color: var(--muted); font-size: 13px; line-height: 1.7; }

@media (max-width: 1024px) {
    .contact-main__grid { grid-template-columns: 1fr; }
    .contact-channels__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .contact-hero__title { font-size: 30px; }
    .contact-hero__methods { flex-direction: column; align-items: center; }
    .contact-channels__grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-faq__grid { grid-template-columns: 1fr; }
    .contact-map__tabs { flex-wrap: wrap; }
}

/* ============================================================
   CART & CHECKOUT PAGE
   ============================================================ */
.cart-progress { padding: 30px 0; border-bottom: 1px solid var(--border); }
.cart-progress__steps { display: flex; align-items: center; justify-content: center; gap: 0; }
.cart-progress__step { display: flex; align-items: center; gap: 8px; padding: 8px 16px; }
.cart-progress__num { width: 32px; height: 32px; border-radius: 50%; background: var(--card-bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--muted); }
.cart-progress__step.active .cart-progress__num { background: var(--accent); border-color: var(--accent); color: #fff; }
.cart-progress__step.completed .cart-progress__num { background: #4caf50; border-color: #4caf50; color: #fff; }
.cart-progress__label { font-size: 13px; color: var(--muted); font-weight: 600; }
.cart-progress__step.active .cart-progress__label { color: #fff; }
.cart-progress__line { width: 40px; height: 2px; background: var(--border); }

.cart-section { padding: 40px 0; }
.cart-section__title { color: #fff; font-size: 28px; margin-bottom: 24px; }
.cart-section__count { font-size: 16px; color: var(--muted); font-weight: 400; margin-left: 8px; }

.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }

.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 16px; align-items: center; padding: 20px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 16px; }
.cart-item__image img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; background: rgba(255,255,255,.05); }
.cart-item__name a { color: #fff; font-size: 15px; font-weight: 600; text-decoration: none; }
.cart-item__name a:hover { color: var(--accent); }
.cart-item__sku { font-size: 11px; color: var(--muted); display: block; margin-top: 4px; }
.cart-item__desc { font-size: 12px; color: var(--muted); margin-top: 4px; }
.cart-item__stock { font-size: 11px; color: #4caf50; margin-top: 6px; display: block; }
.cart-item__price-label { color: var(--accent); font-weight: 700; font-size: 16px; }

.cart-item__quantity { display: flex; align-items: center; gap: 0; }
.qty-btn { width: 32px; height: 32px; background: rgba(255,255,255,.05); border: 1px solid var(--border); color: #fff; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.qty-btn:hover { background: var(--accent); border-color: var(--accent); }
.qty-minus { border-radius: 8px 0 0 8px; }
.qty-plus { border-radius: 0 8px 8px 0; }
.qty-input { width: 44px; height: 32px; text-align: center; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-left: none; border-right: none; color: #fff; font-size: 14px; font-weight: 600; }

.cart-item__actions { display: flex; flex-direction: column; gap: 6px; }
.cart-item__save, .cart-item__remove { background: none; border: none; color: var(--muted); font-size: 12px; cursor: pointer; display: flex; align-items: center; gap: 4px; padding: 4px 8px; border-radius: 6px; transition: all .2s; }
.cart-item__save:hover { color: var(--accent); background: rgba(0,150,255,.08); }
.cart-item__remove:hover { color: #e74c3c; background: rgba(231,76,60,.08); }

.cart-empty { text-align: center; padding: 60px 20px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; }
.cart-empty i { font-size: 48px; color: var(--border); margin-bottom: 16px; }
.cart-empty h3 { color: #fff; margin-bottom: 8px; }
.cart-empty p { color: var(--muted); margin-bottom: 20px; }

/* Cart Shipping Info */
.cart-shipping-info { margin-top: 30px; padding: 28px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; }
.cart-shipping-info h2 { color: #fff; font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.cart-shipping-info h2 i { color: var(--accent); }
.cart-shipping-info .form-group { margin-bottom: 16px; }
.cart-shipping-info .form-group label { display: block; color: #ccc; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.cart-shipping-info .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cart-shipping-info input, .cart-shipping-info select { width: 100%; padding: 12px 16px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; color: #fff; font-size: 14px; }
.cart-shipping-info input:focus, .cart-shipping-info select:focus { border-color: var(--accent); outline: none; }

.shipping-speed__options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.shipping-speed__option { cursor: pointer; }
.shipping-speed__option input { display: none; }
.shipping-speed__card { display: block; padding: 16px; background: rgba(255,255,255,.03); border: 2px solid var(--border); border-radius: 12px; text-align: center; transition: all .2s; }
.shipping-speed__option input:checked + .shipping-speed__card { border-color: var(--accent); background: rgba(0,150,255,.06); }
.shipping-speed__card strong { display: block; color: #fff; font-size: 14px; margin-bottom: 4px; }
.shipping-speed__card em { display: block; color: var(--accent); font-style: normal; font-weight: 700; font-size: 16px; }
.shipping-speed__card small { color: var(--muted); font-size: 12px; }

/* Cart Payment */
.cart-payment { margin-top: 24px; padding: 28px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; }
.cart-payment h2 { color: #fff; font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.cart-payment h2 i { color: var(--accent); }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option { cursor: pointer; }
.payment-option input { display: none; }
.payment-option__card { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(255,255,255,.03); border: 2px solid var(--border); border-radius: 12px; transition: all .2s; }
.payment-option input:checked + .payment-option__card { border-color: var(--accent); background: rgba(0,150,255,.06); }
.payment-option__card i { font-size: 20px; color: var(--accent); width: 28px; text-align: center; }
.payment-option__card strong { color: #fff; font-size: 14px; }
.payment-option__card small { color: var(--muted); font-size: 12px; margin-left: auto; }

/* Order Summary Sidebar */
.cart-sidebar { position: sticky; top: 100px; }
.order-summary { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.order-summary h3 { color: #fff; font-size: 18px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.order-summary h3 i { color: var(--accent); }
.order-summary__items { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.order-summary__item { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13px; }
.order-summary__item-name { color: #ccc; flex: 1; }
.order-summary__item-qty { color: var(--muted); }
.order-summary__item-price { color: #fff; font-weight: 600; }
.order-summary__totals { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.order-summary__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: #ccc; }
.order-summary__total { display: flex; justify-content: space-between; padding: 12px 0; }
.order-summary__total span:first-child { color: #fff; font-size: 16px; font-weight: 700; }
.order-summary__total-price { color: var(--accent); font-size: 22px; font-weight: 800; }
.order-summary__tax-note { font-size: 11px; color: var(--muted); display: block; margin-bottom: 16px; }
.text-green { color: #4caf50 !important; }

.promo-code { display: flex; gap: 8px; margin-bottom: 16px; }
.promo-code__input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; color: #fff; font-size: 13px; }
.promo-code__btn { padding: 10px 18px; background: rgba(255,255,255,.08); border: 1px solid var(--border); border-radius: 10px; color: #fff; font-weight: 600; font-size: 13px; cursor: pointer; transition: all .2s; }
.promo-code__btn:hover { background: var(--accent); border-color: var(--accent); }

.order-summary__secure { text-align: center; font-size: 11px; color: var(--muted); margin-top: 12px; }
.order-summary__secure i { color: #4caf50; }
.order-summary__payment-icons { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); text-align: center; }
.order-summary__payment-icons span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.payment-icons { display: flex; justify-content: center; gap: 12px; }
.payment-icons i { font-size: 20px; color: var(--muted); }

/* Frequently Bought Together */
.cart-frequently { margin-top: 20px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.cart-frequently h3 { color: #fff; font-size: 15px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.cart-frequently h3 i { color: #ffc107; }
.cart-frequently__item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cart-frequently__item:last-child { border-bottom: none; }
.cart-frequently__img img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }
.cart-frequently__info { flex: 1; }
.cart-frequently__info span { color: #ccc; font-size: 13px; display: block; }
.cart-frequently__info strong { color: var(--accent); font-size: 14px; }

@media (max-width: 1024px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-sidebar { position: static; }
    .cart-item { grid-template-columns: 60px 1fr; gap: 12px; }
    .cart-item__price, .cart-item__quantity, .cart-item__actions { grid-column: 2; }
}
@media (max-width: 640px) {
    .cart-progress__label { display: none; }
    .cart-shipping-info .form-row, .shipping-speed__options { grid-template-columns: 1fr; }
}

/* ============================================================
   MY ACCOUNT DASHBOARD
   ============================================================ */
.account-login-section { padding: 60px 0 80px; }

/* Auth Wrapper */
.account-auth-wrapper { max-width: 480px; margin: 0 auto; }
.account-auth-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
#register-box { display: none; }
.account-auth-box__header { text-align: center; margin-bottom: 28px; }
.account-auth-box__header i { font-size: 36px; color: var(--accent-green); margin-bottom: 12px; display: block; }
.account-auth-box__header h2 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.account-auth-box__header p { color: var(--text-muted); font-size: 14px; }

/* Auth Form */
.account-auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-form__group { display: flex; flex-direction: column; gap: 6px; }
.auth-form__group label { color: #ccc; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.auth-form__group label i { color: var(--accent-green); font-size: 12px; }
.auth-form__group input {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    transition: border-color .2s;
}
.auth-form__group input:focus { border-color: var(--accent-green); outline: none; }
.auth-form__group input::placeholder { color: #666; }

.auth-form__row { display: flex; justify-content: space-between; align-items: center; }
.auth-form__checkbox { color: #aaa; font-size: 13px; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.auth-form__checkbox input { accent-color: var(--accent-green); }
.auth-form__link { color: var(--accent-green); font-size: 13px; text-decoration: none; }
.auth-form__link:hover { text-decoration: underline; }
.auth-form__note { color: var(--text-muted); font-size: 12px; text-align: center; }
.auth-form__note i { color: var(--accent-green); margin-right: 4px; }

.account-auth-box__switch { text-align: center; color: #999; font-size: 13px; margin-top: 20px; }
.account-auth-box__switch a { color: var(--accent-green); text-decoration: none; font-weight: 600; }
.account-auth-box__switch a:hover { text-decoration: underline; }

/* Trust Signals */
.account-auth-trust { display: flex; justify-content: center; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.account-auth-trust__item { color: #999; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.account-auth-trust__item i { color: var(--accent-green); }

/* Legacy login box */
.account-login-box { max-width: 480px; margin: 0 auto; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 40px; text-align: center; }
.account-login-box h2 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.account-login-box p { color: var(--muted); margin-bottom: 24px; }

.account-section { padding: 30px 0 60px; }
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }

/* Sidebar */
.account-sidebar { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; position: sticky; top: 100px; }
.account-sidebar__profile { text-align: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.account-sidebar__avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 22px; font-weight: 800; color: #fff; }
.account-sidebar__profile h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.account-sidebar__profile span { color: var(--muted); font-size: 12px; display: block; margin-bottom: 10px; }
.account-sidebar__heading { display: block; font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin: 16px 0 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.account-sidebar__heading:first-of-type { border-top: none; padding-top: 0; }
.account-sidebar__nav { display: flex; flex-direction: column; gap: 2px; }
.account-sidebar__link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; color: #ccc; font-size: 13px; font-weight: 500; text-decoration: none; transition: all .2s; }
.account-sidebar__link:hover { background: rgba(255,255,255,.04); color: #fff; }
.account-sidebar__link.active { background: rgba(0,150,255,.1); color: var(--accent); }
.account-sidebar__link i { width: 18px; text-align: center; font-size: 14px; }
.account-sidebar__link .badge { margin-left: auto; background: var(--accent); color: #fff; font-size: 10px; padding: 2px 7px; border-radius: 10px; font-weight: 700; }
.account-sidebar__logout { margin-top: 20px; }

/* Main Content */
.account-welcome { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.account-welcome h2 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.account-welcome__date { color: var(--muted); font-size: 13px; }
.wave { display: inline-block; }

.account-loyalty { background: linear-gradient(135deg, rgba(0,150,255,.1), rgba(0,150,255,.03)); border: 1px solid var(--accent); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.account-loyalty__header { margin-bottom: 12px; }
.account-loyalty__header span { color: #ffc107; font-weight: 700; font-size: 14px; }
.account-loyalty__header small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.account-loyalty__number { font-size: 40px; font-weight: 800; color: var(--accent); display: block; }
.account-loyalty__points small { color: var(--muted); font-size: 12px; }
.account-loyalty__progress { height: 6px; background: var(--border); border-radius: 3px; margin: 12px 0 8px; overflow: hidden; }
.account-loyalty__bar { height: 100%; background: var(--accent); border-radius: 3px; }
.account-loyalty__next { color: var(--muted); font-size: 12px; }

.account-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.account-stat { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 20px; text-align: center; }
.account-stat__num { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.account-stat__label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin: 4px 0; }
.account-stat small { font-size: 11px; color: var(--accent); }

.account-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.account-card h3 { color: #fff; font-size: 18px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.account-card h3 i { color: var(--accent); }
.account-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.account-card__header h3 { margin-bottom: 0; }

.account-table-wrap { overflow-x: auto; }
.account-table { width: 100%; border-collapse: collapse; }
.account-table th { text-align: left; padding: 10px 12px; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--border); }
.account-table td { padding: 12px; font-size: 13px; color: #ccc; border-bottom: 1px solid var(--border); }
.account-table tr:last-child td { border-bottom: none; }
.order-id { color: var(--accent); font-weight: 600; text-decoration: none; }
.order-id:hover { text-decoration: underline; }
.order-status { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; text-transform: capitalize; }
.order-status--completed { background: rgba(76,175,80,.15); color: #4caf50; }
.order-status--processing { background: rgba(0,150,255,.15); color: var(--accent); }
.order-status--pending { background: rgba(255,193,7,.15); color: #ffc107; }
.order-status--on-hold { background: rgba(255,152,0,.15); color: #ff9800; }

.account-empty { text-align: center; padding: 30px; color: var(--muted); font-size: 14px; }
.account-empty i { font-size: 32px; color: var(--border); margin-bottom: 10px; display: block; }
.account-empty a { color: var(--accent); }

.account-wishlist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.account-wishlist-item { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; }
.account-wishlist-item__img img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; }
.account-wishlist-item h4 { color: #fff; font-size: 13px; margin-bottom: 6px; }
.account-wishlist-item__price { color: var(--accent); font-weight: 700; font-size: 14px; display: block; margin-bottom: 10px; }
.account-wishlist-item__actions { display: flex; gap: 6px; justify-content: center; }

.account-addresses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.account-address-card { border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.account-address-card__type { display: inline-block; font-size: 11px; font-weight: 700; color: var(--accent); background: rgba(0,150,255,.1); padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; text-transform: uppercase; }
.account-address-card p { color: #ccc; font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
.account-address-card__actions { display: flex; gap: 8px; }

@media (max-width: 1024px) {
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
}
@media (max-width: 640px) {
    .account-stats { grid-template-columns: 1fr; }
    .account-wishlist-grid, .account-addresses-grid { grid-template-columns: 1fr; }
}

/* ── WooCommerce Blocks Cart: Fix Interactions ── */
.wc-block-cart .wc-block-cart-items,
.wc-block-cart .wc-block-cart-items__row,
.wc-block-cart-items .wc-block-cart-items__row {
    position: relative;
    z-index: 2;
}
.wc-block-cart .wc-block-components-quantity-selector,
.wc-block-cart .wc-block-cart-item__remove-link,
.wc-block-cart-items__row button,
.wc-block-cart-items__row input {
    position: relative;
    z-index: 5;
    pointer-events: auto !important;
    cursor: pointer;
}
.wc-block-cart .wc-block-components-sidebar,
.wc-block-cart .wc-block-cart__sidebar {
    position: relative;
    z-index: 1;
}

/* ── WooCommerce Cart: Proceed to Checkout Button ── */
.wc-block-cart__submit-button,
.wc-block-components-button.wc-block-cart__submit-button,
a.wc-block-cart__submit-button,
.wc-block-cart .wc-block-cart__submit-button,
.wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout .button,
.wc-proceed-to-checkout a,
a.checkout-button,
.woocommerce .checkout-button {
    display: block !important;
    width: 100% !important;
    padding: 18px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-align: center !important;
    background: var(--accent-green) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, .3);
    transition: all .3s ease !important;
    cursor: pointer;
    margin-top: 12px;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-button.wc-block-cart__submit-button:hover,
a.wc-block-cart__submit-button:hover,
.wc-proceed-to-checkout a:hover,
a.checkout-button:hover,
.woocommerce .checkout-button:hover {
    background: var(--accent-green-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, .4);
}

/* ── Hide Quick View, Wishlist & Compare plugin buttons on product cards ── */
.yith-wcqv-button,
.yith-wcwl-add-to-wishlist,
.yith-woocompare-button,
a.compare.button,
a.quick-view-button,
.product-card .quick-view,
.product-card .compare,
.woocommerce ul.products li.product .yith-wcqv-button,
.woocommerce ul.products li.product .button.yith-wcqv-button,
.woocommerce .product a.compare,
.woocommerce .product .yith-wcwl-add-to-wishlist {
    display: none !important;
}
