/* ============================================
   Lead-Mail — Light Minimal Sales Theme
   ============================================ */

:root {
    --white: #ffffff;
    --bg: #ffffff;
    --bg-light: #f7f8fa;
    --bg-card: #ffffff;
    --border: #e5e7eb;
    --border-light: #f0f1f3;
    --text: #111827;
    --text-sub: #4b5563;
    --text-muted: #9ca3af;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --green: #059669;
    --green-light: #ecfdf5;
    --red: #dc2626;
    --red-light: #fef2f2;
    --yellow: #f59e0b;
    --yellow-light: #fffbeb;
    --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 4px 12px rgba(0,0,0,.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,.08);
    --radius: 10px;
    --radius-sm: 6px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text-sub); font-size: 14px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--primary); text-decoration: none; transition: .2s; }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.section { padding: 56px 0; }
.bg-light { background: var(--bg-light); }

/* ---------- Top Strip ---------- */
.top-strip { background: var(--text); color: rgba(255,255,255,.8); font-size: 12px; padding: 6px 0; }
.top-strip .container { display: flex; justify-content: space-between; align-items: center; }
.strip-left, .strip-right { display: flex; gap: 16px; }
.top-strip span { display: flex; align-items: center; gap: 5px; }
.top-strip i { font-size: 10px; color: rgba(255,255,255,.5); }

/* ---------- Navbar ---------- */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    padding: 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 56px; }

.logo { display: flex; align-items: center; gap: 8px; font-size: 20px; color: var(--text); }
.logo i { color: var(--primary); font-size: 18px; }
.logo b { color: var(--primary); }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
    padding: 6px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500;
    color: var(--text-sub); transition: .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }

.nav-right { display: flex; align-items: center; gap: 8px; }

.cart-btn {
    position: relative; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    color: var(--text-sub); border-radius: 50%; transition: .2s;
}
.cart-btn:hover { background: var(--bg-light); color: var(--primary); }
.cart-count {
    position: absolute; top: -2px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--primary); color: #fff; border-radius: 50px; font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

.nav-dropdown { position: relative; }
.dropdown-panel {
    position: absolute; top: calc(100% + 6px); right: 0; min-width: 180px;
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-md); padding: 6px;
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s; z-index: 50;
}
.nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-panel a {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px;
    color: var(--text-sub); border-radius: var(--radius-sm); font-size: 13px;
}
.dropdown-panel a:hover { background: var(--bg-light); color: var(--primary); }
.dropdown-panel a i { width: 16px; text-align: center; font-size: 12px; }

.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 1px; transition: .2s; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 13px;
    border: none; cursor: pointer; transition: .2s; font-family: var(--font); line-height: 1.4; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-light { background: var(--bg-light); color: var(--text-sub); border: 1px solid var(--border); }
.btn-light:hover { border-color: var(--primary); color: var(--primary); }
.btn-white { background: #fff; color: var(--text); }
.btn-white:hover { background: #f0f0f0; color: var(--text); }
.btn-danger { background: var(--red); color: #fff; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 12px 24px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }
.hide-sm {}

/* ---------- Toast ---------- */
.toast-bar { padding: 10px 0; font-size: 13px; font-weight: 500; animation: slideDown .3s; }
.toast-success { background: var(--green-light); color: var(--green); }
.toast-error { background: var(--red-light); color: var(--red); }
.toast-bar .container { display: flex; justify-content: space-between; align-items: center; }
.toast-bar button { background: none; border: none; color: inherit; font-size: 18px; cursor: pointer; line-height: 1; }

.alert { padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.alert-error { background: var(--red-light); color: var(--red); }
.alert-success { background: var(--green-light); color: var(--green); }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--border-light);
}
.hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.hero-text .badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; background: var(--white); border: 1px solid var(--border);
    border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--green); margin-bottom: 16px;
}
.hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text); line-height: 1.15; margin-bottom: 12px; letter-spacing: -.5px; }
.hero h1 span { color: var(--primary); }
.hero-text > p { font-size: 15px; color: var(--text-sub); margin-bottom: 20px; max-width: 500px; line-height: 1.6; }
.hero-btns { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.hero-pills { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-pills span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.hero-pills i { color: var(--green); font-size: 10px; }

.hero-stats-box {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hs-item {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 16px 20px; text-align: center; min-width: 120px;
}
.hs-item strong { display: block; font-size: 22px; font-weight: 800; color: var(--text); }
.hs-item small { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }

/* ========== TRUST BAR ========== */
.trust-bar { border-bottom: 1px solid var(--border-light); padding: 16px 0; }
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-items > div { display: flex; align-items: center; gap: 10px; }
.trust-items > div > i { font-size: 18px; color: var(--primary); }
.trust-items strong { display: block; font-size: 13px; color: var(--text); }
.trust-items small { font-size: 11px; color: var(--text-muted); }

/* ========== SECTION HEADS ========== */
.sec-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.sec-head.center { flex-direction: column; align-items: center; text-align: center; }
.sec-head h2 { font-size: 22px; font-weight: 800; color: var(--text); }
.sec-head p { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.see-all { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ========== CATEGORY GRID ========== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; }
.cat-card {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); transition: .2s; text-decoration: none; color: var(--text-sub);
}
.cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-xs); color: var(--primary); }
.cat-icon { width: 38px; height: 38px; background: var(--primary-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 15px; flex-shrink: 0; }
.cat-card strong { display: block; font-size: 13px; color: var(--text); }
.cat-card small { font-size: 11px; color: var(--text-muted); }
.cat-arrow { margin-left: auto; color: var(--text-muted); font-size: 11px; transition: .2s; }
.cat-card:hover .cat-arrow { color: var(--primary); transform: translateX(2px); }

/* ========== PRODUCT CARDS ========== */
.product-grid, .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; }

.p-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 18px; position: relative; display: flex; flex-direction: column; transition: .2s;
}
.p-card:hover { box-shadow: var(--shadow); border-color: #d1d5db; }

.p-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--red); color: #fff; padding: 2px 8px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
}
.p-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.p-cat { font-size: 11px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: .3px; }
.p-rating { font-size: 12px; color: var(--yellow); }
.p-rating i { font-size: 11px; }

.p-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.p-card h3 a { color: var(--text); }
.p-card h3 a:hover { color: var(--primary); }

.p-desc {
    font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}
.p-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-sub); margin-bottom: 12px; }
.p-meta i { color: var(--primary); margin-right: 3px; font-size: 11px; }

.p-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 12px; border-top: 1px solid var(--border-light); margin-top: auto;
}
.p-price { display: flex; align-items: center; gap: 6px; }
.p-price del { color: var(--text-muted); font-size: 13px; }
.p-price strong { font-size: 20px; font-weight: 800; color: var(--text); }

/* product fields tags */
.product-fields { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.field-tag { padding: 2px 8px; background: var(--bg-light); border-radius: 50px; font-size: 11px; color: var(--text-sub); }
.field-tag.more { background: var(--primary-light); color: var(--primary); }

/* ========== STEPS ========== */
.steps { display: flex; align-items: center; justify-content: center; gap: 0; }
.step { text-align: center; flex: 1; max-width: 240px; padding: 20px; }
.step-num {
    width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; margin: 0 auto 12px;
}
.step h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--text-muted); }
.step-line { width: 60px; height: 2px; background: var(--border); flex-shrink: 0; }

/* ========== REVIEWS ========== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.review-stars { color: var(--yellow); margin-bottom: 10px; font-size: 13px; display: flex; gap: 2px; }
.review-card > p { font-size: 14px; color: var(--text-sub); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.avatar {
    width: 36px; height: 36px; background: var(--primary); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}
.review-author strong { display: block; font-size: 13px; color: var(--text); }
.review-author small { font-size: 11px; color: var(--text-muted); }

/* ========== CTA ========== */
.cta { background: var(--primary); color: #fff; text-align: center; padding: 48px 0; }
.cta h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.cta p { font-size: 14px; opacity: .85; margin-bottom: 20px; }
.cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ========== PAGE BANNER ========== */
.page-banner { background: var(--bg-light); padding: 24px 0; border-bottom: 1px solid var(--border-light); }
.page-banner h1 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-sub); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 8px; }

/* ========== PRODUCTS PAGE ========== */
.products-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }

.products-sidebar {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 18px; position: sticky; top: 72px;
}
.sidebar-close { display: none; position: absolute; top: 12px; right: 12px; font-size: 18px; cursor: pointer; color: var(--text-muted); }

.sidebar-widget { margin-bottom: 20px; }
.sidebar-widget:last-child { margin-bottom: 0; }
.sidebar-widget h4 { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }

.search-form { display: flex; }
.search-form input {
    flex: 1; padding: 8px 10px; background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-size: 12px; color: var(--text);
    font-family: var(--font); outline: none;
}
.search-form input:focus { border-color: var(--primary); }
.search-form button { padding: 8px 12px; background: var(--primary); border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: #fff; cursor: pointer; }

.category-list { list-style: none; }
.category-list li a {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 10px; color: var(--text-sub); border-radius: var(--radius-sm); font-size: 12px; transition: .15s;
}
.category-list li a:hover, .category-list li a.active { background: var(--primary-light); color: var(--primary); }
.category-list li a i { width: 16px; text-align: center; font-size: 11px; }
.category-list .count { margin-left: auto; font-size: 11px; color: var(--text-muted); }

.products-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 10px; flex-wrap: wrap; }
.toolbar-left { display: flex; align-items: center; gap: 10px; }
.results-count { font-size: 12px; color: var(--text-muted); }
.filter-toggle { display: none; }

.sort-select {
    padding: 6px 10px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
    font-size: 12px; color: var(--text); font-family: var(--font); cursor: pointer; outline: none;
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.page-btn {
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-sub); font-size: 13px; font-weight: 600; transition: .15s;
}
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 48px; color: var(--text-muted); opacity: .3; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; color: var(--text); margin-bottom: 6px; }
.empty-state p { color: var(--text-muted); margin-bottom: 16px; font-size: 13px; }

/* ========== PRODUCT DETAIL ========== */
.product-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }

.product-detail-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.pd-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.product-detail-card h1 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.2; }

.pd-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-sub); margin-bottom: 16px; flex-wrap: wrap; }
.pd-rating .stars { color: var(--yellow); }
.pd-rating .divider { color: var(--border); }
.pd-description { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

.data-preview, .product-specs { margin-bottom: 24px; }
.data-preview h3, .product-specs h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }

.fields-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }
.field-item { display: flex; align-items: center; gap: 6px; font-size: 13px; padding: 6px 10px; background: var(--bg-light); border-radius: var(--radius-sm); }
.field-item i { color: var(--green); font-size: 11px; }

.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.spec-item { padding: 10px 12px; background: var(--bg-light); border-radius: var(--radius-sm); }
.spec-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .3px; }
.spec-value { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 2px; display: block; }

.purchase-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 22px; position: sticky; top: 72px;
}
.purchase-price { text-align: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.purchase-price .price-current { font-size: 32px; font-weight: 800; color: var(--text); }
.purchase-price .price-old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; display: block; margin-bottom: 2px; }
.purchase-price .price-save { font-size: 12px; color: var(--green); font-weight: 600; display: block; margin-top: 2px; }
.purchase-card .btn { margin-bottom: 8px; }

.purchase-features { margin-top: 16px; }
.pf-item { display: flex; align-items: center; gap: 8px; padding: 7px 0; font-size: 13px; color: var(--text-sub); border-bottom: 1px solid var(--border-light); }
.pf-item:last-child { border-bottom: none; }
.pf-item i { color: var(--green); width: 16px; text-align: center; font-size: 12px; }

.trust-card { background: var(--bg-light); border-radius: var(--radius); padding: 18px; margin-top: 16px; }
.trust-card h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.trust-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 13px; color: var(--text-sub); }
.trust-row i { color: var(--primary); width: 16px; text-align: center; font-size: 12px; }

.related-products { margin-top: 48px; }
.related-products h2 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 16px; }

/* ========== CART ========== */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }

.cart-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-header-row {
    display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 40px;
    padding: 10px 16px; background: var(--bg-light); font-size: 11px; font-weight: 700;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: .3px;
}
.cart-row { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 40px; padding: 14px 16px; align-items: center; border-bottom: 1px solid var(--border-light); }
.cart-row:last-child { border-bottom: none; }

.cart-product { display: flex; align-items: center; gap: 10px; }
.cart-product-icon { width: 40px; height: 40px; background: var(--primary-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 15px; flex-shrink: 0; }
.cart-product-name { font-weight: 600; color: var(--text); font-size: 13px; display: block; }
.cart-product-meta { font-size: 11px; color: var(--text-muted); }
.cart-price { font-size: 13px; }
.cart-price .price-old { font-size: 11px; display: block; color: var(--text-muted); text-decoration: line-through; }

.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.qty-btn { width: 28px; height: 28px; background: var(--bg-light); border: none; color: var(--text); font-size: 13px; cursor: pointer; transition: .15s; }
.qty-btn:hover { background: var(--primary-light); color: var(--primary); }
.qty-control span { width: 30px; text-align: center; font-weight: 600; font-size: 13px; color: var(--text); }
.cart-total { font-weight: 700; color: var(--text); font-size: 14px; }
.btn-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 13px; transition: .15s; padding: 6px; }
.btn-remove:hover { color: var(--red); }

.summary-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; position: sticky; top: 72px; }
.summary-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13px; color: var(--text-sub); }
.summary-total { font-size: 16px; font-weight: 700; color: var(--text); }
.summary-divider { height: 1px; background: var(--border-light); margin: 8px 0; }
.text-success { color: var(--green); }

.coupon-form { display: flex; gap: 6px; margin: 10px 0; }
.coupon-form input { flex: 1; padding: 7px 10px; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 12px; color: var(--text); font-family: var(--font); outline: none; }
.summary-card .btn { margin-top: 8px; }
.summary-trust { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border-light); }
.summary-trust span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.summary-trust i { color: var(--green); font-size: 11px; }
.summary-item { display: flex; justify-content: space-between; align-items: start; padding: 7px 0; border-bottom: 1px solid var(--border-light); font-size: 13px; }
.summary-item strong { color: var(--text); font-size: 12px; display: block; }
.summary-item .qty { color: var(--text-muted); font-size: 11px; }

/* ========== CHECKOUT ========== */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.checkout-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; }
.checkout-card h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }

.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.payment-option { cursor: pointer; }
.payment-option input { display: none; }
.payment-box { padding: 12px; background: var(--bg-light); border: 2px solid var(--border); border-radius: var(--radius-sm); text-align: center; transition: .15s; }
.payment-box i { font-size: 20px; display: block; margin-bottom: 4px; color: var(--text-muted); }
.payment-box span { font-size: 11px; font-weight: 600; color: var(--text-sub); }
.payment-option input:checked + .payment-box { border-color: var(--primary); background: var(--primary-light); }
.payment-option input:checked + .payment-box i, .payment-option input:checked + .payment-box span { color: var(--primary); }

/* ========== AUTH ========== */
.auth-section { padding: 48px 0; min-height: 70vh; display: flex; align-items: center; background: var(--bg-light); }
.auth-card { max-width: 420px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.auth-header { text-align: center; margin-bottom: 24px; }
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.auth-logo .logo-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; }
.auth-logo .logo-name { font-size: 22px; font-weight: 800; color: var(--text); }
.auth-logo .logo-name b { color: var(--primary); }
.auth-header h2 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.auth-header p { font-size: 13px; color: var(--text-muted); }
.auth-footer { text-align: center; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border-light); font-size: 13px; color: var(--text-muted); }
.auth-footer a { color: var(--primary); font-weight: 600; }

/* ========== FORMS ========== */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-sub); margin-bottom: 4px; }
.form-group label i { margin-right: 3px; color: var(--primary); font-size: 11px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 9px 12px; background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); font-size: 13px; font-family: var(--font); outline: none; transition: .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.08); }
.form-group textarea { resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }

.password-input { position: relative; }
.toggle-password { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; }

.form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.form-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-sub); cursor: pointer; margin-bottom: 12px; }
.checkbox-label input[type="checkbox"] { accent-color: var(--primary); }
.forgot-link { font-size: 12px; color: var(--primary); }
.form-actions { display: flex; gap: 10px; margin-top: 16px; }

/* ========== ORDERS ========== */
.orders-list { display: flex; flex-direction: column; gap: 12px; }
.order-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.order-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; background: var(--bg-light); flex-wrap: wrap; gap: 8px; }
.order-number { font-weight: 700; color: var(--text); font-size: 14px; margin-right: 10px; }
.order-date { font-size: 12px; color: var(--text-muted); }
.order-status { padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 700; }
.status-completed, .status-paid { background: var(--green-light); color: var(--green); }
.status-pending { background: var(--yellow-light); color: var(--yellow); }
.status-processing { background: var(--primary-light); color: var(--primary); }
.status-cancelled, .status-failed { background: var(--red-light); color: var(--red); }
.status-refunded { background: #f3e8ff; color: #7c3aed; }
.status-admin { background: var(--primary-light); color: var(--primary); }
.status-customer { background: var(--green-light); color: var(--green); }

.order-body { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; flex-wrap: wrap; gap: 8px; }
.order-info { display: flex; gap: 14px; font-size: 13px; color: var(--text-sub); flex-wrap: wrap; }
.order-info i { margin-right: 3px; }
.order-total strong { font-size: 18px; color: var(--text); }
.order-items { padding: 0 18px 12px; }
.order-item-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 12px; color: var(--text-sub); border-bottom: 1px solid var(--border-light); }
.order-item-row:last-child { border-bottom: none; }
.order-item-row i { color: var(--primary); margin-right: 4px; }
.order-actions { padding: 0 18px 12px; }

/* ========== ACCOUNT ========== */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }
.account-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; }
.avatar-circle { width: 64px; height: 64px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: #fff; margin: 0 auto 10px; }
.account-sidebar h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.account-sidebar > p { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.account-stats { display: flex; justify-content: center; gap: 24px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light); }
.acc-stat strong { display: block; font-size: 16px; color: var(--text); }
.acc-stat span { font-size: 11px; color: var(--text-muted); }
.account-nav { text-align: left; }
.account-nav a { display: flex; align-items: center; gap: 8px; padding: 8px 10px; color: var(--text-sub); border-radius: var(--radius-sm); font-size: 13px; transition: .15s; }
.account-nav a:hover, .account-nav a.active { background: var(--primary-light); color: var(--primary); }
.account-nav a i { width: 16px; text-align: center; font-size: 12px; }
.account-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; }
.account-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }

/* ========== CONTACT ========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-info h2 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.contact-info > p { margin-bottom: 20px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-card-item { background: var(--bg-light); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 18px; transition: .15s; }
.contact-card-item:hover { border-color: var(--primary); }
.cci-icon { width: 36px; height: 36px; background: var(--primary-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 14px; margin-bottom: 8px; }
.contact-card-item h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-card-item p { font-size: 12px; }
.contact-form-wrapper { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }

/* ========== ABOUT ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-content h2 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.about-content p { margin-bottom: 12px; line-height: 1.7; }
.section-badge { display: inline-block; padding: 4px 12px; background: var(--primary-light); color: var(--primary); border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.gradient-text { color: var(--primary); }
.about-highlights { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.highlight { display: flex; align-items: flex-start; gap: 10px; }
.highlight > i { color: var(--green); font-size: 16px; margin-top: 2px; }
.highlight h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.highlight p { font-size: 12px; margin-bottom: 0; }
.about-stats-side { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; transition: .15s; }
.about-stat-card:hover { border-color: var(--primary); }
.asc-icon { font-size: 22px; color: var(--primary); margin-bottom: 6px; }
.asc-number { font-size: 24px; font-weight: 800; color: var(--text); }
.asc-label { font-size: 12px; color: var(--text-muted); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: .15s; }
.service-card:hover { border-color: var(--primary); }
.sc-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary); margin-bottom: 12px; }
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.service-card p { font-size: 13px; line-height: 1.6; }

.services-detailed { display: flex; flex-direction: column; gap: 20px; }
.service-detail-card { display: grid; grid-template-columns: 80px 1fr; gap: 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; align-items: start; }
.sd-icon { width: 64px; height: 64px; background: var(--primary-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--primary); }
.sd-content h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sd-content p { margin-bottom: 12px; line-height: 1.6; }
.sd-features { list-style: none; margin-bottom: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sd-features li { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-sub); }
.sd-features i { color: var(--green); font-size: 12px; }

/* ========== FOOTER ========== */
.footer { background: #111827; color: rgba(255,255,255,.6); padding: 40px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 28px; }
.footer-brand .logo { color: #fff; margin-bottom: 10px; }
.footer-brand .logo b { color: #60a5fa; }
.footer-brand .logo i { color: #60a5fa; }
.footer-brand p { font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 32px; height: 32px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 13px; transition: .15s; }
.social-links a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.5); padding: 3px 0; transition: .15s; }
.footer-col a:hover { color: #fff; }
.footer-col a i { margin-right: 6px; font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.4); margin-left: 14px; }
.footer-bottom a:hover { color: #fff; }

/* ========== ANIMATIONS ========== */
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeInUp { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .trust-items { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid, .cart-layout, .checkout-layout, .order-success-layout { grid-template-columns: 1fr; }
    .about-grid, .contact-layout { grid-template-columns: 1fr; }
    .account-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-strip .strip-left span:nth-child(2) { display: none; }
    .nav-links {
        position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
        background: var(--white); flex-direction: column; padding: 12px;
        transform: translateX(-100%); transition: .25s; z-index: 99;
        border-top: 1px solid var(--border);
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a { padding: 12px 14px; border-bottom: 1px solid var(--border-light); font-size: 14px; }
    .hamburger { display: flex; }
    .hide-sm { display: none; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-stats-box { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 26px; }

    .trust-items { grid-template-columns: 1fr 1fr; gap: 10px; }
    .products-layout { grid-template-columns: 1fr; }
    .products-sidebar {
        position: fixed; top: 0; left: 0; bottom: 0; width: 280px; z-index: 200;
        transform: translateX(-100%); transition: .25s; border-radius: 0; overflow-y: auto;
        box-shadow: var(--shadow-md);
    }
    .products-sidebar.active { transform: translateX(0); }
    .sidebar-close { display: block; }
    .filter-toggle { display: inline-flex; }

    .product-grid, .products-grid { grid-template-columns: 1fr 1fr; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .steps { flex-direction: column; }
    .step-line { width: 2px; height: 32px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .cart-header-row { display: none; }
    .cart-row { grid-template-columns: 1fr; gap: 8px; }
    .payment-methods { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .form-row-3 { grid-template-columns: 1fr; }
    .service-detail-card { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .sd-features { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .pending-steps { flex-wrap: wrap; }
    .order-item-right { flex-direction: column; align-items: flex-end; gap: 4px; }
    .captcha-box { flex-direction: column; }
    .captcha-question { min-width: auto; width: 100%; }
    .checkout-auth-links { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero { padding: 32px 0 24px; }
    .hero h1 { font-size: 22px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-stats-box { grid-template-columns: 1fr 1fr; }
    .hero-pills { flex-direction: column; }
    .cat-grid { grid-template-columns: 1fr; }
    .product-grid, .products-grid { grid-template-columns: 1fr; }
    .about-stats-side { grid-template-columns: 1fr 1fr; }
    .section { padding: 36px 0; }
    .auth-card { padding: 20px; }
    .cta h2 { font-size: 20px; }
    .cta-btns { flex-direction: column; align-items: center; }
}

/* ========== SAMPLE DOWNLOAD ========== */
.sample-download-section { margin-top: 16px; }
.sample-divider {
    display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.sample-divider::before, .sample-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border-light);
}
.sample-divider span {
    font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
}
.sample-btn { border-color: var(--green); color: var(--green); }
.sample-btn:hover { background: var(--green-light); border-color: var(--green); color: var(--green); }
.sample-limit-info {
    display: block; text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 6px;
}
.sample-limit-info.limit-reached { color: var(--red); }
.purchased-badge {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 8px; margin: 8px 0; background: var(--green-light);
    border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; color: var(--green);
}

/* ========== CAPTCHA ========== */
.captcha-group { margin-bottom: 14px; }
.captcha-box {
    display: flex; align-items: center; gap: 10px;
}
.captcha-question {
    display: flex; align-items: center; justify-content: center;
    min-width: 120px; padding: 9px 14px;
    background: var(--primary-light); border: 2px solid var(--primary);
    border-radius: var(--radius-sm); font-size: 16px; font-weight: 800;
    color: var(--primary); letter-spacing: 1px; white-space: nowrap;
}
.captcha-input {
    flex: 1; padding: 9px 12px; background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); font-size: 15px; font-weight: 600;
    font-family: var(--font); outline: none; text-align: center;
}
.captcha-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.08); }

/* ========== CHECKOUT CRYPTO ========== */
.checkout-note { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.auth-divider {
    display: flex; align-items: center; gap: 12px; margin: 16px 0;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.auth-divider span { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.checkout-auth-links { display: flex; gap: 8px; }
.checkout-auth-links .btn { flex: 1; justify-content: center; }
.checkout-user-info p { font-size: 13px; margin-bottom: 2px; }
.checkout-user-info strong { color: var(--text); }

.crypto-payment-info { padding: 16px; background: var(--bg-light); border-radius: var(--radius); }
.crypto-badge {
    display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.crypto-badge img { height: 20px; }
.crypto-badge span { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.crypto-payment-info > p { font-size: 13px; color: var(--text-sub); margin-bottom: 12px; }
.crypto-coins { display: flex; flex-wrap: wrap; gap: 6px; }
.coin {
    padding: 4px 10px; background: var(--white); border: 1px solid var(--border);
    border-radius: 50px; font-size: 11px; font-weight: 600; color: var(--text-sub);
    display: inline-flex; align-items: center; gap: 4px;
}
.coin i { color: #f7931a; }
.coin .fa-ethereum { color: #627eea; }
.checkout-secure {
    text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 10px;
    display: flex; align-items: center; justify-content: center; gap: 4px;
}
.checkout-secure i { color: var(--green); }
.text-muted { color: var(--text-muted); font-size: 11px; }

/* ========== ORDER SUCCESS ========== */
.order-success-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.success-hero, .pending-hero { text-align: center; padding: 32px 20px; margin-bottom: 20px; }
.success-icon {
    width: 72px; height: 72px; background: var(--green-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--green); margin: 0 auto 16px;
}
.success-hero h2 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.success-hero p { color: var(--text-sub); }

.pending-icon {
    width: 72px; height: 72px; background: var(--yellow-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--yellow); margin: 0 auto 16px;
}
.pending-hero h2 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.pending-hero p { color: var(--text-sub); max-width: 450px; margin: 0 auto 14px; }
.pending-status { margin-top: 10px; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; }

.pending-steps {
    display: flex; align-items: center; justify-content: center; gap: 0; padding: 20px; margin-bottom: 16px;
}
.pstep { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.pstep-dot {
    width: 16px; height: 16px; background: var(--border); border-radius: 50%; transition: .2s;
}
.pstep.active .pstep-dot { background: var(--green); box-shadow: 0 0 0 4px var(--green-light); }
.pstep span { font-size: 11px; color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.pstep.active span { color: var(--green); }
.pstep-line { width: 40px; height: 2px; background: var(--border); flex-shrink: 0; margin-bottom: 20px; }

.auto-refresh-note {
    text-align: center; font-size: 12px; color: var(--text-muted); display: flex; align-items: center;
    justify-content: center; gap: 6px; padding: 10px; background: var(--bg-light); border-radius: var(--radius-sm);
}

.order-downloads-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
}
.order-downloads-card h3 {
    font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; gap: 6px;
}
.download-row {
    display: flex; justify-content: space-between; align-items: center; padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}
.download-row:last-child { border-bottom: none; }
.download-info strong { display: block; font-size: 13px; color: var(--text); }
.download-info span { font-size: 12px; color: var(--text-muted); }

.order-detail-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; font-size: 13px; color: var(--text-sub);
}
.order-detail-row strong { color: var(--text); }

.guest-notice {
    display: flex; align-items: flex-start; gap: 8px; padding: 10px; margin-top: 12px;
    background: var(--yellow-light); border-radius: var(--radius-sm); font-size: 11px; color: var(--text-sub);
}
.guest-notice i { color: var(--yellow); margin-top: 2px; }
.guest-notice strong { color: var(--text); }

/* ========== TRACK ORDER ========== */
.track-order-card {
    max-width: 460px; margin: 0 auto; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px; text-align: center;
}
.track-icon { font-size: 40px; color: var(--primary); margin-bottom: 14px; }
.track-order-card h2 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.track-order-card > p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.track-form { text-align: left; }

/* ========== ORDER ITEM DOWNLOAD ========== */
.order-item-right { display: flex; align-items: center; gap: 10px; }
.download-btn { white-space: nowrap; }

/* ========== FREE PRODUCT ========== */
.p-badge.free { background: #059669; }
.free-tag { color: #059669 !important; font-size: 22px !important; }
.free-price { color: #059669 !important; }
.free-price i { margin-right: 4px; }
.free-badge { background: #ecfdf5 !important; color: #059669 !important; border-color: #a7f3d0 !important; }

/* ========== SPAM NOTICE ========== */
.spam-notice { display: flex; align-items: flex-start; gap: 12px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 14px 18px; margin-top: 18px; }
.spam-notice > i { color: #f59e0b; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.spam-notice strong { color: #92400e; font-size: 13px; display: block; margin-bottom: 2px; }
.spam-notice p { font-size: 12px; color: #78716c; line-height: 1.5; margin: 0; }

/* ========== PROMO BANNER ========== */
.sp-banner { padding: 10px 16px; text-align: center; font-size: 13px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; gap: 12px; }
.sp-banner a { display: inline-block; background: rgba(255,255,255,.2); color: #fff; padding: 3px 14px; border-radius: 4px; font-size: 11px; font-weight: 700; transition: .2s; }
.sp-banner a:hover { background: rgba(255,255,255,.35); color: #fff; }

/* ========== LIVE ACTIVITY TICKER ========== */
.sp-ticker { background: var(--bg-light); border-bottom: 1px solid var(--border); overflow: hidden; padding: 8px 0; }
.sp-ticker-inner { display: flex; gap: 40px; animation: tickerScroll 30s linear infinite; white-space: nowrap; }
.sp-ticker-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-sub); flex-shrink: 0; }
.sp-ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* ========== SOCIAL PROOF SECTION ========== */
.sp-proof { padding: 48px 0; }
.sp-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.sp-proof-item { padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.sp-proof-item .sp-num { font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1; }
.sp-proof-item .sp-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.sp-proof-item i { font-size: 22px; color: var(--primary); margin-bottom: 8px; display: block; }

/* ========== COMPLIANCE/TRUST BADGES ========== */
.sp-compliance { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; padding: 14px 0; }
.sp-compliance-badge { display: flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--border); padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 600; color: var(--text-sub); }
.sp-compliance-badge i { color: var(--green); }

/* ========== FAQ SECTION ========== */
.sp-faq { max-width: 700px; margin: 0 auto; }
.sp-faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.sp-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text); background: var(--white); transition: .2s; }
.sp-faq-q:hover { background: var(--bg-light); }
.sp-faq-q i { transition: .3s; color: var(--text-muted); font-size: 12px; }
.sp-faq-q.active i { transform: rotate(180deg); color: var(--primary); }
.sp-faq-a { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; font-size: 13px; color: var(--text-sub); line-height: 1.6; }
.sp-faq-a.show { max-height: 300px; padding: 0 18px 14px; }

/* ========== URGENCY/SCARCITY ========== */
.sp-urgency { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius-sm); padding: 10px 16px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #991b1b; font-weight: 600; margin-bottom: 14px; }
.sp-urgency i { color: var(--red); font-size: 16px; }
.sp-countdown { font-family: monospace; font-size: 16px; font-weight: 800; color: var(--red); }

/* ========== CHECKOUT SECURITY ========== */
.ck-security-header { background: linear-gradient(135deg, #059669 0%, #047857 100%); color: #fff; border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.ck-security-header i { font-size: 28px; opacity: .9; }
.ck-security-header h3 { font-size: 15px; font-weight: 700; margin: 0; }
.ck-security-header p { font-size: 12px; margin: 2px 0 0; opacity: .85; }

.ck-guarantee { background: var(--green-light); border: 1px solid #a7f3d0; border-radius: var(--radius); padding: 16px; text-align: center; margin: 14px 0; }
.ck-guarantee i { font-size: 28px; color: var(--green); margin-bottom: 6px; }
.ck-guarantee h4 { font-size: 14px; font-weight: 800; color: #065f46; margin: 4px 0; }
.ck-guarantee p { font-size: 11px; color: #047857; }

.ck-trust-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 14px 0; }
.ck-trust-badge { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--text-sub); background: var(--bg-light); border: 1px solid var(--border); padding: 5px 10px; border-radius: 4px; }
.ck-trust-badge i { color: var(--green); }

.ck-viewers { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.ck-viewers .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

.ck-buyers-today { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--green); font-weight: 600; background: var(--green-light); padding: 8px 14px; border-radius: var(--radius-sm); margin-top: 10px; }

.ck-testimonial { background: var(--bg-light); border-radius: var(--radius-sm); padding: 14px; margin-top: 12px; border: 1px solid var(--border); }
.ck-testimonial p { font-size: 12px; color: var(--text-sub); font-style: italic; line-height: 1.5; margin-bottom: 6px; }
.ck-testimonial .ck-author { font-size: 11px; font-weight: 600; color: var(--text); }
.ck-testimonial .ck-stars { color: var(--yellow); font-size: 10px; }

/* ========== FOOTER TRUST ========== */
.footer-trust-badges { display: flex; gap: 12px; margin: 10px 0; flex-wrap: wrap; }
.footer-trust-badges span { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,.6); }
.footer-trust-badges i { color: var(--green); font-size: 10px; }

/* ========== TICKET PAGE ========== */
.ticket-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ticket-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; }
.ticket-item.t-open { border-left: 3px solid var(--primary); }
.ticket-item.t-resolved { border-left: 3px solid var(--green); }
.ticket-item.t-closed { border-left: 3px solid var(--text-muted); opacity: .7; }
.ticket-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; flex-wrap: wrap; gap: 6px; }
.ticket-header h4 { font-size: 14px; font-weight: 600; color: var(--text); margin: 0; }
.ticket-body { font-size: 13px; color: var(--text-sub); line-height: 1.5; }
.ticket-reply { background: var(--primary-light); border-radius: var(--radius-sm); padding: 10px 14px; margin-top: 8px; border-left: 3px solid var(--primary); }
.ticket-reply strong { font-size: 11px; color: var(--primary); display: block; margin-bottom: 2px; }
.ticket-reply p { font-size: 12px; color: var(--text); }
.ticket-meta { display: flex; gap: 12px; font-size: 11px; color: var(--text-muted); margin-top: 6px; }

/* ========== LEGAL PAGES ========== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 18px; font-weight: 800; color: var(--text); margin: 28px 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-content h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.legal-content p { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; margin-bottom: 10px; }
.legal-content li { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-bottom: 4px; }
.legal-content .legal-highlight { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius-sm); padding: 14px 18px; margin: 16px 0; }
.legal-content .legal-highlight strong { color: #991b1b; }
.legal-content .legal-highlight p { color: #7f1d1d; }
.legal-content .legal-info { background: var(--primary-light); border: 1px solid #bfdbfe; border-radius: var(--radius-sm); padding: 14px 18px; margin: 16px 0; }
.legal-content .legal-info strong { color: #1e40af; }
.legal-content .legal-info p { color: #1e3a8a; }
.legal-content .last-updated { font-size: 12px; color: var(--text-muted); font-style: italic; margin-bottom: 20px; }

@media (max-width: 768px) {
    .sp-proof-grid { grid-template-columns: repeat(2, 1fr); }
    .ck-trust-row { gap: 4px; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
::selection { background: var(--primary); color: #fff; }
