﻿/* ===================================================================
   topupsecure 鈥?Home Page Styles
   =================================================================== */

/* ===== SIDE NAV (Floating) ===== */
.side-nav {
    position: fixed; right: 24px; top: 54%; transform: translateY(-50%);
    z-index: 999; display: flex; flex-direction: column; gap: 6px;
    opacity: 0; transition: opacity 0.6s var(--ease);
}
.side-nav.visible { opacity: 1; }
.side-nav-item {
    position: relative; width: 12px; height: 12px; border-radius: 50%;
    background: var(--border); transition: all 0.3s var(--ease); cursor: pointer;
}
.side-nav-item:hover { background: var(--text-tertiary); transform: scale(1.3); }
.side-nav-item.active {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(0,113,227,0.15);
    transform: scale(1.2);
}
.side-nav-tooltip {
    position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
    background: var(--text-primary); color: #fff;
    padding: 5px 12px; border-radius: 8px;
    font-size: 12px; font-weight: 600; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: all 0.2s var(--ease);
}
.side-nav-item:hover .side-nav-tooltip { opacity: 1; right: 28px; }
.side-nav-tooltip::after {
    content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
    border: 5px solid transparent; border-left-color: var(--text-primary);
}

/* ===== HERO ===== */
.hero {
    position: relative; min-height: calc(100vh - 24px);
    display: flex; align-items: center; justify-content: center;
    padding: 118px 24px 88px; overflow: hidden; background: #fafafa;
}
.hero-mesh {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-mesh::before {
    content: ''; position: absolute;
    width: 140%; height: 140%; top: -20%; left: -20%;
    background:
        radial-gradient(ellipse 600px 500px at 20% 30%, rgba(0,113,227,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 500px 600px at 75% 20%, rgba(110,92,230,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 60% 80%, rgba(52,199,89,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 30% 70%, rgba(255,55,95,0.04) 0%, transparent 70%);
    animation: meshMove 20s ease-in-out infinite;
}
@keyframes meshMove {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    25% { transform: translate(2%,-1%) rotate(0.5deg); }
    50% { transform: translate(-1%,2%) rotate(-0.5deg); }
    75% { transform: translate(1%,1%) rotate(0.3deg); }
}
.hero-grid-pattern {
    position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.018) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 80px;
    max-width: 1280px; width: 100%;
}
.hero-left { flex: 1; max-width: 560px; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px 5px 6px;
    background: #fff; border: 1px solid var(--border);
    border-radius: 980px; font-size: 13px; font-weight: 500;
    color: var(--text-secondary); box-shadow: var(--shadow-sm);
    margin-bottom: 28px; animation: fadeUp 0.8s var(--ease) 0.1s both;
}
.eyebrow-dot {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, #34c759, #30d158);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: #fff;
}
.hero-title {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900; line-height: 1.06;
    letter-spacing: -0.035em; margin-bottom: 24px;
    animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero-title .line2 {
    background: linear-gradient(135deg, #0071e3 0%, #6e5ce6 40%, #bf5af2 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
    font-size: 18px; line-height: 1.6; color: var(--text-secondary);
    max-width: 440px; margin-bottom: 36px;
    animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero-actions {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 34px; animation: fadeUp 0.8s var(--ease) 0.4s both;
}
.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    min-height: 52px;
    padding-inline: 26px;
}
.hero-actions .btn-primary {
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}
.hero-actions .btn-secondary {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
}
.hero-trust {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease) 0.5s both;
}
.hero-trust-item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    font-size: 13px; color: var(--text-secondary); font-weight: 600;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 520px);
    margin-top: 20px;
    animation: fadeUp 0.8s var(--ease) 0.6s both;
}
.hero-metric {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.78);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.hero-metric strong {
    display: block;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.03em;
}
.hero-metric span {
    display: block;
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}

/* Hero Right 鈥?Card Carousel */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 520px);
    min-height: 520px;
    padding: 24px 36px 40px;
    animation: fadeUp 1s var(--ease) 0.4s both;
    isolation: isolate;
}

.hero-right.hero-right-static {
    width: min(100%, 640px);
    min-height: 420px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(220px, 260px);
    gap: 18px;
    align-items: stretch;
}

.hero-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 100%;
}

.hero-right.hero-right-static .hero-showcase {
    min-height: 420px;
    padding: 24px 20px 28px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,0.92) 100%);
    border: 1px solid rgba(255,255,255,0.82);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.hero-right.hero-right-static .hero-badge-cluster {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 14px;
    width: 100%;
    margin-top: 0;
    padding: 22px 18px 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.84);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.hero-right.hero-right-static .hero-badge-cluster::before {
    content: "骞冲彴浜偣";
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-right.hero-right-static .hero-badge-cluster::after {
    content: "先说明支付、订单追踪和客服提醒，让用户下单前就清楚流程。";
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.65;
}

.hero-card-stack {
    position: relative;
    width: 320px;
    height: 360px;
    perspective: 1200px;
}

.hero-right.hero-right-static .hero-card-stack {
    width: 100%;
    max-width: 360px;
    height: auto;
    perspective: none;
}

.hero-card {
    position: absolute;
    width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    overflow: hidden;
    /* 鎵€鏈夊崱鐗囬粯璁ょ姸鎬侊細鍦ㄥ悗闈㈢缉灏?*/
    opacity: 0;
    transform: scale(0.88) translateY(20px) rotateY(-8deg);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}
.hero-card:hover {
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(0,0,0,0.015) 100%);
    pointer-events: none;
}

/* ---- 褰撳墠婵€娲荤殑鍗＄墖 ---- */
.hero-card.active {
    opacity: 1;
    transform: scale(1) translateY(0) rotateY(0deg);
    z-index: 5;
    pointer-events: auto;
    animation: cardActiveFloat 4s ease-in-out infinite;
}

.hero-right.hero-right-static .hero-card {
    position: relative;
    width: 100%;
    opacity: 1;
    transform: none;
    animation: none;
    pointer-events: auto;
    min-height: 100%;
    padding: 30px 28px;
    border-radius: 24px;
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

/* ---- 涓嬩竴寮犲崱鐗囷紙棰勮鍦ㄥ彸鍚庢柟锛?---- */
.hero-card.next {
    opacity: 0.6;
    transform: scale(0.92) translateX(40px) translateY(10px) rotateY(-5deg);
    z-index: 3;
    pointer-events: none;
}

/* ---- 涓婁竴寮犲崱鐗囷紙棰勮鍦ㄥ乏鍚庢柟锛?---- */
.hero-card.prev {
    opacity: 0.35;
    transform: scale(0.85) translateX(-30px) translateY(18px) rotateY(5deg);
    z-index: 2;
    pointer-events: none;
}

/* 婵€娲诲崱鐗囩殑鎮诞鍔ㄧ敾 */
@keyframes cardActiveFloat {
    0%, 100% { transform: scale(1) translateY(0) rotateY(0deg); }
    50% { transform: scale(1) translateY(-10px) rotateY(0deg); }
}

/* 鍗＄墖鍐呴儴鏍峰紡 */
.hero-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.hero-card-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.hero-card-desc { font-size: 13px; color: var(--text-tertiary); margin-bottom: 20px; }
.hero-right.hero-right-static .hero-card-name {
    font-size: 20px;
    line-height: 1.25;
}

.hero-right.hero-right-static .hero-card-desc {
    min-height: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}
.hero-card-row {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--border-light);
}
.hero-card-price { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.hero-card-price span { font-size: 13px; color: var(--text-tertiary); font-weight: 500; }
.hero-card-btn {
    padding: 8px 18px; border-radius: 980px; font-size: 13px;
    font-weight: 700; color: #fff; transition: all 0.2s; display: inline-block;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.hero-card-btn:hover { filter: brightness(1.1); transform: scale(1.04); }

/* ---- 鎸囩ず鍣ㄥ渾鐐?---- */
.hero-card-dots {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
}

.hero-dot:hover {
    border-color: var(--accent);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(0,113,227,0.15);
}

/* ---- 宸﹀彸绠ご鎸夐挳 ---- */
.hero-card-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.hero-card-arrow-btn:hover {
    background: var(--text-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev { left: -30px; }
.hero-arrow-next { right: -30px; }

/* ---- Floating badges ---- */
.hero-float-badge {
    position: absolute; z-index: 10;
    background: #fff; border: 1px solid var(--border-light);
    border-radius: 14px; padding: 10px 16px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; animation: badgeFloat 5s ease-in-out infinite;
    pointer-events: none;
}
.hero-right.hero-right-static .hero-float-badge {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    animation: none;
    padding: 14px 16px;
    min-height: 76px;
    border-radius: 18px;
    box-shadow: none;
}
.hero-float-badge.badge-1 { top: 28px; right: 4px; }
.hero-float-badge.badge-2 { bottom: 56px; left: 0; animation-delay: 1.5s; }
.hero-float-badge.badge-3 { bottom: 168px; right: -6px; animation-delay: 3s; }
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.badge-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* ---- 鍝嶅簲寮忚皟鏁?---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===== FEATURED PRODUCTS ===== */
.section-featured { background: #fff; }
.featured-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.featured-grid.is-sparse { grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); justify-content: center; align-items: stretch; }
.f-card {
    position: relative; border-radius: var(--radius-lg); padding: 36px 30px;
    border: 1px solid var(--border-light); background: #fff;
    display: flex; flex-direction: column; transition: all 0.4s var(--ease);
    cursor: pointer; overflow: hidden;
}
.f-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.f-card-hero { grid-row: span 2; padding: 44px 36px; background: linear-gradient(160deg, #fafafa 0%, #f5f3ff 100%); }
.featured-grid.is-sparse .f-card-hero { grid-row: auto; min-height: 360px; }
.f-card-bg { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; opacity: 0.08; transition: all 0.5s var(--ease); }
.f-card:hover .f-card-bg { opacity: 0.14; transform: scale(1.15); }
.f-card-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.f-card-hero .f-card-icon { width: 64px; height: 64px; border-radius: 18px; font-size: 30px; margin-bottom: 28px; }
.f-card-tag { display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; width: fit-content; }
.f-card-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.f-card-title a { transition: color 0.2s; }
.f-card-title a:hover { color: var(--accent); }
.f-card-hero .f-card-title { font-size: 28px; letter-spacing: -0.02em; }
.f-card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 20px; }
.f-card-hero .f-card-desc { font-size: 15px; max-width: 320px; }
.f-card-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.f-card-price .from { font-size: 12px; color: var(--text-tertiary); }
.f-card-price .amount { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.f-card-hero .f-card-price .amount { font-size: 32px; }
.f-card-price .cur { font-size: 13px; color: var(--text-tertiary); font-weight: 500; margin-left: 2px; }
.f-card-arrow {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-subtle); border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-tertiary); transition: all 0.3s var(--ease);
}
.f-card:hover .f-card-arrow { background: var(--text-primary); color: #fff; border-color: transparent; transform: rotate(-45deg); }
.featured-support-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 34px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: linear-gradient(180deg, #fff, #f8fafc);
    box-shadow: var(--shadow-sm);
}
.featured-support-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.featured-support-card h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.featured-support-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}
.featured-support-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.featured-support-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
}
.featured-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

/* ===== ALL PRODUCTS ===== */
.section-all { background: var(--bg-subtle); }
.cat-tabs { display: flex; justify-content: center; gap: 6px; margin-bottom: 44px; flex-wrap: wrap; }
.cat-tab {
    padding: 9px 20px; border-radius: 980px; font-size: 13px; font-weight: 600;
    color: var(--text-secondary); background: #fff; border: 1px solid var(--border-light);
    transition: all 0.2s var(--ease); cursor: pointer;
}
.cat-tab:hover { border-color: var(--border); color: var(--text-primary); }
.cat-tab.active { background: var(--text-primary); color: #fff; border-color: transparent; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.products-grid.is-sparse { grid-template-columns: repeat(auto-fit, minmax(220px, 280px)); justify-content: center; }
.p-card {
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    min-height: 248px;
    padding: 24px 16px 20px; background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius-md); transition: all 0.3s var(--ease); cursor: pointer; text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.p-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.p-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 12px; }
.p-category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.p-name { font-size: 14px; font-weight: 700; line-height: 1.45; margin-bottom: 8px; min-height: 40px; }
.p-subtitle {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.55;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.p-card-foot {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
}
.p-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--bg-subtle);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}
.p-link {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 800;
}
.view-all-row { text-align: center; margin-top: 40px; }

/* ===== HOW IT WORKS ===== */
.section-how { background: #fff; }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
    text-align: center; padding: 44px 28px;
    background: var(--bg-subtle); border-radius: var(--radius-lg);
    border: 1px solid var(--border-light); transition: all 0.4s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: #fff; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size: 15px; font-weight: 800; margin-bottom: 20px; }
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ===== STATS ===== */
.section-stats { background: var(--text-primary); padding: 80px 24px; }
.stats-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item {
    text-align: center;
    padding: 26px 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.stat-num { font-size: clamp(32px, 4.5vw, 52px); font-weight: 900; letter-spacing: -0.03em; color: #fff; line-height: 1.1; margin-bottom: 4px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.5; }

/* ===== REVIEWS ===== */
.section-reviews { background: var(--bg-subtle); }
.reviews-note {
    margin: 16px auto 0;
    color: var(--text-tertiary);
    font-size: 13px;
    font-weight: 600;
}
.reviews-track {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; padding-bottom: 4px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.is-dragging {
    cursor: grabbing;
}
.r-card {
    flex: 0 0 360px; scroll-snap-align: start;
    padding: 32px; background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); transition: all 0.3s var(--ease);
}
.reviews-track.is-dragging .r-card {
    pointer-events: none;
}
.r-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.r-stars { color: #ffb300; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.r-text { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; border: none; padding: 0; }
.r-author { display: flex; align-items: center; gap: 12px; }
.r-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.r-name { font-size: 14px; font-weight: 600; font-style: normal; }
.r-meta { font-size: 12px; color: var(--text-tertiary); }

/* ===== CTA ===== */
.section-cta { position: relative; padding: 120px 24px; text-align: center; background: #fff; overflow: hidden; }
.cta-mesh { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0,113,227,0.04) 0%, transparent 70%); }
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 46px 32px;
    border-radius: 32px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(255,255,255,0.92);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}
.cta-title { font-size: clamp(34px, 4.5vw, 52px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-desc { font-size: 17px; color: var(--text-secondary); max-width: 460px; margin: 0 auto 36px; }
.cta-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 26px;
    max-width: 640px;
}
.cta-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
}
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== FAQ ===== */
.section-faq { background: #fff; }

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.faq-item {
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
}

.faq-item[open] {
    border-color: rgba(0, 113, 227, 0.12);
}

.faq-question h3 {
    font-weight: 700;
    line-height: 1.5;
}

/* ===== NEWS PREVIEW POLISH ===== */
.news-preview-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
}

.news-card {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.news-card-featured {
    grid-row: span 2;
}

.news-card-featured a {
    display: grid;
    height: 100%;
}

.news-card-featured .news-card-img {
    min-height: 248px;
}

.news-card-featured .news-card-body {
    padding: 26px;
}

.news-card-featured .news-card-body h3 {
    font-size: 22px;
    line-height: 1.3;
    -webkit-line-clamp: 3;
}

.news-card-featured .news-card-body p {
    -webkit-line-clamp: 3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { flex-direction: column; text-align: center; gap: 60px; }
    .hero-left { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-trust { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-metrics { width: min(100%, 560px); }
    .featured-grid { grid-template-columns: 1fr 1fr; }
    .featured-grid.is-sparse { grid-template-columns: minmax(0, 1fr); }
    .f-card-hero { grid-row: span 1; }
    .news-preview-grid { grid-template-columns: 1fr; }
    .news-card-featured { grid-row: span 1; }
}
@media (max-width: 768px) {
    .side-nav { display: none; }
    .hero-right { min-height: 380px; width: 100%; padding: 12px 0 28px; }
    .hero-right.hero-right-static {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        min-height: auto;
    }
    .hero-right.hero-right-static .hero-showcase {
        min-height: auto;
        padding-bottom: 0;
    }
    .hero-right.hero-right-static .hero-badge-cluster {
        grid-template-columns: 1fr;
    }
    .hero-card-stack { transform: scale(0.85); }
    .r-card { flex: 0 0 300px; }
    .featured-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .hero-trust { justify-content: center; }
    .hero-metrics { grid-template-columns: 1fr; }
    .cta-content { padding: 34px 22px; }
    .section-header { margin-bottom: 44px; }
    .hero { padding: 104px 20px 72px; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-card-stack { transform: scale(0.76); }
    .hero-right.hero-right-static .hero-card-stack {
        max-width: 100%;
    }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
    .hero-trust-item { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero { padding: 98px 16px 64px; min-height: auto; }
    .hero-title { font-size: clamp(34px, 11vw, 46px); }
    .hero-desc { font-size: 16px; margin-bottom: 26px; }
    .hero-metric { padding: 14px 16px; }
    .p-card { min-height: 236px; padding: 20px 14px 18px; }
    .p-card-foot { flex-direction: column; align-items: center; }
}

/* ===== HOME REFINEMENT FOR CHINESE COPY ===== */
.hero {
    min-height: 760px;
    padding: 108px 24px 72px;
}

.hero-inner {
    max-width: 1120px;
    gap: 56px;
}

.hero-left {
    max-width: 500px;
}

.hero-title {
    font-size: clamp(40px, 4.2vw, 58px);
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.hero-desc {
    max-width: 430px;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 26px;
}

.hero-eyebrow {
    margin-bottom: 22px;
}

.hero-actions {
    margin-bottom: 24px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    min-height: 46px;
    padding-inline: 22px;
}

.hero-trust-item {
    padding: 8px 12px;
}

.hero-metrics {
    width: min(100%, 430px);
    gap: 10px;
}

.hero-metrics > div,
.hero-metric {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.76);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.hero-metrics strong {
    display: block;
    font-size: 17px;
    line-height: 1.1;
}

.hero-metrics span {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}

.hero-right.hero-right-static {
    width: min(100%, 540px);
    min-height: 340px;
    grid-template-columns: minmax(0, 310px) minmax(190px, 220px);
    gap: 14px;
}

.hero-right.hero-right-static .hero-showcase {
    min-height: 340px;
    padding: 18px;
    border-radius: 22px;
}

.hero-right.hero-right-static .hero-card {
    min-height: 300px;
    padding: 24px;
    border-radius: 20px;
}

.hero-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.hero-right.hero-right-static .hero-card-name {
    font-size: 18px;
}

.hero-right.hero-right-static .hero-card-desc {
    min-height: 34px;
    font-size: 13px;
}

.hero-card-price {
    font-size: 22px;
}

.hero-card-btn {
    padding: 7px 14px;
}

.hero-right.hero-right-static .hero-badge-cluster {
    padding: 18px 16px;
    border-radius: 22px;
}

.hero-right.hero-right-static .hero-badge-cluster::before {
    content: "服务保障";
}

.hero-right.hero-right-static .hero-badge-cluster::after {
    content: "下单前先确认支付、订单追踪和客服提醒，减少用户决策成本。";
    font-size: 12px;
    line-height: 1.65;
}

.hero-right.hero-right-static .hero-float-badge {
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 14px;
}

.section {
    padding: 72px 24px;
}

.section-header {
    max-width: 640px;
    margin-bottom: 38px;
}

.section-title {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.22;
    letter-spacing: 0;
}

.section-desc {
    font-size: 15px;
    line-height: 1.75;
    max-width: 520px;
}

.featured-grid,
.featured-grid.is-sparse {
    grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
    justify-content: center;
    gap: 16px;
}

.f-card,
.f-card-hero,
.featured-grid.is-sparse .f-card-hero {
    min-height: 260px;
    padding: 26px 24px;
    border-radius: 20px;
}

.f-card-hero .f-card-title,
.f-card-title {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 0;
}

.f-card-desc,
.f-card-hero .f-card-desc {
    font-size: 13px;
    line-height: 1.65;
}

.f-card-price .amount,
.f-card-hero .f-card-price .amount {
    font-size: 24px;
}

.products-grid,
.products-grid.is-sparse {
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: center;
    gap: 14px;
}

.p-card {
    min-height: 218px;
    padding: 22px 18px 18px;
}

.p-name {
    min-height: auto;
    font-size: 15px;
}

.p-subtitle {
    min-height: 36px;
}

.steps-row {
    gap: 14px;
}

.step-card {
    padding: 30px 24px;
    border-radius: 20px;
}

.step-card h3 {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.step-num {
    margin-bottom: 14px;
}

.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.news-card {
    min-height: 0;
    border-radius: 20px;
}

.news-card-img {
    height: 86px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
}

.news-card-body {
    padding: 20px;
}

.news-card-body h3,
.news-card-featured .news-card-body h3 {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0;
}

.news-card-body p {
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding-top: 96px;
    }

    .hero-inner {
        gap: 42px;
    }

    .hero-right.hero-right-static {
        width: min(100%, 620px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(34px, 9vw, 46px);
    }

    .hero-desc {
        font-size: 15px;
    }

    .section {
        padding: 58px 18px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .hero-right.hero-right-static {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ===== PREMIUM GLOBAL HOME LAYOUT ===== */
.hero {
    min-height: 720px;
    background:
        linear-gradient(135deg, rgba(250,252,255,0.96), rgba(246,248,252,0.98) 48%, rgba(255,255,255,0.98)),
        linear-gradient(90deg, rgba(0,113,227,0.05), rgba(15,23,42,0.03));
}

.hero::after {
    content: "";
    position: absolute;
    inset: 72px 4vw 48px;
    z-index: 0;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 34px;
    pointer-events: none;
}

.hero-mesh::before {
    opacity: 0.42;
    filter: saturate(0.78);
}

.hero-grid-pattern {
    background-size: 48px 48px;
    opacity: 0.65;
}

.hero-inner {
    max-width: 1180px;
    min-height: 520px;
    padding: 44px;
    border-radius: 32px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.hero-title {
    max-width: 560px;
    color: #111827;
    text-wrap: balance;
}

.hero-title .line2 {
    background: linear-gradient(135deg, #0f172a 0%, #0071e3 48%, #0f766e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: #4b5563;
}

.hero-eyebrow,
.hero-trust-item,
.hero-metrics > div {
    border-color: rgba(15, 23, 42, 0.07);
}

.hero-actions .btn-primary {
    background: #111827;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
}

.hero-actions .btn-secondary {
    color: #111827;
    border-color: rgba(15, 23, 42, 0.09);
}

.hero-right.hero-right-static {
    grid-template-columns: minmax(0, 320px) minmax(196px, 224px);
}

.hero-right.hero-right-static .hero-showcase,
.hero-right.hero-right-static .hero-badge-cluster {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.hero-right.hero-right-static .hero-card {
    background:
        linear-gradient(180deg, #fff 0%, #fbfcff 100%);
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: none;
}

.hero-panel-title {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 4px;
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-right.hero-right-static .hero-badge-cluster::before {
    content: "服务保障";
    color: #0071e3;
}

.hero-right.hero-right-static .hero-badge-cluster::after {
    color: #667085;
}

.hero-right.hero-right-static .hero-float-badge {
    justify-content: flex-start;
    color: #111827;
    border-color: rgba(15, 23, 42, 0.07);
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.section > .section-header,
.section > .featured-grid,
.section > .products-grid,
.section > .steps-row,
.section > .news-preview-grid {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: 78px 24px;
}

.section-featured,
.section-how,
.section-news {
    background: #fff;
}

.section-all {
    background:
        linear-gradient(180deg, #f7f8fb 0%, #f3f5f8 100%);
}

.section-header {
    margin-bottom: 34px;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: #0071e3;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.section-title {
    color: #111827;
    font-weight: 900;
    text-wrap: balance;
}

.section-desc {
    margin-left: auto;
    margin-right: auto;
    color: #6b7280;
}

.featured-grid,
.featured-grid.is-sparse {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.f-card,
.f-card-hero,
.featured-grid.is-sparse .f-card-hero {
    min-height: 280px;
    background:
        linear-gradient(180deg, #fff 0%, #fbfcff 100%);
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.f-card-hero {
    background:
        linear-gradient(145deg, #ffffff 0%, #f3f7ff 58%, #f8fbf8 100%);
}

.f-card:hover {
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.10);
}

.products-grid,
.products-grid.is-sparse {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.home-product-card {
    min-height: 280px;
}

.p-card {
    align-items: flex-start;
    text-align: left;
    min-height: 220px;
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.04);
}

.p-card:hover {
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.09);
}

.p-category {
    min-height: 24px;
    margin-bottom: 8px;
}

.p-name {
    width: 100%;
    font-size: 16px;
}

.p-subtitle {
    width: 100%;
}

.steps-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
    text-align: left;
    background:
        linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-color: rgba(15, 23, 42, 0.06);
}

.step-num {
    color: #0071e3;
    background: #eef4ff;
}

.news-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.news-card a {
    display: grid;
    grid-template-columns: 156px minmax(0, 1fr);
    min-height: 160px;
}

.news-card-img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    align-items: flex-start;
}

.news-card-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.home-section-action {
    max-width: 1180px;
    margin: 28px auto 0;
    display: flex;
    justify-content: center;
}

.home-section-action .btn-secondary {
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.home-products-panel {
    max-width: 1180px;
    margin: 0 auto;
}

.section-all > .products-grid {
    display: none;
}

.home-products-panel .cat-tabs {
    position: sticky;
    top: 72px;
    z-index: 8;
    justify-content: flex-start;
    gap: 10px;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    background: rgba(255,255,255,0.86);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
}

.home-products-panel .cat-tabs::-webkit-scrollbar {
    display: none;
}

.home-products-panel .cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    white-space: nowrap;
    background: #fff;
}

.home-products-panel .cat-tab small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: inherit;
    font-size: 11px;
    font-weight: 800;
}

.home-products-panel .cat-tab.active {
    background: #111827;
    color: #fff;
}

.home-products-panel .cat-tab.active small {
    background: rgba(255,255,255,0.16);
}

.home-filter-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 18px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.home-filter-summary strong {
    color: #111827;
}

@media (max-width: 1024px) {
    .hero-inner {
        padding: 36px;
    }

    .hero-right.hero-right-static {
        grid-template-columns: minmax(0, 1fr) minmax(190px, 230px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 88px 16px 46px;
    }

    .hero::after {
        inset: 64px 12px 28px;
        border-radius: 24px;
    }

    .hero-inner {
        padding: 26px 20px;
        border-radius: 24px;
    }

    .hero-title,
    .hero-desc {
        max-width: 100%;
    }

    .hero-right.hero-right-static {
        grid-template-columns: minmax(0, 1fr);
    }

    .steps-row,
    .news-preview-grid {
        grid-template-columns: 1fr;
    }

    .news-card a {
        grid-template-columns: 1fr;
    }

    .news-card-img {
        min-height: 96px;
    }
}

/* ===== HERO PRODUCT CARD STABILITY ===== */
.hero-card {
    display: flex;
    flex-direction: column;
}

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

.hero-card::before {
    z-index: 0;
}

.hero-card-icon {
    overflow: hidden;
}

.hero-card-row {
    position: relative;
    z-index: 2;
    gap: 14px;
    margin-top: auto;
    min-width: 0;
}

.hero-card-price {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    color: #111827;
}

.hero-card-btn {
    flex: 0 0 auto;
    background: #111827;
    color: #fff;
    white-space: nowrap;
}

.hero-right.hero-right-static .hero-card {
    overflow: hidden;
}

/* ===== KARDZ-STYLE HOME OVERRIDE ===== */
.kardz-home {
    background: #f5f6f8;
    color: #111827;
}

.kardz-hero,
.kardz-section,
.kardz-strip,
.kardz-process {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
}

.kardz-hero {
    display: grid;
    grid-template-columns: 238px minmax(0, 1fr) 250px;
    gap: 18px;
    padding: 22px 0 18px;
}

.kardz-category-menu,
.kardz-side-deals,
.kardz-hero-banner,
.kardz-product-card,
.kardz-news-card,
.kardz-process {
    border: 1px solid #e6e8ec;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.kardz-category-menu {
    overflow: hidden;
    border-radius: 8px;
}

.kardz-category-title {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    background: #121826;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.kardz-category-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 45px;
    padding: 0 16px;
    border-bottom: 1px solid #eef0f3;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.kardz-category-menu a:hover {
    background: #fff8df;
    color: #111827;
}

.kardz-category-menu small {
    color: #98a2b3;
    font-weight: 900;
}

.kardz-hero-banner {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(210px, 0.58fr);
    gap: 22px;
    align-items: center;
    padding: 42px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,255,255,0.72), transparent 12rem),
        linear-gradient(135deg, #f8d257 0%, #f6c343 48%, #f0aa1f 100%);
}

.kardz-hero-banner::before {
    content: "";
    position: absolute;
    inset: auto -8% -36% auto;
    width: 58%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.08);
}

.kardz-hero-copy,
.kardz-hero-product {
    position: relative;
    z-index: 1;
}

.kardz-eyebrow,
.kardz-section-head span,
.kardz-process > div > span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #7a4d00;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kardz-hero-copy h1 {
    max-width: 560px;
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.02;
    letter-spacing: 0;
}

.kardz-hero-copy p {
    max-width: 500px;
    margin: 18px 0 0;
    color: #3b4250;
    font-size: 16px;
    line-height: 1.75;
}

.kardz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.kardz-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
}

.kardz-button.primary {
    background: #111827;
    color: #fff;
}

.kardz-button.secondary {
    border: 1px solid rgba(17, 24, 39, 0.18);
    background: rgba(255,255,255,0.55);
    color: #111827;
}

.kardz-hero-product {
    display: grid;
    gap: 10px;
    align-content: center;
    justify-items: center;
    min-height: 300px;
    padding: 24px;
    border-radius: 8px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.82);
    text-align: center;
    box-shadow: 0 26px 56px rgba(17, 24, 39, 0.14);
}

.kardz-hero-art {
    display: grid;
    place-items: center;
    width: min(100%, 180px);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    color: #111827;
    font-size: 54px;
    font-weight: 900;
}

.kardz-hero-product span,
.kardz-product-badge {
    display: inline-flex;
    width: fit-content;
    padding: 4px 9px;
    border-radius: 6px;
    background: #fff7d6;
    color: #7a4d00;
    font-size: 11px;
    font-weight: 900;
}

.kardz-hero-product strong {
    font-size: 20px;
    line-height: 1.25;
}

.kardz-hero-product small {
    color: #475467;
    font-weight: 900;
}

.kardz-side-deals {
    display: grid;
    gap: 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.kardz-deal-card {
    display: flex;
    min-height: 206px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 22px;
    border-radius: 8px;
    overflow: hidden;
}

.kardz-deal-card.dark {
    background: #121826;
    color: #fff;
}

.kardz-deal-card.light {
    background: #fff;
    color: #111827;
    border: 1px solid #e6e8ec;
}

.kardz-deal-card span {
    color: #f7c948;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.kardz-deal-card strong {
    font-size: 24px;
    line-height: 1.1;
}

.kardz-deal-card small {
    color: currentColor;
    opacity: 0.72;
    line-height: 1.55;
}

.kardz-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid #e6e8ec;
    border-radius: 8px;
    background: #e6e8ec;
}

.kardz-strip div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 74px;
    padding: 0 22px;
    background: #fff;
}

.kardz-strip span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #111827;
    color: #f7c948;
    font-weight: 900;
}

.kardz-strip strong {
    font-size: 14px;
}

.kardz-section {
    padding: 38px 0 0;
}

.kardz-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.kardz-section-head h2,
.kardz-process h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: 0;
}

.kardz-section-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid #d8dce2;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.kardz-flash-grid,
.kardz-product-grid,
.kardz-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.kardz-flash-grid {
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
}

.kardz-product-card {
    position: relative;
    display: flex;
    min-height: 292px;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border-radius: 8px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.kardz-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
}

.kardz-product-card.is-wide {
    background: #121826;
    color: #fff;
}

.kardz-product-card.is-wide .kardz-product-badge {
    background: rgba(247, 201, 72, 0.16);
    color: #f7c948;
}

.kardz-product-art {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1.18 / 1;
    overflow: hidden;
    border-radius: 8px;
    color: #111827;
    font-size: 42px;
    font-weight: 900;
}

.kardz-product-card h3 {
    margin: 2px 0 0;
    min-height: 42px;
    font-size: 16px;
    line-height: 1.32;
    letter-spacing: 0;
}

.kardz-product-card p {
    display: -webkit-box;
    min-height: 40px;
    overflow: hidden;
    color: #667085;
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kardz-product-card.is-wide p {
    color: rgba(255,255,255,0.70);
}

.kardz-product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #eef0f3;
}

.kardz-product-card.is-wide .kardz-product-foot {
    border-top-color: rgba(255,255,255,0.13);
}

.kardz-product-foot strong {
    font-size: 20px;
    letter-spacing: 0;
}

.kardz-product-foot span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 8px;
    background: #f7c948;
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.kardz-process {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 28px;
    margin-top: 42px;
    padding: 34px;
    border-radius: 8px;
}

.kardz-process p {
    margin-top: 12px;
    color: #667085;
    line-height: 1.75;
}

.kardz-process ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    counter-reset: step;
}

.kardz-process li {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 150px;
    align-content: end;
    padding: 20px;
    border-radius: 8px;
    background: #f8fafc;
    counter-increment: step;
}

.kardz-process li::before {
    content: "0" counter(step);
    position: absolute;
    top: 18px;
    left: 20px;
    color: #f0b90b;
    font-size: 22px;
    font-weight: 900;
}

.kardz-process li strong {
    font-size: 18px;
}

.kardz-process li span {
    color: #667085;
    font-size: 13px;
    line-height: 1.55;
}

.kardz-news {
    padding-bottom: 58px;
}

.kardz-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kardz-news-card {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 8px;
}

.kardz-news-card img,
.kardz-news-card > div {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    border-radius: 8px;
    object-fit: cover;
    background: #fff3c4;
    color: #7a4d00;
    font-weight: 900;
}

.kardz-news-card span {
    color: #7a4d00;
    font-size: 12px;
    font-weight: 900;
}

.kardz-news-card h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.kardz-news-card p {
    display: -webkit-box;
    overflow: hidden;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 1100px) {
    .kardz-hero {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .kardz-side-deals {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kardz-deal-card {
        min-height: 150px;
    }

    .kardz-flash-grid,
    .kardz-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .kardz-hero {
        grid-template-columns: 1fr;
        padding-top: 14px;
    }

    .kardz-category-menu {
        display: none;
    }

    .kardz-hero-banner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 30px 22px;
    }

    .kardz-hero-product {
        min-height: auto;
    }

    .kardz-strip,
    .kardz-side-deals,
    .kardz-process,
    .kardz-process ol,
    .kardz-news-grid {
        grid-template-columns: 1fr;
    }

    .kardz-flash-grid,
    .kardz-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kardz-process {
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .kardz-hero,
    .kardz-section,
    .kardz-strip,
    .kardz-process {
        width: min(100% - 24px, 1220px);
    }

    .kardz-hero-copy h1 {
        font-size: 34px;
    }

    .kardz-hero-actions {
        flex-direction: column;
    }

    .kardz-button {
        width: 100%;
    }

    .kardz-flash-grid,
    .kardz-product-grid {
        grid-template-columns: 1fr;
    }

    .kardz-product-card {
        min-height: 250px;
    }
}

/* ===== KARDZ.COM HOME CLOSER PASS ===== */
.kardz-home {
    min-height: 100vh;
    padding: 22px 0 64px;
    background: #f5f5f5;
    color: #202020;
}

.kardz-slider,
.kardz-service-row,
.kardz-block,
.kardz-banner-pair {
    width: min(1392px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.kardz-slider {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
}

.kardz-slide {
    position: relative;
    display: grid;
    min-height: 334px;
    grid-template-columns: minmax(0, 1.15fr) 360px;
    align-items: center;
    gap: 32px;
    padding: 42px 68px;
    background:
        radial-gradient(circle at 83% 24%, rgba(255,255,255,0.82) 0, rgba(255,255,255,0.82) 90px, transparent 91px),
        radial-gradient(circle at 88% 78%, rgba(27, 134, 120, 0.18) 0, rgba(27, 134, 120, 0.18) 130px, transparent 131px),
        linear-gradient(100deg, #eaf8ff 0%, #eef9f5 45%, #fff2cc 100%);
}

.kardz-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.65), transparent 52%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.24) 0 2px, transparent 2px 18px);
    pointer-events: none;
}

.kardz-slide-copy,
.kardz-slide-card {
    position: relative;
    z-index: 1;
}

.kardz-slide-copy span {
    display: block;
    margin-bottom: 12px;
    color: #1b8678;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kardz-slide-copy h1 {
    max-width: 620px;
    margin: 0;
    color: #10202a;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.kardz-slide-copy p {
    max-width: 560px;
    margin: 18px 0 0;
    color: #53616b;
    font-size: 16px;
    line-height: 1.7;
}

.kardz-slide-copy a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 26px;
    padding: 0 28px;
    border-radius: 4px;
    background: #1b8678;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.kardz-slide-card {
    display: grid;
    justify-items: center;
    gap: 10px;
    max-width: 290px;
    margin-left: auto;
    padding: 24px 22px;
    border-radius: 8px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 22px 46px rgba(34, 45, 57, 0.16);
    text-align: center;
}

.kardz-slide-img {
    display: grid;
    place-items: center;
    width: 190px;
    height: 190px;
    overflow: hidden;
    border-radius: 8px;
    color: #1b8678;
    font-size: 72px;
    font-weight: 900;
}

.kardz-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kardz-slide-card strong {
    color: #202020;
    font-size: 18px;
    line-height: 1.3;
}

.kardz-slide-card small {
    color: #1b8678;
    font-weight: 900;
}

.kardz-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.kardz-slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(32,32,32,0.24);
}

.kardz-slider-dots span:first-child {
    width: 28px;
    background: #1b8678;
}

.kardz-service-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
    border: 1px solid #e7e7e7;
    background: #fff;
}

.kardz-service-row div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 74px;
    border-right: 1px solid #e7e7e7;
}

.kardz-service-row div:last-child {
    border-right: 0;
}

.kardz-service-row span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #edf8f6;
    color: #1b8678;
    font-size: 10px;
    font-weight: 900;
}

.kardz-service-row strong {
    font-size: 15px;
    font-weight: 800;
}

.kardz-block {
    margin-top: 34px;
}

.kardz-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.kardz-title-row h2 {
    margin: 0;
    color: #202020;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0;
}

.kardz-title-row a,
.kardz-title-row.sale .kardz-timer {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 15px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e4e4e4;
    color: #666;
    font-size: 13px;
    font-weight: 800;
}

.kardz-title-row.sale {
    padding: 16px 20px;
    margin-bottom: 0;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-bottom: 0;
}

.kardz-timer {
    gap: 7px;
}

.kardz-timer span {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    height: 28px;
    border-radius: 3px;
    background: #1b8678;
    color: #fff;
}

.kardz-category-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 14px;
}

.kardz-category {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-height: 160px;
    padding: 18px 12px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    background: #fff;
    text-align: center;
}

.kardz-category div {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background: linear-gradient(135deg, #edf8f6, #f7fbff);
    color: #1b8678;
    font-size: 34px;
    font-weight: 900;
}

.kardz-category strong {
    color: #202020;
    font-size: 14px;
    line-height: 1.3;
}

.kardz-category small {
    color: #888;
    font-size: 12px;
}

.kardz-product-row,
.kardz-product-grid {
    display: grid;
    gap: 14px;
}

.kardz-product-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 18px;
    border: 1px solid #e7e7e7;
    background: #fff;
}

.kardz-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kardz-product {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.kardz-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(32, 32, 32, 0.10);
}

.kardz-product-img {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / 0.82;
    overflow: hidden;
    background: #f6f8fb;
    color: #1b8678;
    font-size: 48px;
    font-weight: 900;
}

.kardz-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kardz-product-body {
    display: flex;
    min-height: 164px;
    flex: 1;
    flex-direction: column;
    padding: 14px 14px 16px;
}

.kardz-product-body small {
    color: #1b8678;
    font-size: 11px;
    font-weight: 800;
}

.kardz-product-body h3 {
    display: -webkit-box;
    min-height: 42px;
    margin: 6px 0 0;
    overflow: hidden;
    color: #202020;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kardz-product-body p {
    display: -webkit-box;
    min-height: 38px;
    margin: 8px 0 0;
    overflow: hidden;
    color: #777;
    font-size: 12px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kardz-product-body > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.kardz-product-body strong {
    color: #1b8678;
    font-size: 17px;
}

.kardz-product-body div span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 4px;
    background: #1b8678;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.kardz-banner-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.kardz-mini-banner {
    display: grid;
    min-height: 158px;
    align-content: center;
    gap: 8px;
    padding: 28px 34px;
    border-radius: 4px;
    overflow: hidden;
}

.kardz-mini-banner.dark {
    background: linear-gradient(100deg, #173d58, #1b8678);
    color: #fff;
}

.kardz-mini-banner.light {
    border: 1px solid #e7e7e7;
    background: linear-gradient(100deg, #fff7db, #fff);
    color: #202020;
}

.kardz-mini-banner span {
    color: currentColor;
    opacity: 0.72;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.kardz-mini-banner strong {
    max-width: 450px;
    font-size: 28px;
    line-height: 1.15;
}

.kardz-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.kardz-news-card {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    background: #fff;
}

.kardz-news-card img,
.kardz-news-card > div {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    border-radius: 3px;
    object-fit: cover;
    background: #edf8f6;
    color: #1b8678;
    font-weight: 900;
}

.kardz-news-card span {
    color: #1b8678;
    font-size: 12px;
    font-weight: 900;
}

.kardz-news-card h3 {
    margin: 0;
    color: #202020;
    font-size: 17px;
    line-height: 1.35;
}

.kardz-news-card p {
    display: -webkit-box;
    overflow: hidden;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 1180px) {
    .kardz-category-grid,
    .kardz-product-grid,
    .kardz-product-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .kardz-slide {
        grid-template-columns: 1fr;
        padding: 34px 26px 50px;
    }

    .kardz-slide-card {
        margin: 0;
    }

    .kardz-service-row,
    .kardz-category-grid,
    .kardz-product-grid,
    .kardz-product-row,
    .kardz-news-grid,
    .kardz-banner-pair {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .kardz-home {
        padding-top: 14px;
    }

    .kardz-slider,
    .kardz-service-row,
    .kardz-block,
    .kardz-banner-pair {
        width: calc(100% - 24px);
    }

    .kardz-slide-copy h1 {
        font-size: 32px;
    }

    .kardz-service-row,
    .kardz-category-grid,
    .kardz-product-grid,
    .kardz-product-row,
    .kardz-news-grid,
    .kardz-banner-pair {
        grid-template-columns: 1fr;
    }

    .kardz-title-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ===== KARDZ.COM HOME FINAL ===== */
.kz-home {
    position: relative;
    min-height: 100vh;
    padding: 24px 0 86px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -80px, rgba(252, 204, 54, 0.12), transparent 360px),
        linear-gradient(180deg, #151519 0, #0e0e11 420px);
    color: #ffffff;
}

.kz-home a {
    text-decoration: none;
}

.kz-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    min-height: 334px;
    padding: 44px 74px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background:
        linear-gradient(105deg, rgba(37, 37, 47, 0.98), rgba(26, 26, 33, 0.92)),
        radial-gradient(circle at 78% 28%, rgba(252, 204, 54, 0.28), transparent 280px);
}

.kz-hero::after {
    content: "";
    position: absolute;
    inset: auto -90px -160px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(252, 204, 54, 0.13);
}

.kz-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.kz-hero-copy span,
.kz-app-banner span {
    color: #fccc36;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.kz-hero-copy h1 {
    max-width: 620px;
    margin: 12px 0 16px;
    color: #ffffff;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
}

.kz-hero-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    line-height: 1.7;
}

.kz-hero-copy a,
.kz-app-banner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin-top: 26px;
    padding: 0 24px;
    border-radius: 8px;
    background: #fccc36;
    color: #161616;
    font-size: 14px;
    font-weight: 800;
}

.kz-hero-product {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 164px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.kz-hero-img {
    display: grid;
    width: 116px;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    padding: 8px;
    color: #fccc36;
    font-size: 42px;
    font-weight: 900;
}

.kz-hero-img img,
.kz-promo-img img,
.kz-line-img img,
.kz-catalog-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.kz-hero-product small,
.kz-hero-product span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.kz-hero-product strong {
    display: block;
    margin: 8px 0 10px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
}

.kz-hero-product span {
    color: #fccc36;
    font-weight: 800;
}

.kz-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.36);
    color: #ffffff;
    font-size: 18px;
}

.kz-hero-arrow.left {
    left: 20px;
}

.kz-hero-arrow.right {
    right: 20px;
}

.kz-hero-dots {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.kz-hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

.kz-hero-dots span:first-child {
    width: 24px;
    background: #fccc36;
}

.kz-service {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.kz-service div,
.kz-category-tile,
.kz-promo-card,
.kz-catalog-card,
.kz-side-panel,
.kz-news-card,
.kz-why div {
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.05);
}

.kz-service div {
    display: flex;
    align-items: center;
    min-height: 72px;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
}

.kz-service span,
.kz-why span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: rgba(252, 204, 54, 0.16);
    color: #fccc36;
    font-size: 11px;
    font-weight: 900;
}

.kz-service strong {
    color: #ffffff;
    font-size: 15px;
}

.kz-section {
    margin-top: 48px;
}

.kz-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.kz-title-row h2 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
}

.kz-title-row a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 700;
}

.kz-title-row a:hover {
    color: #fccc36;
}

.kz-title-row.compact {
    margin-bottom: 16px;
}

.kz-category-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.kz-category-tile {
    display: grid;
    min-height: 144px;
    align-content: center;
    justify-items: center;
    gap: 8px;
    padding: 20px 14px;
    border-radius: 16px;
    color: #ffffff;
    text-align: center;
}

.kz-category-tile span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    background: rgba(252, 204, 54, 0.14);
    color: #fccc36;
    font-size: 22px;
    font-weight: 900;
}

.kz-category-tile strong,
.kz-category-tile small {
    display: block;
}

.kz-category-tile strong {
    color: #ffffff;
    font-size: 15px;
}

.kz-category-tile small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.kz-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
}

.kz-countdown span {
    display: grid;
    min-width: 34px;
    height: 30px;
    place-items: center;
    border-radius: 7px;
    background: rgba(252, 204, 54, 0.16);
    color: #fccc36;
    font-size: 13px;
    font-weight: 900;
}

.kz-promo-grid,
.kz-catalog-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.kz-promo-card {
    position: relative;
    display: flex;
    min-height: 314px;
    flex-direction: column;
    padding: 14px;
    overflow: hidden;
    border-radius: 16px;
    color: #ffffff;
}

.kz-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: #fccc36;
    color: #161616;
    font-size: 11px;
    font-weight: 900;
}

.kz-promo-img {
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 0.78;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    padding: 10px;
    color: #fccc36;
    font-size: 46px;
    font-weight: 900;
}

.kz-promo-card h3,
.kz-catalog-card h3,
.kz-line-product h3,
.kz-news-card h3 {
    display: -webkit-box;
    margin: 12px 0 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kz-promo-card p,
.kz-catalog-card p,
.kz-line-product p,
.kz-news-card p {
    display: -webkit-box;
    margin: 7px 0 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kz-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
}

.kz-price-row strong,
.kz-catalog-card strong,
.kz-line-product strong {
    color: #fccc36;
    font-size: 18px;
    font-weight: 900;
}

.kz-price-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-width: 54px;
    border-radius: 7px;
    background: #fccc36;
    color: #161616;
    font-size: 12px;
    font-weight: 900;
}

.kz-catalog-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    min-height: 128px;
    padding: 14px;
    border-radius: 16px;
    color: #ffffff;
}

.kz-catalog-img,
.kz-line-img {
    display: grid;
    width: 88px;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    padding: 7px;
    color: #fccc36;
    font-size: 32px;
    font-weight: 900;
}

.kz-catalog-card h3,
.kz-line-product h3 {
    margin-top: 0;
}

.kz-catalog-card strong {
    display: block;
    margin-top: 10px;
    font-size: 15px;
}

.kz-panel-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.kz-side-panel {
    padding: 24px;
    border-radius: 16px;
}

.kz-line-product {
    display: grid;
    grid-template-columns: 34px 76px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.kz-line-product:first-of-type {
    border-top: 0;
}

.kz-rank {
    color: rgba(255, 255, 255, 0.36);
    font-size: 18px;
    font-weight: 900;
}

.kz-line-img {
    width: 76px;
    font-size: 27px;
}

.kz-line-product strong {
    display: block;
    margin-top: 8px;
    font-size: 15px;
}

.kz-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kz-news-card {
    display: block;
    padding: 14px;
    border-radius: 16px;
    color: #ffffff;
}

.kz-news-card img,
.kz-news-card > div {
    display: grid;
    width: 100%;
    aspect-ratio: 16 / 9;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(252, 204, 54, 0.12);
    color: #fccc36;
    object-fit: cover;
}

.kz-news-card span {
    display: block;
    margin-top: 12px;
    color: #fccc36;
    font-size: 12px;
    font-weight: 800;
}

.kz-why {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 54px;
}

.kz-why div {
    padding: 24px;
    border-radius: 16px;
}

.kz-why h3 {
    margin: 16px 0 8px;
    color: #ffffff;
    font-size: 18px;
}

.kz-why p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.7;
}

.kz-app-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
    margin-top: 48px;
    padding: 32px 40px;
    border-radius: 16px;
    background:
        linear-gradient(100deg, rgba(252, 204, 54, 0.2), rgba(255, 255, 255, 0.05)),
        #1c1c23;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.kz-app-banner h2 {
    max-width: 580px;
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.24;
}

.kz-app-banner a {
    margin-top: 0;
}

.kz-download-float {
    position: fixed;
    right: 50%;
    bottom: 18px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(720px, calc(100% - 36px));
    min-height: 62px;
    padding: 12px 16px 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(28, 28, 35, 0.96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
    color: #ffffff;
    transform: translateX(50%);
}

.kz-download-float strong {
    min-width: 0;
    flex: 1;
    font-size: 14px;
}

.kz-download-float a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    border-radius: 8px;
    background: #fccc36;
    color: #161616;
    font-size: 13px;
    font-weight: 900;
}

.kz-download-float button {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.kz-home .product-card-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center !important;
}

@media (max-width: 1180px) {
    .kz-hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kz-category-row,
    .kz-promo-grid,
    .kz-catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kz-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .kz-home {
        padding-top: 16px;
    }

    .kz-hero {
        padding: 34px 24px 52px;
    }

    .kz-hero-copy h1 {
        font-size: 32px;
    }

    .kz-service,
    .kz-category-row,
    .kz-promo-grid,
    .kz-catalog-grid,
    .kz-panel-row,
    .kz-news-grid,
    .kz-why {
        grid-template-columns: 1fr;
    }

    .kz-app-banner {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .kz-download-float {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== KARDZ.COM DENSE HOME MATCH ===== */
.kz2-home {
    min-height: 100vh;
    padding: 0 0 72px;
    background:
        radial-gradient(circle at 50% -120px, rgba(84, 31, 164, 0.38), transparent 430px),
        #0e0e11;
    color: #ffffff;
}

.kz2-home a {
    text-decoration: none;
}

.kz2-carousel {
    position: relative;
    height: 334px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 8px;
    background: #17171d;
}

.kz2-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.kz2-carousel-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.kz2-carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.kz2-carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kz2-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.32);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.kz2-carousel-arrow:hover {
    background: #fccc36;
    color: #161616;
    transform: translateY(-50%) scale(1.05);
}

.kz2-carousel-arrow.left {
    left: 18px;
}

.kz2-carousel-arrow.right {
    right: 18px;
}

.kz2-carousel-dots {
    position: absolute;
    right: 0;
    bottom: 13px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
    width: max-content;
    margin: auto;
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
}

.kz2-carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
}

.kz2-carousel-dots button.is-active {
    width: 32px;
    background: #fccc36;
}

.kz2-section {
    margin-top: 42px;
}

.kz2-recent-section {
    margin-top: 56px;
}

.kz2-recent-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.kz2-recent-head h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.kz2-recent-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.72);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.kz2-recent-clear::before {
    content: "";
    width: 12px;
    height: 13px;
    border: 2px solid currentColor;
    border-top-width: 3px;
    border-radius: 2px;
    opacity: 0.8;
}

.kz2-recent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.kz2-recent-card {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: center;
    min-height: 112px;
    padding: 16px 18px;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    background: #1a1b20;
    color: #fff;
    transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.kz2-recent-card:hover {
    border-color: rgba(252, 204, 54, 0.34);
    background: #1f2027;
    transform: translateY(-2px);
}

.kz2-recent-img {
    display: grid;
    width: 80px;
    height: 80px;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(252, 204, 54, 0.15);
    color: #fccc36;
    font-size: 28px;
    font-weight: 900;
}

.kz2-recent-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kz2-recent-body {
    display: block;
    min-width: 0;
}

.kz2-recent-body strong {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kz2-recent-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}

.kz2-recent-tags em {
    display: inline-flex;
    align-items: center;
    height: 21px;
    padding: 0 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
}

.kz2-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.kz2-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.kz2-title p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    line-height: 1.35;
}

.kz2-title a {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(252, 204, 54, 0.08);
    color: #fccc36;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.kz2-promotion-box {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 24px;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background:
        radial-gradient(760px 520px at 0 0, rgba(127, 24, 230, 0.88), rgba(127, 24, 230, 0.42) 34%, rgba(127, 24, 230, 0.12) 58%, rgba(255, 255, 255, 0.06) 78%),
        rgba(255, 255, 255, 0.06);
}

.kz2-mini-card {
    position: relative;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 16px;
    min-height: 112px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(48, 48, 54, 0.46);
    color: #ffffff;
    backdrop-filter: blur(1px);
    transition: background 0.18s ease, transform 0.18s ease;
}

.kz2-mini-card:hover {
    background: rgba(58, 58, 66, 0.54);
    transform: translateY(-1px);
}

.kz2-mini-img,
.kz2-panel-img {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 6px;
    color: #fccc36;
    font-weight: 900;
}

.kz2-mini-img {
    width: 80px;
    height: 80px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
}

.kz2-mini-info h3,
.kz2-panel-product h3 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.kz2-mini-info h3 {
    font-size: 16px;
    line-height: 1.22;
    -webkit-line-clamp: 1;
}

.kz2-mini-info p,
.kz2-panel-product p {
    margin: 4px 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.kz2-mini-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
    font-size: 13px;
}

.kz2-mini-info p span {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.kz2-mini-info p em {
    min-width: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.kz2-mini-info strong,
.kz2-panel-product strong,
.kz2-price strong {
    color: #fccc36;
    font-size: 14px;
    font-weight: 900;
}

.kz2-mini-info strong {
    display: block;
    margin-top: 9px;
    font-size: 21px;
    line-height: 1;
}

.kz2-discount,
.kz2-price span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    min-width: 38px;
    padding: 0 6px;
    border-radius: 2px;
    background: #fccc36;
    color: #161616;
    font-size: 10px;
    font-weight: 900;
}

.kz2-discount.empty {
    visibility: hidden;
}

.kz2-tall-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.kz2-tall-grid.five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kz2-tall-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.kz2-tall-img {
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 1.34;
    place-items: center;
    overflow: hidden;
    background: rgba(252, 204, 54, 0.1);
    color: #fccc36;
    font-size: 44px;
    font-weight: 900;
}

.kz2-tall-card h3 {
    display: -webkit-box;
    min-height: 37px;
    margin: 10px 10px 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kz2-tall-card p,
.kz2-rating {
    margin: 7px 10px 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.kz2-price {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 9px 10px 0;
}

.kz2-tall-card del,
.kz2-panel-product del {
    display: block;
    margin: 2px 10px 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.kz2-recharge-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    background: #1d1e22;
    color: #ffffff;
}

.kz2-recharge-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.34;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #15161a;
}

.kz2-recharge-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kz2-recharge-ribbon {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    background: #8067ee;
    color: #ffffff;
    font-size: 16px;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
}

.kz2-recharge-card h3 {
    display: -webkit-box;
    min-height: 40px;
    margin: 12px 12px 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kz2-recharge-card p {
    margin: 14px 12px 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.kz2-recharge-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 12px 12px 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1;
}

.kz2-recharge-rating span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.kz2-recharge-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 19px 12px 0;
}

.kz2-recharge-price strong {
    color: #fccc36;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.kz2-recharge-price span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    min-width: 38px;
    padding: 0 6px;
    border-radius: 3px;
    background: #fccc36;
    color: #141414;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.kz2-recharge-card del {
    display: block;
    margin: 5px 12px 13px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    line-height: 1;
}

.kz2-static-grid {
    display: grid;
    gap: 24px;
}

.kz2-static-grid.video {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kz2-static-grid.gift {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.kz2-static-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.kz2-static-img {
    display: grid;
    width: 100%;
    place-items: center;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #191a20;
}

.kz2-static-card.video .kz2-static-img {
    aspect-ratio: 1 / 1.18;
}

.kz2-static-card.gift .kz2-static-img {
    aspect-ratio: 1 / 1.32;
}

.kz2-static-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kz2-static-img span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    text-align: center;
    color: #ffffff;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.08;
}

.kz2-static-img.brand-douyin {
    background: #050506;
}

.kz2-static-img.brand-douyin span {
    font-size: 29px;
    text-shadow: -2px 0 #00f5ff, 2px 0 #ff2a55;
}

.kz2-static-img.brand-netease {
    background: #df0820;
}

.kz2-static-img.brand-netease span {
    font-size: 18px;
}

.kz2-static-img.brand-bilibili {
    background: linear-gradient(155deg, #f56aa6 0%, #ff5b96 52%, #f0418f 100%);
}

.kz2-static-img.brand-kuaishou {
    background: #ff5b16;
}

.kz2-static-img.brand-iqiyi {
    background: linear-gradient(140deg, #19e176 0%, #17cc80 52%, #b83cff 100%);
}

.kz2-static-img.brand-nintendo {
    background: #df1f1a;
}

.kz2-static-img.brand-google-play {
    background: #ffffff;
}

.kz2-static-img.brand-google-play span {
    color: #202124;
    font-size: 22px;
}

.kz2-static-img.brand-google-play span::before {
    content: "";
    width: 0;
    height: 0;
    margin-right: 10px;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 42px solid #34a853;
    filter: drop-shadow(12px 0 0 #fbbc04) drop-shadow(24px 0 0 #4285f4);
}

.kz2-static-img.brand-xbox {
    background: #107c10;
}

.kz2-static-img.brand-xbox span {
    color: #ffffff;
    font-size: 24px;
}

.kz2-static-card h3 {
    display: -webkit-box;
    min-height: 37px;
    margin: 10px 10px 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kz2-static-card p,
.kz2-static-card .kz2-rating {
    margin: 7px 10px 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.kz2-static-card del {
    display: block;
    margin: 2px 10px 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.kz2-more-line {
    display: block;
    width: max-content;
    margin: 18px auto 0;
    color: #fccc36;
    font-size: 12px;
    font-weight: 800;
}

.kz2-panel-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 46px;
}

.kz2-panel {
    min-height: 410px;
    padding: 24px 28px 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.kz2-panel .kz2-title {
    align-items: center;
    margin-bottom: 28px;
}

.kz2-panel .kz2-title h2 {
    font-size: 28px;
    line-height: 1.05;
}

.kz2-panel .kz2-title a {
    height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: #fccc36;
    font-size: 12px;
}

.kz2-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    row-gap: 26px;
}

.kz2-panel-product {
    position: relative;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    min-height: 80px;
    min-width: 0;
    color: #ffffff;
}

.kz2-panel-img {
    position: relative;
    width: 80px;
    height: 80px;
    padding: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.kz2-panel-discount {
    position: absolute;
    left: -2px;
    top: -2px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px 2px 8px 2px;
    background: #fccc36;
    color: #151515;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.kz2-panel-product h3 {
    display: -webkit-box;
    min-height: 40px;
    margin: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kz2-panel-product p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
}

.kz2-panel-product p span:last-child {
    color: rgba(255, 255, 255, 0.58);
}

.kz2-panel-star {
    color: rgba(255, 255, 255, 0.42) !important;
    font-size: 15px;
    line-height: 1;
}

.kz2-panel-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 9px;
}

.kz2-panel-product strong {
    color: #fccc36;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.kz2-panel-product del {
    display: inline;
    margin: 0;
    color: rgba(255, 255, 255, 0.36);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.kz2-news-head .kz2-title {
    margin-bottom: 10px;
}

.kz2-news-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.kz2-news-tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    min-width: 110px;
    padding: 0 18px;
    border: 0;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.kz2-news-tabs button.active {
    background: #fccc36;
    color: #161616;
}

.kz2-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.kz2-news-card {
    display: block;
    overflow: hidden;
    min-height: 300px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.kz2-news-card img,
.kz2-news-card > div {
    display: grid;
    width: 100%;
    height: 186px;
    aspect-ratio: auto;
    place-items: center;
    background: rgba(252, 204, 54, 0.14);
    color: #fccc36;
    object-fit: cover;
}

.kz2-news-card h3 {
    display: -webkit-box;
    min-height: 46px;
    margin: 14px 14px 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kz2-news-card time {
    display: block;
    margin: 20px 14px 14px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    text-align: right;
}

.kz2-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.kz2-why-card {
    min-height: 154px;
    padding: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.kz2-why-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(116, 39, 191, 0.52);
}

.kz2-why-card span svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #c58bff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kz2-why-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
}

.kz2-why-card p {
    margin: 10px auto 0;
    max-width: 270px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.55;
}

.kz2-blue-banner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 72px;
    gap: 24px;
    margin-top: 34px;
    padding: 0 22px;
    border-radius: 8px;
    background: linear-gradient(90deg, #05c7ff, #006dff);
    color: #ffffff;
}

.kz2-blue-banner strong {
    margin-right: auto;
    font-size: 17px;
}

.kz2-blue-banner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    border-radius: 18px;
    background: #fccc36;
    color: #161616;
    font-size: 12px;
    font-weight: 900;
}

.kz2-home .product-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center !important;
}

.kz2-mini-img .product-card-image,
.kz2-panel-img .product-card-image {
    object-fit: cover !important;
}

.kz2-promotion-box .kz2-mini-img .product-card-image {
    object-fit: cover !important;
}

@media (max-width: 1180px) {
    .kz2-promotion-box,
    .kz2-recent-grid,
    .kz2-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kz2-tall-grid,
    .kz2-tall-grid.five,
    .kz2-static-grid.video,
    .kz2-static-grid.gift {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .kz2-carousel {
        height: 42vw;
        min-height: 180px;
        margin-top: 16px;
    }

    .kz2-promotion-box,
    .kz2-recent-grid,
    .kz2-panel-row,
    .kz2-panel-grid,
    .kz2-news-grid,
    .kz2-why-grid,
    .kz2-tall-grid,
    .kz2-tall-grid.five,
    .kz2-static-grid.video,
    .kz2-static-grid.gift {
        grid-template-columns: 1fr;
    }

    .kz2-blue-banner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 18px;
    }
}

.kz-news-page .kz-news-grid .kz-news-card {
    height: auto;
    overflow: hidden;
    padding: 0;
    border: 1px solid #24252b;
    border-radius: 8px;
    background: #17181f;
    box-shadow: none;
}

.kz-news-page .kz-news-grid .kz-news-card img {
    display: block;
    width: 100%;
    height: 184px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px 8px 0 0;
    background: transparent;
    object-fit: cover;
}

.kz-news-page .kz-news-grid .kz-news-card > div {
    display: block;
    width: 100%;
    height: 82px;
    min-height: 0;
    padding: 14px 16px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
}

.kz-news-page .kz-news-grid .kz-news-card h3 {
    margin: 0;
    text-align: left;
}

.kz-news-page .kz-news-topic .kz-news-card.featured {
    overflow: hidden;
    padding: 0;
    border: 1px solid #24252b;
    border-radius: 8px;
    background: #17181f;
    box-shadow: none;
}

.kz-news-page .kz-news-topic .kz-news-card.featured img {
    display: block;
    width: 100%;
    height: 384px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px 8px 0 0;
    background: transparent;
    object-fit: cover;
}

.kz-news-page .kz-news-topic .kz-news-card.featured > div {
    display: block;
    width: 100%;
    height: 146px;
    padding: 22px 22px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
}

.kz-news-page .kz-news-topic .kz-news-card.featured h3,
.kz-news-page .kz-news-topic .kz-news-card.featured p,
.kz-news-page .kz-news-topic .kz-news-card.featured time {
    text-align: left;
}

.kz-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #10141b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: none;
}

.kz-header-main.center,
.kz-nav-inner.center {
    width: min(1392px, calc(100% - 48px));
}

.kz-header-main {
    height: 66px;
    gap: 28px;
}

.kz-logo {
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.kz-logo span {
    width: 32px;
    height: 32px;
    margin-right: 1px;
    border-radius: 8px;
    font-size: 23px;
}

.kz-search {
    position: relative;
    width: 620px;
    height: 40px;
    margin-left: 18px;
    padding: 0 46px 0 42px;
    border: 1px solid #292c34;
    border-radius: 8px;
    background: #191c23;
    color: #a9adb7;
    font-size: 15px;
    justify-content: flex-start;
}

.kz-search svg {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: #8f949f;
}

.kz-search::after {
    position: absolute;
    right: 14px;
    width: 18px;
    height: 18px;
    content: "";
    background: currentColor;
    opacity: 0;
}

.kz-header-actions {
    gap: 10px;
}

.kz-locale,
.kz-order-btn,
.kz-download-btn,
.kz-header-actions .btn-nav {
    height: 38px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #2b2f38;
    font-size: 14px;
    font-weight: 900;
    line-height: 38px;
    text-align: center;
}

.kz-locale {
    width: auto;
    min-width: 118px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    justify-content: flex-start;
}

.kz-download-btn {
    width: 132px;
    min-width: 132px;
    border: 0;
    background: linear-gradient(90deg, #8138ff 0%, #f028d5 100%);
    color: #ffffff;
    gap: 8px;
}

.kz-download-icon {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #ffffff;
    flex: 0 0 auto;
}

.kz-download-icon::before {
    position: absolute;
    top: 4px;
    left: 9px;
    width: 2px;
    height: 8px;
    border-radius: 2px;
    background: #8d45ff;
    content: "";
}

.kz-download-icon::after {
    position: absolute;
    left: 6px;
    bottom: 4px;
    width: 7px;
    height: 7px;
    border-right: 2px solid #8d45ff;
    border-bottom: 2px solid #8d45ff;
    content: "";
    transform: rotate(45deg);
}

.kz-order-btn,
.kz-header-actions .btn-nav-ghost {
    width: 76px;
    min-width: 76px;
    background: #22262e !important;
}

.kz-header-actions .btn-nav-primary {
    width: 148px;
    min-width: 148px;
    background: #ffca2f !important;
    border-color: #ffca2f !important;
}

.kz-header-actions .kz-auth-combo {
    width: 148px;
    min-width: 148px;
    color: #161616 !important;
}

.kz-header-actions .btn-nav {
    flex: 0 0 auto;
}

.kz-nav-wrap {
    height: 48px;
    background: #101014;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.kz-nav-inner {
    height: 48px;
    position: relative;
}

.kz-nav ul {
    gap: 34px;
}

.kz-nav a {
    height: 48px;
    line-height: 48px;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 900;
}

.kz-nav a.active {
    color: #ffca2f !important;
}

.kz-nav-icon {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.82);
    color: #101014;
    font-size: 8px;
}

.kz-nav a.active .kz-nav-icon,
.kz-nav a:hover .kz-nav-icon {
    background: #ffca2f;
    color: #101014;
}

.kz-nav b {
    border-right-width: 4px;
    border-left-width: 4px;
    border-top-width: 5px;
}

.kz-nav-ad {
    display: none;
}

.kz-mega {
    top: 114px;
}

.kz-news-menu {
    top: 48px;
}

/* Kardz home paired list panels: final exact override */
.kz2-home .kz2-panel-row.center {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 684px)) !important;
    gap: 24px !important;
    align-items: stretch !important;
    margin-top: 46px !important;
}

.kz2-home .kz2-panel {
    min-height: 410px !important;
    padding: 24px 26px 26px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.055) !important;
}

.kz2-home .kz2-panel .kz2-title {
    align-items: center !important;
    margin-bottom: 28px !important;
}

.kz2-home .kz2-panel .kz2-title h2 {
    font-size: 27px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
}

.kz2-home .kz2-panel .kz2-title a {
    height: 32px !important;
    padding: 0 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fccc36 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.kz2-home .kz2-panel-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 42px !important;
    row-gap: 27px !important;
}

.kz2-home .kz2-panel-product {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 80px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 18px !important;
    min-height: 80px !important;
    padding: 0 !important;
    background: transparent !important;
    color: #fff !important;
}

.kz2-home .kz2-panel-img {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.kz2-home .kz2-panel-img .product-card-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.kz2-home .kz2-panel-discount {
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    height: 20px !important;
    padding: 0 6px !important;
    border-radius: 10px 2px 8px 2px !important;
    background: #fccc36 !important;
    color: #151515 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.kz2-home .kz2-panel-product h3 {
    display: -webkit-box !important;
    min-height: 40px !important;
    margin: 0 !important;
    overflow: hidden !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.42 !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
}

.kz2-home .kz2-panel-product p {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 9px 0 0 !important;
    color: rgba(255, 255, 255, 0.64) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
}

.kz2-home .kz2-panel-star {
    color: rgba(255, 255, 255, 0.42) !important;
    font-size: 15px !important;
}

.kz2-home .kz2-panel-price {
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    margin-top: 9px !important;
}

.kz2-home .kz2-panel-product strong {
    display: inline !important;
    color: #fccc36 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.kz2-home .kz2-panel-product del {
    display: inline !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.36) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

/* Kardz home video live streaming: match original fixed card rhythm */
.kz2-home .kz2-static-grid.video {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 24px !important;
    justify-content: stretch !important;
    align-items: start !important;
}

.kz2-home .kz2-static-card.video {
    width: auto !important;
    min-height: 430px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    background: #1d1e22 !important;
    color: #fff !important;
}

.kz2-home .kz2-static-card.video .kz2-static-img {
    width: 100% !important;
    height: 286px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #050506 !important;
}

.kz2-home .kz2-static-card.video .kz2-static-img img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

.kz2-home .kz2-static-card.video .kz2-static-img span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 18px !important;
    color: #fff !important;
    font-size: 25px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: center !important;
}

.kz2-home .kz2-static-card.video h3 {
    display: -webkit-box !important;
    min-height: 18px !important;
    margin: 13px 12px 0 !important;
    overflow: hidden !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 1 !important;
}

.kz2-home .kz2-static-card.video p {
    margin: 18px 12px 0 !important;
    overflow: hidden !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

.kz2-home .kz2-static-card.video .kz2-rating {
    margin: 10px 12px 0 !important;
    overflow: hidden !important;
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

.kz2-home .kz2-static-card.video .kz2-price {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 12px 12px 0 !important;
}

.kz2-home .kz2-static-card.video .kz2-price strong {
    color: #fccc36 !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.kz2-home .kz2-static-card.video .kz2-price span {
    height: 20px !important;
    min-width: 38px !important;
    padding: 0 6px !important;
    border-radius: 3px !important;
    background: #fccc36 !important;
    color: #171717 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
}

.kz2-home .kz2-static-card.video del {
    display: block !important;
    margin: 6px 12px 14px !important;
    color: rgba(255, 255, 255, 0.42) !important;
    font-size: 12px !important;
    line-height: 1 !important;
}
