/* ============================================================================
   TechZone Homepage — homepage.css  (Phase 2)
   Loaded ONLY on front page. Includes: custom header + all content sections.
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ──────────────────────────────────────────────── */
:root {
    --tz-blue: #1d4ed8;
    --tz-blue-hover: #1e40af;
    --tz-blue-lt: #3b82f6;
    --tz-navy: #0f172a;
    --tz-dark: #1e293b;
    --tz-mid: #334155;
    --tz-white: #ffffff;
    --tz-off: #f8fafc;
    --tz-gray: #f1f5f9;
    --tz-border: #e2e8f0;
    --tz-text: #1e293b;
    --tz-muted: #64748b;
    --tz-red: #ef4444;
    --tz-gold: #f59e0b;
    --tz-orange: #f97316;
    --tz-radius: 8px;
    --tz-radius-lg: 14px;
    --tz-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    --tz-shadow-md: 0 8px 32px rgba(0, 0, 0, .14);
    --tz-t: .2s ease;
    --tz-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --tz-max: 1360px;

    /* ── CRITICAL: sidebar width must match ALL CATEGORIES button width ── */
    --tz-sidebar-w: 234px;
    --tz-hotdeals-w: 248px;
}

/* ── Scope reset ────────────────────────────────────────────────────────── */
.tz-custom-header *,
.tz-homepage *,
.tz-custom-header *::before,
.tz-custom-header *::after,
.tz-homepage *::before,
.tz-homepage *::after {
    box-sizing: border-box;
}

.tz-custom-header {
    font-family: var(--tz-font);
}

.tz-homepage {
    font-family: var(--tz-font);
    color: var(--tz-text);
    background: var(--tz-off);
    -webkit-font-smoothing: antialiased;
}

.tz-homepage a {
    text-decoration: none;
    color: inherit;
}

.tz-homepage ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tz-homepage h1,
.tz-homepage h2,
.tz-homepage h3 {
    margin: 0;
}

.tz-homepage p,
.tz-custom-header p {
    margin: 0;
}

.tz-homepage img,
.tz-custom-header img {
    display: block;
    max-width: 100%;
}

/* ── Shared containers ──────────────────────────────────────────────────── */
.tz-container {
    max-width: var(--tz-max);
    margin: 0 auto;
    padding: 0 24px;
}

.tz-hdr-container {
    max-width: var(--tz-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Shared buttons ─────────────────────────────────────────────────────── */
.tz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--tz-radius);
    font-family: var(--tz-font);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--tz-t);
    white-space: nowrap;
}

.tz-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.tz-btn--primary {
    background: var(--tz-blue);
    color: #fff;
    border-color: var(--tz-blue);
}

.tz-btn--primary:hover {
    background: var(--tz-blue-hover);
    border-color: var(--tz-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 78, 216, .38);
    color: #fff;
}

.tz-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .65);
    padding: 9px 20px;
    font-size: 13px;
}

.tz-btn--outline-white:hover {
    background: #fff;
    color: var(--tz-navy);
    border-color: #fff;
}

.tz-btn--block {
    width: 100%;
    justify-content: center;
}

/* ── Section title ──────────────────────────────────────────────────────── */
.tz-section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--tz-dark);
    margin: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.tz-section-title__line {
    flex: 1;
    max-width: 130px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tz-border));
}

.tz-section-title__line:last-child {
    background: linear-gradient(270deg, transparent, var(--tz-border));
}

.tz-empty,
.tz-no-items {
    color: var(--tz-muted);
    font-size: 14px;
    padding: 24px;
    text-align: center;
}


/* ============================================================================
   CUSTOM HEADER — 3 Rows
   ============================================================================ */
.tz-custom-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .18);
}

/* ── ROW 1: Info Bar (Blue) ─────────────────────────────────────────────── */
.tz-info-bar {
    background: var(--tz-blue);
    color: rgba(255, 255, 255, .92);
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 0;
}

.tz-info-bar .tz-hdr-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.tz-info-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.tz-info-bar__icon {
    display: flex;
    align-items: center;
}

.tz-info-bar__icon svg {
    width: 15px;
    height: 15px;
    opacity: .85;
}

/* Pipe dividers between items */
.tz-info-bar__item+.tz-info-bar__item {
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

/* Last two items (Track + Help) separated by | text */
.tz-info-bar__item:nth-child(4)::before {
    content: '';
}

/* ── ROW 2: Logo + Search + Phone + Account + Cart ──────────────────────── */
.tz-hdr-main {
    background: var(--tz-white);
    border-bottom: 1px solid var(--tz-border);
    padding: 14px 0;
}

.tz-hdr-main__inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.tz-hdr-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    width: var(--tz-sidebar-w);
    text-decoration: none;
}

.tz-hdr-logo__img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.tz-hdr-logo__text {
    font-size: 20px;
    font-weight: 900;
    color: var(--tz-blue);
    letter-spacing: -1px;
    font-family: var(--tz-font);
}

/* Search Bar */
.tz-hdr-search {
    flex: 1;
    max-width: 540px;
}

.tz-search-form {
    display: flex;
    align-items: stretch;
    border: 2px solid var(--tz-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--tz-t), box-shadow var(--tz-t);
    height: 46px;
}

.tz-search-form:focus-within {
    border-color: var(--tz-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, .12);
}

.tz-search-form__cat-wrap {
    position: relative;
    border-right: 1px solid var(--tz-border);
    flex-shrink: 0;
    background: var(--tz-gray);
    display: flex;
    align-items: center;
}

.tz-search-form__cat {
    appearance: none;
    border: none;
    background: transparent;
    font-family: var(--tz-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--tz-text);
    padding: 0 32px 0 12px;
    height: 100%;
    cursor: pointer;
    outline: none;
    min-width: 130px;
    max-width: 150px;
}

.tz-search-form__cat-chevron {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--tz-muted);
    display: flex;
}

.tz-search-form__cat-chevron svg {
    width: 14px;
    height: 14px;
}

.tz-search-form__input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--tz-font);
    font-size: 14px;
    color: var(--tz-text);
    padding: 0 14px;
    background: transparent;
    min-width: 0;
}

.tz-search-form__input::placeholder {
    color: var(--tz-muted);
}

.tz-search-form__btn {
    width: 48px;
    background: var(--tz-blue);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--tz-t);
}

.tz-search-form__btn:hover {
    background: var(--tz-blue-hover);
}

.tz-search-form__btn svg {
    width: 20px;
    height: 20px;
}

/* Phone */
.tz-hdr-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.tz-hdr-phone__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(29, 78, 216, .08);
    color: var(--tz-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tz-hdr-phone__icon svg {
    width: 20px;
    height: 20px;
}

.tz-hdr-phone__text {
    display: flex;
    flex-direction: column;
}

.tz-hdr-phone__label {
    font-size: 11px;
    color: var(--tz-muted);
    font-weight: 500;
    line-height: 1.2;
}

.tz-hdr-phone__num {
    font-size: 15px;
    font-weight: 800;
    color: var(--tz-dark);
    line-height: 1.3;
    letter-spacing: -.2px;
}

.tz-hdr-phone__hours {
    font-size: 10.5px;
    color: var(--tz-muted);
    line-height: 1.2;
}

/* Account */
.tz-hdr-account {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: var(--tz-radius);
    color: var(--tz-text);
    text-decoration: none;
    transition: all var(--tz-t);
    flex-shrink: 0;
}

.tz-hdr-account:hover {
    background: var(--tz-gray);
    color: var(--tz-blue);
}

.tz-hdr-account__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--tz-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tz-mid);
    transition: all var(--tz-t);
    flex-shrink: 0;
}

.tz-hdr-account__icon svg {
    width: 20px;
    height: 20px;
}

.tz-hdr-account:hover .tz-hdr-account__icon {
    background: var(--tz-blue);
    color: white;
}

.tz-hdr-account__text {
    display: flex;
    flex-direction: column;
}

.tz-hdr-account__label {
    font-size: 13px;
    font-weight: 700;
    color: inherit;
    line-height: 1.3;
}

.tz-hdr-account__sub {
    font-size: 11px;
    color: var(--tz-muted);
    line-height: 1.2;
}

/* Cart */
.tz-hdr-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: var(--tz-radius);
    color: var(--tz-text);
    text-decoration: none;
    transition: all var(--tz-t);
    flex-shrink: 0;
    border: 2px solid var(--tz-border);
}

.tz-hdr-cart:hover {
    border-color: var(--tz-blue);
    color: var(--tz-blue);
}

.tz-hdr-cart__icon-wrap {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--tz-mid);
}

.tz-hdr-cart__icon-wrap svg {
    width: 24px;
    height: 24px;
}

.tz-hdr-cart:hover .tz-hdr-cart__icon-wrap {
    color: var(--tz-blue);
}

/* Cart counter badge */
.tz-hdr-cart__count {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    background: var(--tz-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 9px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tz-hdr-cart__count.empty-counter {
    background: var(--tz-muted);
}

.tz-hdr-cart__text {
    display: flex;
    flex-direction: column;
}

.tz-hdr-cart__label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.tz-hdr-cart__total {
    font-size: 13px;
    font-weight: 800;
    color: var(--tz-blue);
    line-height: 1.3;
}

/* WC cart total helper classes */
.tz-hdr-cart__total .amount {
    font-size: 13px;
    font-weight: 800;
    color: var(--tz-blue);
}

.tz-hdr-cart__total .woocommerce-Price-currencySymbol {
    font-size: 11px;
}

/* ── ROW 3: Dark Nav Bar ────────────────────────────────────────────────── */
.tz-nav-bar {
    background: var(--tz-navy);
    padding: 0;
}

.tz-nav-bar__inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 48px;
}

/* ALL CATEGORIES button — EXACT same width as sidebar so they align */
.tz-all-cats-btn {
    width: var(--tz-sidebar-w);
    flex-shrink: 0;
    background: var(--tz-blue);
    color: white;
    border: none;
    font-family: var(--tz-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    cursor: pointer;
    transition: background var(--tz-t);
    white-space: nowrap;
    border-radius: 12px;
}

.tz-all-cats-btn:hover {
    background: var(--tz-blue-hover);
}

.tz-all-cats-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Nav links */
.tz-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    margin: 0;
    padding: 0 16px;
}

.tz-nav-links__item {
    display: block;
    padding: 0 16px;
    line-height: 48px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: color var(--tz-t);
    white-space: nowrap;
    position: relative;
}

.tz-nav-links__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--tz-blue-lt);
    transform: scaleX(0);
    transition: transform var(--tz-t);
    border-radius: 3px 3px 0 0;
}

.tz-nav-links__item:hover,
.tz-nav-links__item--active {
    color: white;
}

.tz-nav-links__item:hover::after,
.tz-nav-links__item--active::after {
    transform: scaleX(1);
}

/* Special Offers button */
.tz-special-offers-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    background: var(--tz-orange);
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .3px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--tz-t), transform var(--tz-t);
    border-radius: 0;
}

.tz-special-offers-btn svg {
    width: 16px;
    height: 16px;
    color: #fff5;
}

.tz-special-offers-btn:hover {
    background: #ea6c00;
    color: white;
}


/* ============================================================================
   §1 — HERO SECTION
   ============================================================================ */
.tz-hero-section {
    background: var(--tz-navy);
    padding: 0;
}

.tz-hero-wrap {
    display: grid;
    grid-template-columns: var(--tz-sidebar-w) 1fr var(--tz-hotdeals-w);
    min-height: 440px;
    gap: 0;
    align-items: stretch;
    padding: 0 24px;
    max-width: var(--tz-max);
    margin: 0 auto;
}

/* ── Category Sidebar — ROUNDED CORNERS (mock design) ─────────────────── */
.tz-sidebar {
    background: var(--tz-white);
    display: flex;
    flex-direction: column;
    /* Rounded bottom-right corner + soft shadow to match mockup */
    border-radius: 12px 12px 12px 12px;
    box-shadow: 3px 0 12px rgba(0, 0, 0, .08);
    overflow: hidden;
    /* clip children to rounded corner */
    position: relative;
    z-index: 2;
}

/* No separate header — the nav bar's ALL CATEGORIES button serves as header */
.tz-sidebar__list {
    flex: 1;
    overflow-y: auto;
    padding: 4px 8px 8px;
    /* padding creates space for rounded items */
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.tz-sidebar__list::-webkit-scrollbar {
    width: 3px;
}

.tz-sidebar__list::-webkit-scrollbar-thumb {
    background: var(--tz-border);
    border-radius: 3px;
}

/* ROUNDED sidebar links — key visual match to mock */
.tz-sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 12px;
    color: var(--tz-text);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--tz-t);
    border-radius: 7px;
    /* ← SOFT ROUNDED CORNERS on each row */
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
}

.tz-sidebar__link:hover {
    background: rgba(29, 78, 216, .09);
    color: var(--tz-blue);
    border-color: rgba(29, 78, 216, .18);
    padding-left: 14px;
    /* slight indent on hover */
}

.tz-sidebar__ico {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--tz-muted);
    transition: color var(--tz-t);
}

.tz-sidebar__link:hover .tz-sidebar__ico {
    color: var(--tz-blue);
}

.tz-sidebar__ico svg {
    width: 17px;
    height: 17px;
}

.tz-sidebar__lbl {
    flex: 1;
    line-height: 1.3;
}

/* Arrow — ALWAYS VISIBLE (subtle grey), brightens on hover — matches mockup */
.tz-sidebar__arr {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.35;
    /* always visible, muted */
    color: var(--tz-muted);
    transition: all var(--tz-t);
}

.tz-sidebar__arr svg {
    width: 14px;
    height: 14px;
}

.tz-sidebar__link:hover .tz-sidebar__arr {
    opacity: 1;
    color: var(--tz-blue);
    transform: translateX(2px);
    /* subtle nudge on hover */
}

/* ── Hero Banner ─────────────────────────────────────────────────────────── */
.tz-hero-banner {
    position: relative;
    background-color: var(--tz-navy);
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 440px;
}

.tz-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(15, 23, 42, .97) 0%, rgba(15, 23, 42, .88) 38%, rgba(15, 23, 42, .55) 65%, rgba(15, 23, 42, .15) 100%);
    z-index: 1;
}

.tz-hero-banner__body {
    position: relative;
    z-index: 2;
    padding: 48px 44px;
    max-width: 530px;
}

.tz-hero-banner__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--tz-blue-lt);
    border: 1px solid rgba(59, 130, 246, .4);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

.tz-hero-banner__h1 {
    font-size: clamp(24px, 2.6vw, 40px);
    font-weight: 900;
    color: white;
    line-height: 1.13;
    letter-spacing: -.5px;
    margin-bottom: 8px;
}

.tz-hero-banner__blue {
    color: var(--tz-blue-lt);
}

.tz-hero-banner__sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.65;
    max-width: 380px;
    margin-bottom: 20px;
}

.tz-hero-banner__badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.tz-badge {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.45;
}

.tz-badge__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--tz-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.tz-badge__check svg {
    width: 12px;
    height: 12px;
    color: white;
}

.tz-hero-banner__disc {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 3;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--tz-red);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .5px;
    line-height: 1.2;
    animation: tz-pulse 2.4s ease-in-out infinite;
    box-shadow: 0 6px 24px rgba(239, 68, 68, .5);
}

.tz-hero-banner__disc strong {
    font-size: 24px;
    line-height: 1;
}

@keyframes tz-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 6px 24px rgba(239, 68, 68, .5);
    }

    50% {
        transform: scale(1.07);
        box-shadow: 0 10px 32px rgba(239, 68, 68, .7);
    }
}

/* ── Hot Deals ───────────────────────────────────────────────────────────── */
.tz-hot-deals {
    background: white;
    border-left: 1px solid var(--tz-border);
    display: flex;
    flex-direction: column;
}

.tz-hot-deals__hd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    background: var(--tz-navy);
    color: white;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .6px;
    flex-shrink: 0;
}

.tz-hot-deals__hd svg {
    width: 18px;
    height: 18px;
    color: var(--tz-gold);
}

.tz-hot-deals__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tz-hot-deals__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--tz-border);
    position: relative;
    transition: background var(--tz-t);
    flex: 1;
}

.tz-hot-deals__card:last-child {
    border-bottom: none;
}

.tz-hot-deals__card:hover {
    background: var(--tz-gray);
}

.tz-hot-deals__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--tz-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    z-index: 1;
}

.tz-hot-deals__img {
    width: 76px;
    height: 76px;
    border-radius: var(--tz-radius);
    overflow: hidden;
    background: var(--tz-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tz-hot-deals__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tz-hot-deals__no-img {
    color: var(--tz-muted);
}

.tz-hot-deals__no-img svg {
    width: 32px;
    height: 32px;
}

.tz-hot-deals__info {
    flex: 1;
    min-width: 0;
}

.tz-hot-deals__name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--tz-text);
    line-height: 1.4;
    margin-bottom: 8px;
}

.tz-hot-deals__name:hover {
    color: var(--tz-blue);
}

.tz-hot-deals__price .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--tz-blue);
}

.tz-hot-deals__price ins {
    text-decoration: none;
}

.tz-hot-deals__price del {
    font-size: 12px;
    color: var(--tz-muted);
    margin-left: 4px;
}


/* ============================================================================
   §2 — BENEFITS BAR
   ============================================================================ */
.tz-benefits {
    background: white;
    border-top: 1px solid var(--tz-border);
    border-bottom: 1px solid var(--tz-border);
    padding: 18px 0;
}

.tz-benefits__grid {
    display: flex;
    align-items: center;
    gap: 0;
}

.tz-benefits__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 20px;
    border-right: 1px solid var(--tz-border);
    transition: all var(--tz-t);
}

.tz-benefits__item:last-child {
    border-right: none;
}

.tz-benefits__item:hover {
    background: var(--tz-gray);
}

.tz-benefits__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--tz-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--tz-blue);
    transition: all var(--tz-t);
}

.tz-benefits__icon svg {
    width: 22px;
    height: 22px;
}

.tz-benefits__item:hover .tz-benefits__icon {
    background: var(--tz-blue);
    color: white;
    transform: scale(1.08);
}

.tz-benefits__title {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    color: var(--tz-dark);
    margin-bottom: 2px;
}

.tz-benefits__sub {
    font-size: 12px;
    color: var(--tz-muted);
    font-weight: 500;
}


/* ============================================================================
   §3 — TOP CATEGORIES
   ============================================================================ */
.tz-top-cats {
    padding: 52px 0 40px;
    background: white;
}

.tz-top-cats__grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 16px 12px;
}

.tz-top-cats__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--tz-text);
    transition: all var(--tz-t);
    padding: 6px;
    border-radius: var(--tz-radius);
}

.tz-top-cats__tile:hover {
    transform: translateY(-5px);
    color: var(--tz-blue);
}

.tz-top-cats__circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 2px solid var(--tz-border);
    background: var(--tz-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all var(--tz-t);
}

.tz-top-cats__tile:hover .tz-top-cats__circle {
    border-color: var(--tz-blue);
    background: rgba(29, 78, 216, .07);
    box-shadow: 0 0 0 5px rgba(29, 78, 216, .1);
}

.tz-top-cats__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tz-top-cats__icon {
    display: flex;
    color: var(--tz-mid);
}

.tz-top-cats__icon svg {
    width: 38px;
    height: 38px;
}

.tz-top-cats__tile:hover .tz-top-cats__icon {
    color: var(--tz-blue);
}

.tz-top-cats__label {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
}


/* ============================================================================
   §4 — PROMO BANNERS
   ============================================================================ */
.tz-promos {
    padding: 0 0 52px;
    background: white;
}

.tz-promos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tz-promos__card {
    position: relative;
    border-radius: var(--tz-radius-lg);
    overflow: hidden;
    min-height: 210px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform var(--tz-t), box-shadow var(--tz-t);
}

.tz-promos__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tz-shadow-md);
}

.tz-promos__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .3) 100%);
}

.tz-promos__body {
    position: relative;
    z-index: 1;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tz-promos__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tz-blue-lt);
}

.tz-promos__title {
    font-size: 24px;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 2px;
}

.tz-promos__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
}

.tz-promos__body .tz-btn svg {
    width: 14px;
    height: 14px;
}


/* ============================================================================
   §5 — DEAL OF THE DAY + BEST SELLERS
   ============================================================================ */
.tz-deals-row {
    padding: 52px 0;
    background: var(--tz-off);
}

.tz-deals-row__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: start;
}

.tz-deal {
    background: white;
    border-radius: var(--tz-radius-lg);
    padding: 24px;
    box-shadow: var(--tz-shadow);
}

.tz-deal__title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--tz-dark);
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--tz-blue);
}

.tz-deal__card {
    position: relative;
}

.tz-deal__disc {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--tz-red);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--tz-radius);
    z-index: 1;
}

.tz-deal__img {
    max-width: 100%;
    max-height: 190px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.tz-deal__info {
    text-align: left;
}

.tz-deal__name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--tz-text);
    line-height: 1.45;
    margin-bottom: 10px;
}

.tz-deal__name:hover {
    color: var(--tz-blue);
}

.tz-deal__price {
    margin-bottom: 18px;
}

.tz-deal__price .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--tz-blue);
}

.tz-deal__price ins {
    text-decoration: none;
}

.tz-deal__price del {
    font-size: 14px;
    color: var(--tz-muted);
    margin-left: 8px;
}

.tz-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    justify-content: center;
}

.tz-countdown__blk {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--tz-navy);
    color: white;
    border-radius: var(--tz-radius);
    padding: 10px 16px;
    min-width: 64px;
}

.tz-countdown__n {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}

.tz-countdown__l {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-top: 4px;
}

.tz-countdown__sep {
    font-size: 26px;
    font-weight: 900;
    color: var(--tz-blue);
    margin-bottom: 14px;
}

.tz-bestsellers {
    background: white;
    border-radius: var(--tz-radius-lg);
    padding: 24px;
    box-shadow: var(--tz-shadow);
}

.tz-bestsellers__title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--tz-dark);
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--tz-blue);
}

.tz-bs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tz-bs-outer {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
}

.tz-bs-track {
    display: flex;
    gap: 18px;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.tz-product-card {
    min-width: 152px;
    max-width: 152px;
    flex-shrink: 0;
}

.tz-product-card__img {
    display: block;
    aspect-ratio: 1;
    border-radius: var(--tz-radius);
    overflow: hidden;
    background: var(--tz-gray);
    margin-bottom: 10px;
    position: relative;
    transition: transform var(--tz-t);
}

.tz-product-card__img:hover {
    transform: scale(1.03);
}

.tz-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tz-product-card__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tz-muted);
}

.tz-product-card__no-img svg {
    width: 40px;
    height: 40px;
}

.tz-product-card__sale-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--tz-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}

.tz-product-card__body {
    text-align: center;
}

.tz-product-card__name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    color: var(--tz-text);
    line-height: 1.4;
    margin-bottom: 6px;
}

.tz-product-card__name:hover {
    color: var(--tz-blue);
}

.tz-product-card__price .price {
    font-size: 15px;
    font-weight: 700;
    color: var(--tz-blue);
}

.tz-product-card__price ins {
    text-decoration: none;
}

.tz-carousel-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--tz-border);
    background: white;
    color: var(--tz-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--tz-t);
    padding: 0;
}

.tz-carousel-btn:hover:not(:disabled) {
    border-color: var(--tz-blue);
    background: var(--tz-blue);
    color: white;
}

.tz-carousel-btn:disabled {
    opacity: .35;
    cursor: default;
}

.tz-carousel-btn svg {
    width: 18px;
    height: 18px;
}


/* ============================================================================
   §6 — TRUSTED BRANDS
   ============================================================================ */
.tz-brands {
    padding: 44px 0;
    background: white;
    border-top: 1px solid var(--tz-border);
}

.tz-brands .tz-section-title {
    margin-bottom: 30px;
}

.tz-brands__strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    flex-wrap: wrap;
}

.tz-brands__item {
    flex: 1;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    border-radius: var(--tz-radius);
    filter: grayscale(1);
    opacity: .55;
    transition: all var(--tz-t);
}

.tz-brands__item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.tz-brands__item img {
    max-height: 44px;
    max-width: 130px;
    object-fit: contain;
    width: auto;
}

.tz-brand-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.5px;
    color: var(--tz-dark);
    font-family: var(--tz-font);
}


/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1200px) {
    :root {
        --tz-sidebar-w: 210px;
        --tz-hotdeals-w: 220px;
    }

    .tz-top-cats__grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .tz-hdr-phone {
        display: none;
    }
}

@media (max-width: 1024px) {
    .tz-hero-wrap {
        grid-template-columns: var(--tz-sidebar-w) 1fr;
    }

    .tz-hot-deals {
        display: none;
    }

    .tz-promos__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tz-top-cats__grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .tz-deals-row__grid {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 860px) {
    .tz-info-bar .tz-hdr-container {
        justify-content: center;
        gap: 4px;
    }

    .tz-info-bar__item:nth-child(n+4) {
        display: none;
    }

    .tz-hero-wrap {
        grid-template-columns: 1fr;
    }

    .tz-sidebar {
        display: none;
    }

    .tz-hero-banner {
        min-height: 340px;
    }

    .tz-hero-banner__body {
        padding: 32px 24px;
    }

    .tz-promos__grid {
        grid-template-columns: 1fr;
    }

    .tz-deals-row__grid {
        grid-template-columns: 1fr;
    }

    .tz-top-cats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tz-benefits__grid {
        flex-wrap: wrap;
    }

    .tz-benefits__item {
        flex: 1 1 calc(50% - 1px);
        border-bottom: 1px solid var(--tz-border);
    }

    .tz-benefits__item:nth-child(2n) {
        border-right: none;
    }

    .tz-all-cats-btn {
        width: auto;
        padding: 0 16px;
    }

    .tz-hdr-logo {
        width: auto;
    }

    .tz-hdr-account__text,
    .tz-hdr-cart__text {
        display: none;
    }
}

@media (max-width: 600px) {
    .tz-top-cats__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tz-section-title {
        font-size: 16px;
        letter-spacing: .8px;
    }

    .tz-section-title__line {
        max-width: 40px;
    }

    .tz-benefits__item {
        flex: 1 1 100%;
        border-right: none;
    }

    .tz-info-bar__item:nth-child(n+3) {
        display: none;
    }

    .tz-nav-links {
        display: none;
    }

    .tz-special-offers-btn {
        font-size: 12px;
        padding: 0 12px;
    }
}