@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Brand palette from logo */
    --brand-blue: #00ADEF;
    --brand-pink: #EC008C;
    --brand-navy: #005A8C;
    --brand-black: #0a0a0a;

    --ink: #111827;
    --ink-soft: #374151;
    --ink-muted: #6b7280;
    --surface: #f8fafc;
    --surface-elevated: #ffffff;
    --surface-dark: var(--brand-black);
    --accent: var(--brand-blue);
    --accent-hover: #0095d0;
    --accent-soft: rgba(0, 173, 239, 0.1);
    --highlight: var(--brand-pink);
    --highlight-hover: #c4006f;
    --highlight-soft: rgba(236, 0, 140, 0.08);
    --line: rgba(17, 24, 39, 0.08);
    --line-strong: rgba(17, 24, 39, 0.14);
    --shadow-sm: 0 1px 3px rgba(17, 24, 39, 0.06);
    --shadow-md: 0 8px 30px rgba(17, 24, 39, 0.08);
    --shadow-lg: 0 20px 50px rgba(17, 24, 39, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --whatsapp-green: #22c55e;
    --container: min(1200px, 92vw);
    --nav-height: 76px;

    /* legacy aliases for other pages */
    --brand-gold: #D4AF37;
    --primary-blue: var(--brand-blue);
    --primary-pink: var(--brand-pink);
    --accent-gold: var(--brand-gold);
    --dark-text: var(--ink);
    --light-bg: var(--surface);
    --white: var(--surface-elevated);
    --dark-bg: var(--surface-dark);
    --shadow: var(--shadow-md);
    --teal: var(--brand-blue);
    --teal-soft: rgba(0, 173, 239, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(0, 173, 239, 0.06);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-pink) 100%);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 4vw;
}

.brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: 54px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.brand-mark {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
}

.brand-mark em {
    font-style: normal;
    color: var(--accent);
}

.brand-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--accent-soft);
    color: var(--brand-navy);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle {
    background: var(--accent-soft);
    color: var(--brand-navy);
}

.nav-dropdown.open .nav-dropdown-toggle i,
.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    max-height: 360px;
    overflow-y: auto;
    background: var(--surface-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
    background: var(--accent-soft);
    color: var(--brand-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface-elevated);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.icon-btn:hover {
    border-color: var(--line-strong);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.icon-btn sup {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--highlight);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn.whatsapp-btn {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: #fff;
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface-elevated);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.25s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── SEARCH MODAL ─── */
body.search-open {
    overflow: hidden;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: calc(var(--nav-height) + 24px) 16px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
}

.search-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(4px);
}

.search-modal-panel {
    position: relative;
    width: min(640px, 100%);
    background: var(--surface-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(-12px);
    transition: transform 0.2s;
}

.search-modal.open .search-modal-panel {
    transform: translateY(0);
}

.search-modal-form {
    padding: 16px 16px 0;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border: 1.5px solid var(--line-strong);
    border-radius: 999px;
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-wrap:focus-within {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.search-input-wrap > i {
    color: var(--ink-muted);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.search-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    outline: none;
    min-width: 0;
}

.search-input-wrap input::placeholder {
    color: var(--ink-muted);
}

.search-close-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--ink-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.search-close-btn:hover {
    background: var(--highlight-soft);
    color: var(--highlight);
}

.search-status {
    padding: 12px 20px 0;
    font-size: 0.82rem;
    color: var(--ink-muted);
    font-weight: 600;
}

.search-results {
    max-height: min(52vh, 420px);
    overflow-y: auto;
    padding: 8px 10px 12px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.search-result-item:hover,
.search-result-item.active {
    background: var(--accent-soft);
}

.search-result-image {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #f3f1ed;
    border: 1px solid var(--line);
    flex-shrink: 0;
}

.search-result-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-result-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-price {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--brand-blue);
    letter-spacing: -0.02em;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 173, 239, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-pink), #a8005c);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 0, 140, 0.28);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--ink);
    background: var(--surface-elevated);
}

.btn-accent {
    background: var(--highlight);
    color: #fff;
}

.btn-accent:hover {
    background: var(--highlight-hover);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1.5px solid var(--line-strong);
    border-radius: 999px;
    color: var(--ink);
    background: var(--surface-elevated);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: 0.2s;
}

.btn-outline:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.link-accent {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.link-accent:hover {
    color: var(--brand-pink);
}

.btn-cart, .btn-whatsapp {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.btn-cart { background: var(--brand-navy); color: #fff; }
.btn-cart:hover { background: var(--highlight); }
.btn-whatsapp { background: var(--whatsapp-green); color: #fff; }

/* ─── LAYOUT ─── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 4vw;
}

section {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 48px;
}

.section-head.center {
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-pink);
    margin-bottom: 12px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--ink);
}

.section-head p {
    margin-top: 14px;
    color: var(--ink-muted);
    font-size: 1.02rem;
    max-width: 560px;
}

.section-head.center p {
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* legacy section titles */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}
.section-title h2::after { display: none; }
.section-subtitle {
    color: var(--ink-muted);
    max-width: 620px;
    margin: 12px auto 0;
    font-size: 1rem;
}

.page-header {
    padding: 56px 4vw 48px;
    background: var(--surface-elevated);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 8px;
}

.page-header .eyebrow {
    display: block;
    margin-bottom: 0;
}

.page-header p, .breadcrumb {
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin-top: 8px;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

/* ─── PRODUCT CARDS ─── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 173, 239, 0.25);
}

.product-thumb-link {
    display: block;
    text-decoration: none;
}

.product-thumb {
    aspect-ratio: 1;
    background: linear-gradient(145deg, #f1f5f9 0%, #e8edf2 100%);
    overflow: hidden;
    position: relative;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.06);
}

.product-thumb-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 173, 239, 0.35);
    font-size: 2.4rem;
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-pink);
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(236, 0, 140, 0.3);
}

.product-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
    min-height: 2.9em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card h3 a {
    text-decoration: none;
    color: var(--ink);
    transition: color 0.2s;
}

.product-card h3 a:hover {
    color: var(--brand-blue);
}

.product-card-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.product-price-old {
    text-decoration: line-through;
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.product-price {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--brand-blue);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.btn-view-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 6px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0, 173, 239, 0.22);
}

.btn-view-details:hover {
    background: linear-gradient(135deg, var(--brand-pink), #a8005c);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(236, 0, 140, 0.28);
}

.btn-view-details i {
    font-size: 0.72rem;
    transition: transform 0.2s;
}

.product-card:hover .btn-view-details i {
    transform: translateX(3px);
}

/* legacy price/button aliases */
.price-container { min-width: 0; }
.old-price { text-decoration: line-through; color: var(--ink-muted); font-size: 0.78rem; }
.new-price { font-weight: 800; font-size: 1.05rem; color: var(--brand-blue); }
.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    transition: 0.2s;
}
.btn-details:hover { background: linear-gradient(135deg, var(--brand-pink), #a8005c); color: #fff; }
.btn-details i { font-size: 0.72rem; }

/* ─── CATEGORY CARDS ─── */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f1ed;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-img img { transform: scale(1.06); }

.card-body {
    padding: 20px 22px 24px;
}

.card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.card-body p {
    color: var(--ink-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ─── FOOTER ─── */
footer {
    background: var(--brand-black);
    color: #e5e7eb;
    padding: 72px 4vw 32px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-pink) 100%);
}

.footer-grid {
    max-width: var(--container);
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
}

.footer-brand .brand-logo {
    height: 64px;
    max-width: 260px;
    margin-bottom: 16px;
    filter: brightness(1.05);
}

.footer-brand .brand-mark {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col h4::after { display: none; }

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--brand-blue); }

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.2s;
}

.footer-socials a:hover {
    background: var(--highlight);
    border-color: var(--highlight);
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright { color: #6b7280; font-size: 0.85rem; }

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
}

.legal-links a:hover { color: #fff; }

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

.empty-state {
    text-align: center;
    padding: 60px 24px;
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--line-strong);
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ─── HOMEPAGE ─── */
.home-hero {
    padding: 64px 0 72px;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 173, 239, 0.08) 0%, transparent 70%);
    top: -180px;
    right: -120px;
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 0, 140, 0.06) 0%, transparent 70%);
    bottom: -160px;
    left: -100px;
    pointer-events: none;
}

.home-hero-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.home-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 20px;
}

.home-hero-copy h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-hero-copy > p {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-trust span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust i {
    color: var(--brand-blue);
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 50%;
    flex-shrink: 0;
}

.home-hero-visual {
    position: relative;
    min-height: 420px;
}

.hero-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    height: 100%;
}

.hero-tile {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-elevated);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-tile:first-child {
    grid-row: span 2;
}

.hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 180px;
}

.hero-tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.82));
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}

.hero-tile-fallback {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f1ed, #e8e4de);
    color: var(--accent);
    font-size: 2.5rem;
}

/* ─── TRUST BAR ─── */
.home-trust-bar {
    padding: 0 0 64px;
    background: linear-gradient(180deg, var(--surface) 0%, #ffffff 100%);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.trust-bar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 22px;
    background: var(--surface-elevated);
}

.trust-bar-item i {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.trust-bar-item:nth-child(even) i {
    background: var(--highlight-soft);
    color: var(--brand-pink);
}

.trust-bar-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.trust-bar-item span {
    font-size: 0.78rem;
    color: var(--ink-muted);
    line-height: 1.45;
}

.home-products {
    background: #ffffff;
}

/* ─── BEGINNER KITS ─── */
.home-kits {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.kits-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.kits-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.kits-orb-a {
    width: 420px;
    height: 420px;
    background: rgba(0, 173, 239, 0.22);
    top: -120px;
    left: -80px;
}

.kits-orb-b {
    width: 360px;
    height: 360px;
    background: rgba(236, 0, 140, 0.14);
    bottom: -100px;
    right: -60px;
}

.home-kits .container {
    position: relative;
    z-index: 1;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.kit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 28px 32px;
    border-radius: var(--radius-lg);
    background: var(--surface-elevated);
    border: 1.5px solid var(--line);
    text-align: center;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
    box-shadow: var(--shadow-sm);
}

.kit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.kit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.kit-card.kit-pink {
    border-color: rgba(236, 0, 140, 0.18);
    box-shadow: 0 8px 32px rgba(236, 0, 140, 0.08);
}

.kit-card.kit-pink:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(236, 0, 140, 0.14);
}

.kit-card.kit-blue::before { background: linear-gradient(90deg, var(--brand-blue), #5dd4ff); }
.kit-card.kit-pink::before { background: linear-gradient(90deg, var(--brand-pink), #ff6ec7); }
.kit-card.kit-gold::before { background: linear-gradient(90deg, var(--brand-gold), #f0d060); }

.kit-card.kit-blue { border-color: rgba(0, 173, 239, 0.2); }
.kit-card.kit-gold { border-color: rgba(212, 175, 55, 0.28); }

.kit-badge {
    position: absolute;
    top: 18px;
    right: -34px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 44px;
    transform: rotate(45deg);
    color: #fff;
    z-index: 2;
}

.kit-blue .kit-badge { background: var(--brand-blue); }
.kit-pink .kit-badge { background: var(--brand-pink); }
.kit-gold .kit-badge { background: var(--brand-gold); color: var(--ink); }

.kit-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    transition: transform 0.35s;
}

.kit-card:hover .kit-icon {
    transform: scale(1.08) rotate(-4deg);
}

.kit-blue .kit-icon {
    background: var(--accent-soft);
    color: var(--brand-blue);
}

.kit-pink .kit-icon {
    background: var(--highlight-soft);
    color: var(--brand-pink);
}

.kit-gold .kit-icon {
    background: rgba(212, 175, 55, 0.14);
    color: #a8860a;
}

.kit-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: var(--ink);
}

.kit-sub {
    font-size: 0.82rem;
    color: var(--ink-muted);
    margin-bottom: 18px;
}

.kit-price {
    font-family: var(--font-display);
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 6px;
}

.kit-blue .kit-price { color: var(--brand-blue); }
.kit-pink .kit-price { color: var(--brand-pink); }
.kit-gold .kit-price { color: #a8860a; }

.kit-price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.kit-was {
    font-size: 0.82rem;
    color: var(--ink-muted);
    text-decoration: line-through;
}

.kit-save {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.kit-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.kit-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.45;
}

.kit-features li i {
    font-size: 0.82rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.kit-blue .kit-features li i { color: var(--brand-blue); }
.kit-pink .kit-features li i { color: var(--brand-pink); }
.kit-gold .kit-features li i { color: var(--brand-gold); }

.kit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: auto;
}

.kit-btn:hover {
    transform: translateY(-2px);
}

.kit-blue .kit-btn {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    box-shadow: 0 8px 24px rgba(0, 173, 239, 0.35);
}

.kit-blue .kit-btn:hover {
    box-shadow: 0 12px 32px rgba(0, 173, 239, 0.45);
}

.kit-pink .kit-btn {
    background: linear-gradient(135deg, var(--brand-pink), #a8005c);
    box-shadow: 0 8px 24px rgba(236, 0, 140, 0.32);
}

.kit-pink .kit-btn:hover {
    box-shadow: 0 12px 32px rgba(236, 0, 140, 0.42);
}

.kit-gold .kit-btn {
    background: linear-gradient(135deg, #c9a227, #8a6d0a);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.kit-gold .kit-btn:hover {
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

.kits-footnote {
    text-align: center;
    margin-top: 40px;
    font-size: 0.88rem;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.kits-footnote i {
    color: var(--brand-blue);
    font-size: 0.82rem;
}

.home-craft {
    background: var(--brand-black);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 88px 0;
}

.home-craft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-pink) 100%);
    z-index: 2;
}

.craft-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.craft-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
}

.craft-glow-a {
    width: 480px;
    height: 480px;
    background: rgba(0, 173, 239, 0.22);
    top: -160px;
    left: -120px;
}

.craft-glow-b {
    width: 420px;
    height: 420px;
    background: rgba(236, 0, 140, 0.18);
    bottom: -140px;
    right: -100px;
}

.home-craft .container {
    position: relative;
    z-index: 1;
}

.craft-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 52px;
}

.craft-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 14px;
}

.craft-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
}

.craft-head p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.craft-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 26px 16px 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.craft-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
}

.craft-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.craft-card-blue:hover {
    border-color: rgba(0, 173, 239, 0.55);
    box-shadow: 0 16px 40px rgba(0, 173, 239, 0.15);
}

.craft-card-pink:hover {
    border-color: rgba(236, 0, 140, 0.5);
    box-shadow: 0 16px 40px rgba(236, 0, 140, 0.12);
}

.craft-card:hover::before {
    opacity: 1;
}

.craft-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.craft-card-blue .craft-card-icon {
    background: rgba(0, 173, 239, 0.15);
    color: var(--brand-blue);
    border: 1px solid rgba(0, 173, 239, 0.25);
}

.craft-card-pink .craft-card-icon {
    background: rgba(236, 0, 140, 0.12);
    color: var(--brand-pink);
    border: 1px solid rgba(236, 0, 140, 0.22);
}

.craft-card:hover .craft-card-icon {
    transform: scale(1.08);
}

.craft-card-blue:hover .craft-card-icon {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
}

.craft-card-pink:hover .craft-card-icon {
    background: var(--brand-pink);
    color: #fff;
    border-color: var(--brand-pink);
}

.craft-card-label {
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

.craft-card-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.25s, transform 0.25s, background 0.25s, color 0.25s;
}

.craft-card:hover .craft-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.craft-card-blue:hover .craft-card-arrow {
    background: rgba(0, 173, 239, 0.2);
    color: var(--brand-blue);
}

.craft-card-pink:hover .craft-card-arrow {
    background: rgba(236, 0, 140, 0.18);
    color: var(--brand-pink);
}

.craft-cta {
    text-align: center;
    margin-top: 40px;
}

.craft-btn {
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.craft-btn:hover {
    border-color: var(--brand-blue);
    background: rgba(0, 173, 239, 0.12);
    color: #fff;
}

.home-steps {
    background: var(--surface);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface-elevated);
}

.step-block {
    padding: 36px 28px;
    border-right: 1px solid var(--line);
    position: relative;
}

.step-block:last-child { border-right: none; }

.step-block .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.85;
}

.step-block h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-block p {
    font-size: 0.88rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.home-benefits {
    background: var(--surface-elevated);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    padding: 28px 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--surface);
    transition: 0.25s;
}

.benefit-card:hover {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-sm);
}

.benefit-card:nth-child(even):hover {
    border-color: var(--brand-pink);
}

.benefit-card i {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.benefit-card:nth-child(even) i {
    background: var(--highlight-soft);
    color: var(--brand-pink);
}

.benefit-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.84rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

.home-promo {
    padding: 0 4vw 80px;
}

.promo-banner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 52px 48px;
    border-radius: var(--radius-xl);
    background: linear-gradient(125deg, var(--brand-black) 0%, #0d2840 50%, #3d0040 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 173, 239, 0.15);
}

.promo-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 173, 239, 0.18);
    top: -100px;
    right: -60px;
    pointer-events: none;
}

.promo-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(236, 0, 140, 0.12);
    bottom: -80px;
    left: 10%;
    pointer-events: none;
}

.promo-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 420px;
    position: relative;
}

.promo-banner p {
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    font-size: 0.95rem;
    max-width: 400px;
    position: relative;
}

.promo-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.promo-actions .btn-ghost {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.promo-actions .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.home-faq {
    background: var(--surface);
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 4px 0;
}

.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
    color: var(--ink-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.home-reviews {
    background: var(--surface-elevated);
    border-top: 1px solid var(--line);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--surface);
}

.review-card .stars {
    color: var(--brand-gold);
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.65;
    font-style: italic;
}

.review-card strong {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--ink-muted);
    font-style: normal;
}

/* ─── FAQ PAGE ─── */
.faq-page-main {
    padding: 64px 0 96px;
    background: var(--surface);
}

.faq-page-layout {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-page .faq-item {
    background: var(--surface-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-page .faq-item.active {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-sm);
}

.faq-page .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink);
    line-height: 1.45;
}

.faq-page .faq-question:hover {
    color: var(--highlight);
}

.faq-page .faq-question i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: transform 0.3s, background 0.3s;
}

.faq-page .faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--brand-blue);
    color: #fff;
}

.faq-page .faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--ink-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-page .faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 22px 22px;
}

.faq-page .faq-answer p {
    margin-bottom: 10px;
}

.faq-page .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-help-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: var(--ink);
    color: #fff;
}

.faq-help-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.faq-help-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-help-card .btn-accent {
    width: 100%;
}

.faq-help-links {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface-elevated);
}

.faq-help-links h4 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 14px;
}

.faq-help-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    transition: color 0.2s;
}

.faq-help-links a:last-child {
    border-bottom: none;
}

.faq-help-links a:hover {
    color: var(--highlight);
}

.faq-help-links a i {
    width: 20px;
    color: var(--accent);
}

.faq-empty {
    padding: 48px 32px;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--line-strong);
    background: var(--surface-elevated);
}

.faq-empty i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.faq-empty h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.faq-empty p {
    color: var(--ink-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .faq-page-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .craft-grid { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--surface-elevated);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 4vw 24px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        gap: 4px;
    }

    .nav-links.active { display: flex; }
    .nav-links a,
    .nav-dropdown-toggle { border-radius: var(--radius-sm); }
    .hamburger { display: flex; }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        max-height: none;
        margin-top: 4px;
        padding: 0 0 8px 8px;
        border: none;
        border-left: 2px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.open:hover .nav-dropdown-menu {
        display: block;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-hero-visual { min-height: 320px; }

    .kits-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .kit-card.kit-pink { transform: none; }
    .kit-card.kit-pink:hover { transform: translateY(-8px); }

    .steps-row { grid-template-columns: 1fr; }
    .step-block {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .step-block:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
    section { padding: 56px 0; }

    .brand-logo {
        height: 44px;
        max-width: 180px;
    }

    .trust-bar-grid { grid-template-columns: 1fr; }
    .craft-grid { grid-template-columns: repeat(2, 1fr); }
    .kits-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .kit-card.kit-pink { transform: none; }
    .kit-card.kit-pink:hover { transform: translateY(-8px); }
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .promo-banner { padding: 36px 28px; }
}

/* ─── CART PAGE ─── */
.cart-page .cart-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 32px 4vw 88px;
}

.cart-page .cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

@media (min-width: 992px) {
    .cart-page .cart-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 32px;
    }
}

.cart-page .cart-panel {
    background: var(--surface-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cart-page .cart-panel-head {
    display: none;
    grid-template-columns: minmax(0, 1fr) 120px 110px;
    gap: 20px;
    padding: 16px 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

@media (min-width: 768px) {
    .cart-page .cart-panel-head {
        display: grid;
    }
}

.cart-page .cart-items-list {
    display: flex;
    flex-direction: column;
}

.cart-page .cart-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 20px;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: background 0.2s;
}

.cart-page .cart-item:last-child {
    border-bottom: none;
}

.cart-page .cart-item:hover {
    background: rgba(0, 173, 239, 0.02);
}

@media (min-width: 768px) {
    .cart-page .cart-item {
        grid-template-columns: 96px minmax(0, 1fr) 120px 110px;
        gap: 20px;
        padding: 24px;
        align-items: center;
    }
}

.cart-page .cart-item-media {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cart-page .cart-item-media {
        width: 96px;
        height: 96px;
    }
}

.cart-page .cart-item-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 8px;
}

.cart-page .cart-item-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.25s;
}

.cart-page .cart-item-media a:hover img {
    transform: scale(1.05);
}

.cart-page .cart-item-body {
    min-width: 0;
}

@media (min-width: 768px) {
    .cart-page .cart-item-body {
        grid-column: 2;
    }
}

.cart-page .cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.cart-page .cart-item-name {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.35;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.cart-page .cart-item-name:hover {
    color: var(--brand-blue);
}

.cart-page .cart-item-variant {
    font-size: 0.82rem;
    color: var(--ink-muted);
    margin: 0 0 8px;
}

.cart-page .cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.cart-page .cart-unit-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin: 0;
}

.cart-page .cart-unit-price.wholesale-active {
    color: #059669;
}

.cart-page .cart-bulk-badge {
    display: none;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-page .cart-unit-price.wholesale-active + .cart-bulk-badge,
.cart-page .cart-bulk-badge.is-visible {
    display: inline-flex;
}

.cart-page .cart-item-remove {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface-elevated);
    color: var(--ink-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cart-page .cart-item-remove:hover {
    border-color: rgba(236, 0, 140, 0.35);
    background: var(--highlight-soft);
    color: var(--brand-pink);
}

.cart-page .cart-item-qty {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .cart-page .cart-item-qty {
        grid-column: 3;
        grid-row: 1;
        margin-top: 0;
        justify-content: center;
    }
}

.cart-page .cart-item-qty-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (min-width: 768px) {
    .cart-page .cart-item-qty-label {
        display: none;
    }
}

.cart-page .qty-box {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--line-strong);
    border-radius: 999px;
    background: var(--surface-elevated);
    overflow: hidden;
    height: 40px;
}

.cart-page .qty-box button {
    width: 38px;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--brand-blue);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cart-page .qty-box button:hover {
    background: var(--accent-soft);
    color: var(--brand-navy);
}

.cart-page .qty-box input {
    width: 44px;
    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-weight: 700;
    font-size: 0.92rem;
    outline: none;
    background: transparent;
    color: var(--ink);
    -moz-appearance: textfield;
}

.cart-page .qty-box input::-webkit-inner-spin-button,
.cart-page .qty-box input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-page .cart-item-total {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px dashed var(--line);
}

@media (min-width: 768px) {
    .cart-page .cart-item-total {
        grid-column: 4;
        grid-row: 1;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        padding-top: 0;
        margin-top: 0;
        border-top: none;
    }
}

.cart-page .cart-item-total-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (min-width: 768px) {
    .cart-page .cart-item-total-label {
        display: none;
    }
}

.cart-page .cart-line-total {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.cart-page .cart-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-page .shipping-promo {
    background: linear-gradient(135deg, rgba(0, 173, 239, 0.08), rgba(236, 0, 140, 0.06));
    border: 1px solid rgba(0, 173, 239, 0.2);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.cart-page .shipping-promo-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--brand-navy);
}

.cart-page .shipping-promo-head i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-elevated);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    box-shadow: var(--shadow-sm);
}

.cart-page .shipping-promo.is-unlocked {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(0, 173, 239, 0.08));
    border-color: rgba(34, 197, 94, 0.25);
}

.cart-page .shipping-promo.is-unlocked .shipping-promo-head {
    color: #059669;
}

.cart-page .shipping-promo.is-unlocked .shipping-promo-head i {
    color: #059669;
}

.cart-page .progress-bar {
    height: 8px;
    background: rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    margin-top: 12px;
    overflow: hidden;
}

.cart-page .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-pink));
    border-radius: 999px;
    transition: width 0.45s ease;
}

.cart-page .order-summary {
    background: var(--surface-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: calc(var(--nav-height) + 16px);
}

.cart-page .order-summary h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.cart-page .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.cart-page .summary-row span:last-child {
    font-weight: 700;
    color: var(--ink);
}

.cart-page .summary-divider {
    height: 1px;
    background: var(--line);
    margin: 16px 0;
}

.cart-page .summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink);
}

.cart-page .summary-total span:last-child {
    font-size: 1.35rem;
    color: var(--brand-navy);
    letter-spacing: -0.02em;
}

.cart-page .summary-note {
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.cart-page .checkout-btn {
    width: 100%;
    margin-top: 8px;
    padding: 16px 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 173, 239, 0.3);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.cart-page .checkout-btn:hover {
    background: linear-gradient(135deg, var(--brand-pink), #a8005c);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 0, 140, 0.28);
}

.cart-page .cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.cart-page .continue-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--line-strong);
    background: var(--surface-elevated);
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: border-color 0.2s, transform 0.2s;
}

.cart-page .continue-shop:hover {
    border-color: var(--ink);
    transform: translateY(-1px);
}

.cart-page .cart-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.cart-page .cart-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.cart-page .cart-trust-item i {
    color: var(--brand-blue);
    font-size: 0.85rem;
}

.cart-page .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 72px 32px;
    min-height: 320px;
}

.cart-page .cart-empty-icon {
    width: 88px;
    height: 88px;
    margin: 0 0 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-soft), var(--highlight-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-blue);
}

.cart-page .cart-empty h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ink);
    width: 100%;
}

.cart-page .cart-empty p {
    color: var(--ink-muted);
    max-width: 360px;
    margin: 0 0 24px;
    width: 100%;
}

.cart-page .cart-empty .btn {
    margin: 0;
}

.cart-page .cart-header-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--brand-navy);
    font-size: 0.82rem;
    font-weight: 700;
}
