/* Torque Zone v12 — modern responsive bilingual storefront */

:root {
    --tz-orange: #e85d0a;
    --tz-orange-dark: #c44d08;
    --tz-orange-light: #fff5ef;
    --tz-orange-glow: rgba(232, 93, 10, 0.35);
    --tz-dark: #120804;
    --tz-dark-soft: #2a1810;
    --tz-text: #1a1614;
    --tz-muted: #6b6560;
    --tz-bg: #f8f6f4;
    --tz-white: #ffffff;
    --tz-border: #e8e4e0;
    --tz-radius: 14px;
    --tz-radius-lg: 22px;
    --tz-radius-xl: 28px;
    --tz-shadow: 0 2px 8px rgba(18, 8, 4, 0.05);
    --tz-shadow-md: 0 12px 40px rgba(18, 8, 4, 0.1);
    --tz-shadow-lg: 0 24px 60px rgba(18, 8, 4, 0.14);
    --tz-font: 'Inter', 'Cairo', system-ui, sans-serif;
    --tz-wrap: 1200px;
    --tz-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --tz-header-h: 68px;
}

/* Reset Odoo wrapper noise */
#wrapwrap .oe_structure,
#wrapwrap > main { padding: 0 !important; margin: 0 !important; }
#wrapwrap {
    background: var(--tz-bg) !important;
    overflow-x: clip;
}
#wrapwrap > header#top,
#wrapwrap > footer#bottom,
#wrapwrap .o_footer,
#wrapwrap .o_header_standard { display: none !important; }
#o_shared_blocks { display: none !important; }

.tz {
    font-family: var(--tz-font);
    color: var(--tz-text);
    background: var(--tz-bg);
    min-height: 100vh;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
}

.tz[dir="rtl"] { font-family: 'Cairo', 'Inter', system-ui, sans-serif; }

.tz.is-menu-open { overflow: hidden; }

.tz *, .tz *::before, .tz *::after { box-sizing: border-box; }

.tz-wrap {
    width: min(var(--tz-wrap), 100% - 2rem);
    margin-inline: auto;
}

.tz-label-light { color: rgba(255, 255, 255, 0.65) !important; }
.tz-top-desc { max-width: 42rem; line-height: 1.7; }
.tz-block-sub { color: var(--tz-muted); margin: 0.35rem 0 0; font-size: 0.9375rem; }

/* Nav overlay (mobile) */
.tz-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 8, 4, 0.55);
    backdrop-filter: blur(2px);
    z-index: 210;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--tz-ease), visibility 0.3s;
    pointer-events: none;
}

.tz-nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tz-nav-drawer-head,
.tz-nav-drawer-body { display: none; }

/* ── Header ─────────────────────────────────────────── */
.tz-topbar {
    position: sticky;
    top: 0;
    z-index: 200;
}

.tz-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(232, 228, 224, 0.8);
    transition: box-shadow 0.3s var(--tz-ease), background 0.3s;
}

.tz-header.is-scrolled,
.tz-topbar.is-scrolled .tz-header { box-shadow: var(--tz-shadow-md); }

.tz-header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 0;
}

.tz-logo-link { flex-shrink: 0; }

.tz-logo {
    height: 44px;
    width: auto;
    max-height: 44px;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.tz-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.tz-nav-link {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    color: var(--tz-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s, background 0.2s;
}

.tz-nav-link:hover { color: var(--tz-text); background: var(--tz-orange-light); }
.tz-nav-link.is-active { color: var(--tz-orange); background: var(--tz-orange-light); font-weight: 600; }

.tz-nav-drop { position: relative; }

.tz-nav-drop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.tz-nav-chevron { transition: transform 0.2s var(--tz-ease); }
.tz-nav-drop.is-open .tz-nav-chevron { transform: rotate(180deg); }

.tz-nav-drop-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    inset-inline-start: 0;
    min-width: 200px;
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius);
    box-shadow: var(--tz-shadow-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s var(--tz-ease);
    z-index: 210;
}

.tz-nav-drop:hover .tz-nav-drop-menu,
.tz-nav-drop.is-open .tz-nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.tz-nav-drop-all,
.tz-nav-drop-link {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    color: var(--tz-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

.tz-nav-drop-all {
    font-weight: 700;
    color: var(--tz-orange);
    border-bottom: 1px solid var(--tz-border);
    margin-bottom: 0.35rem;
    border-radius: 8px 8px 0 0;
}

.tz-nav-drop-link:hover,
.tz-nav-drop-all:hover { background: var(--tz-orange-light); color: var(--tz-orange); }
.tz-nav-drop-link.is-active { background: var(--tz-orange-light); color: var(--tz-orange); font-weight: 600; }

.tz-header-end {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.tz-lang {
    display: flex;
    background: var(--tz-bg);
    border: 1px solid var(--tz-border);
    border-radius: 999px;
    padding: 2px;
}

.tz-lang-btn {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tz-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.tz-lang-btn.is-on { background: var(--tz-white); color: var(--tz-orange); box-shadow: var(--tz-shadow); }

.tz-cart {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--tz-dark);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.2s, background 0.2s;
}

.tz-cart:hover { background: var(--tz-orange); color: #fff; transform: translateY(-1px); }

.tz-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.3rem;
    background: var(--tz-orange);
    border-radius: 999px;
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 700;
}

.tz-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 212;
    position: relative;
}

.tz-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--tz-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.tz-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tz-burger.is-open span:nth-child(2) { opacity: 0; }
.tz-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ────────────────────────────────────────── */
.tz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--tz-ease);
    font-family: inherit;
    line-height: 1.2;
}

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

.tz-btn-fill:hover { background: var(--tz-orange-dark); border-color: var(--tz-orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(211, 82, 13, 0.3); }

.tz-btn-line {
    background: transparent;
    color: var(--tz-text);
    border-color: var(--tz-border);
}

.tz-btn-line:hover { border-color: var(--tz-orange); color: var(--tz-orange); }

.tz-btn-white { background: #fff; color: var(--tz-dark); border-color: #fff; }
.tz-btn-white:hover { background: var(--tz-orange-light); color: var(--tz-orange); }

.tz-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.tz-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.tz-btn:focus-visible {
    outline: 2px solid var(--tz-orange);
    outline-offset: 3px;
}

.tz-btn-sm { padding: 0.45rem 1rem; font-size: 0.8125rem; }
.tz-btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.tz-btn-wide { width: 100%; }
.tz-btn.is-loading { opacity: 0.7; pointer-events: none; }

/* ── Hero ───────────────────────────────────────────── */
.tz-hero {
    background: linear-gradient(145deg, var(--tz-dark) 0%, var(--tz-dark-soft) 45%, #1f120c 100%);
    color: #fff;
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
    overflow: hidden;
    position: relative;
}

.tz-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 85% 15%, var(--tz-orange-glow), transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 255, 255, 0.04), transparent),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 48px,
            rgba(255, 255, 255, 0.015) 48px,
            rgba(255, 255, 255, 0.015) 49px
        );
    pointer-events: none;
}

.tz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(232, 93, 10, 0.2), transparent);
    pointer-events: none;
}

.tz-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.tz-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tz-orange);
    margin-bottom: 1rem;
}

.tz-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.tz-hero h1 span { color: var(--tz-orange); }

.tz-lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 2rem;
    max-width: 28rem;
    overflow-wrap: anywhere;
}

.tz-hero h1, .tz-top h1, .tz-pdp-title {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tz-hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.tz-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
}

.tz-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-inline-end: 1.5rem;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
}

.tz-stat:last-child { border-inline-end: none; padding-inline-end: 0; }

.tz-stat strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--tz-orange);
    letter-spacing: -0.02em;
}

.tz-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.tz-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--tz-radius-xl);
    padding: clamp(2rem, 5vw, 3.5rem);
    position: relative;
    animation: tz-float 6s ease-in-out infinite;
}

.tz-hero-visual-ring {
    position: absolute;
    inset: 12%;
    border: 1px dashed rgba(232, 93, 10, 0.35);
    border-radius: 50%;
    animation: tz-spin-slow 30s linear infinite;
}

@keyframes tz-spin-slow {
    to { transform: rotate(360deg); }
}

.tz-hero-visual img {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
    position: relative;
    z-index: 1;
}

@keyframes tz-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Band / blocks ──────────────────────────────────── */
.tz-band {
    background: var(--tz-white);
    border-bottom: 1px solid var(--tz-border);
    padding: 1.5rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.tz-band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tz-band-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    background: var(--tz-white);
    border-radius: var(--tz-radius-lg);
    border: 1px solid var(--tz-border);
    box-shadow: var(--tz-shadow);
    transition: transform 0.25s var(--tz-ease), box-shadow 0.25s;
}

.tz-band-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--tz-shadow-md);
}

.tz-band-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    background: var(--tz-orange-light);
    position: relative;
}

.tz-band-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background: var(--tz-orange);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.tz-band-icon-cod::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.54 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z'/%3E%3C/svg%3E");
}

.tz-band-icon-stock::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-5 12H9v-2h6v2zm5-7H4V4h16v3z'/%3E%3C/svg%3E");
}

.tz-band-icon-ship::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9 1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}

.tz-band-item strong { display: block; font-size: 0.9375rem; }
.tz-band-item span { font-size: 0.8125rem; color: var(--tz-muted); }

.tz-block { padding: 3.5rem 0; }
.tz-block-alt { background: var(--tz-white); }

.tz-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.tz-block-head h2, .tz-block-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.tz-more { color: var(--tz-orange); font-weight: 600; text-decoration: none; }
.tz-more:hover { text-decoration: underline; }

/* ── Categories ───────────────────────────────────────── */
.tz-cats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.tz-cat {
    display: flex;
    flex-direction: column;
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s var(--tz-ease), box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.tz-cat:hover {
    border-color: var(--tz-orange);
    transform: translateY(-4px);
    box-shadow: var(--tz-shadow-md);
}

.tz-cat-img {
    aspect-ratio: 4 / 3;
    background: var(--tz-bg);
    overflow: hidden;
    position: relative;
}

.tz-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--tz-ease);
}

.tz-cat:hover .tz-cat-img img { transform: scale(1.05); }

.tz-cat-fallback {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tz-orange-light), var(--tz-bg));
}

.tz-cat-fallback::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    background: var(--tz-orange);
    opacity: 0.35;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tz-cat-body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tz-cat strong { font-size: 1rem; line-height: 1.3; }
.tz-cat span { font-size: 0.8125rem; color: var(--tz-muted); }

.tz-top-cat-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.25rem;
    align-items: center;
}

.tz-top-cat-media {
    width: 120px;
    height: 120px;
    border-radius: var(--tz-radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.tz-top-cat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Product grid ───────────────────────────────────── */
.tz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 1.25rem;
}

.tz-card {
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    overflow: hidden;
    transition: transform 0.35s var(--tz-ease), box-shadow 0.35s, border-color 0.35s;
    display: flex;
    flex-direction: column;
}

.tz-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tz-shadow-lg);
    border-color: rgba(232, 93, 10, 0.25);
}

.tz-card-img {
    display: block;
    aspect-ratio: 1;
    background: var(--tz-bg);
    overflow: hidden;
}

.tz-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--tz-ease);
}

.tz-card:hover .tz-card-img img { transform: scale(1.05); }

.tz-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.tz-card-cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--tz-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tz-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.tz-card h3 a { color: inherit; text-decoration: none; }
.tz-card h3 a:hover { color: var(--tz-orange); }

.tz-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--tz-orange);
    margin: 0;
}

.tz-price-lg { font-size: 1.75rem; }

/* ── Tags / search ──────────────────────────────────── */
.tz-tags-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 1rem;
    padding-bottom: 0.25rem;
    mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}

.tz[dir="rtl"] .tz-tags-scroll {
    mask-image: linear-gradient(to left, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}

.tz-tags-scroll::-webkit-scrollbar { height: 4px; }
.tz-tags-scroll::-webkit-scrollbar-thumb { background: var(--tz-border); border-radius: 4px; }

.tz-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-width: min-content;
}

.tz-tag {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--tz-border);
    background: var(--tz-white);
    color: var(--tz-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.tz-tag:hover, .tz-tag.is-on { background: var(--tz-orange); color: #fff; border-color: var(--tz-orange); }

.tz-toolbar {
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.tz-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tz-search svg { color: var(--tz-muted); flex-shrink: 0; }

.tz-search input {
    flex: 1;
    border: none;
    background: var(--tz-bg);
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    font-size: 0.9375rem;
    font-family: inherit;
    outline: none;
}

.tz-search input:focus { box-shadow: 0 0 0 2px var(--tz-orange-light); }

.tz-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--tz-muted);
}

.tz-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--tz-orange-light);
    color: var(--tz-orange);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.tz-badge-block { display: block; text-align: center; margin: 1rem 0; }

.tz-badge-out { background: #fee2e2; color: #dc2626; }
.tz-badge-in { background: #ecfdf5; color: #059669; }

.tz-stock-note {
    font-size: 0.8125rem;
    color: var(--tz-muted);
    margin: 0.5rem 0 0;
}

.tz-stock-out { color: #dc2626; font-weight: 600; }

.tz-btn-disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.tz-cart-notice {
    display: none;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--tz-radius);
    background: #fff4ee;
    color: var(--tz-orange-dark);
    border: 1px solid rgba(211, 82, 13, 0.25);
    font-weight: 600;
}

.tz-cart-notice.is-visible { display: block; }

.tz-qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Page tops ──────────────────────────────────────── */
.tz-top {
    background: var(--tz-dark);
    color: #fff;
    padding: 3rem 0;
}

.tz-top-sm { padding: 2rem 0; }

.tz-top h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0.5rem 0;
    letter-spacing: -0.02em;
}

.tz-top p { color: rgba(255, 255, 255, 0.7); margin: 0; }

.tz-back {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.tz-back:hover { color: var(--tz-orange); }

/* ── PDP ────────────────────────────────────────────── */
#tzCartEmpty { display: none; }
#tzCartEmpty.is-visible,
.tz-block > #tzCartEmpty:only-child { display: block; }

/* ── PDP (product detail) ───────────────────────────── */
.tz-pdp-page {
    padding: 1.5rem 0 3rem;
}

.tz-pdp-crumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--tz-muted);
}

.tz-pdp-crumb .tz-back {
    color: var(--tz-orange);
    margin-bottom: 0;
}

.tz-pdp-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: start;
}

.tz-pdp-gallery {
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    padding: 1.25rem;
    box-shadow: var(--tz-shadow-md);
    position: sticky;
    top: 5.5rem;
}

.tz-pdp-stage {
    background: var(--tz-bg);
    border-radius: var(--tz-radius);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tz-pdp-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.tz-pdp-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    margin-top: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
}

.tz-pdp-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    padding: 0;
    border: 2px solid var(--tz-border);
    border-radius: 10px;
    background: var(--tz-bg);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.tz-pdp-thumb:hover { border-color: var(--tz-orange); transform: translateY(-2px); }
.tz-pdp-thumb.is-active { border-color: var(--tz-orange); box-shadow: 0 0 0 3px var(--tz-orange-light); }

.tz-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tz-pdp-panel {
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    padding: 2rem;
    box-shadow: var(--tz-shadow-md);
}

.tz-pdp-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0.75rem 0 1rem;
    letter-spacing: -0.02em;
}

.tz-pdp-price { margin: 0 0 1rem; }

.tz-pdp-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tz-pdp-buy {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--tz-border);
}

.tz-pdp-desc-block h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--tz-text);
}

.tz-pdp-desc {
    color: var(--tz-muted);
    line-height: 1.8;
    margin: 0 0 1rem;
    white-space: pre-line;
}

.tz-pdp-desc-html {
    color: var(--tz-text);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.tz-pdp-desc-html p { margin: 0 0 0.75rem; }
.tz-pdp-desc-html ul, .tz-pdp-desc-html ol { padding-inline-start: 1.25rem; margin: 0 0 0.75rem; }

.tz-pdp .tz-price,
.tz-pdp-panel .tz-price,
.tz-pdp-panel .oe_currency_value {
    color: var(--tz-orange) !important;
    font-weight: 800;
}

.tz-shop-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tz-shop-filters .tz-search {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
}

.tz-sort {
    padding: 0.65rem 1rem;
    border: 1px solid var(--tz-border);
    border-radius: 999px;
    background: var(--tz-bg);
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    min-width: 180px;
}

.tz-sort:focus {
    outline: none;
    border-color: var(--tz-orange);
    box-shadow: 0 0 0 3px var(--tz-orange-light);
}

.tz-pdp-details {
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    padding: 2rem;
    box-shadow: var(--tz-shadow-md);
}

.tz-pdp-details h2 {
    margin: 0 0 1.25rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.tz-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.tz-field-row label { font-weight: 600; }

/* ── Quantity stepper ─────────────────────────────────── */
.tz-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--tz-bg);
    border: 1px solid var(--tz-border);
    border-radius: 999px;
    overflow: hidden;
}

.tz-qty form { margin: 0; display: contents; }

.tz-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tz-text);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    line-height: 1;
    padding: 0;
}

.tz-qty-btn:hover { background: var(--tz-orange); color: #fff; }

.tz-qty-cart.is-busy { opacity: 0.6; pointer-events: none; }

.tz-qty-val {
    min-width: 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    user-select: none;
}

/* ── Cart ───────────────────────────────────────────── */
.tz-checkout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.tz-cart-list { display: flex; flex-direction: column; gap: 1rem; }

.tz-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius);
    padding: 1.25rem;
}

.tz-cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--tz-bg);
}

.tz-cart-item h3 { margin: 0 0 0.25rem; font-size: 1rem; }

.tz-cart-item-end { text-align: end; }

.tz-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: var(--tz-muted);
    background: transparent;
    border: none;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
    padding: 0;
    font-family: inherit;
}

.tz-remove:hover { background: #fee2e2; color: #dc2626; }

.tz-summary {
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 5rem;
}

.tz-summary h2 { font-size: 1.125rem; margin: 0 0 1.25rem; }

.tz-summary-row, .tz-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

.tz-summary-total {
    border-top: 1px solid var(--tz-border);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 800;
    font-size: 1.125rem;
}

.tz-summary .tz-btn { margin-top: 0.75rem; }

.tz-hint { font-size: 0.8125rem; color: var(--tz-muted); text-align: center; margin-top: 1rem; }

/* ── Journey flow ───────────────────────────────────── */
.tz-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.tz-flow-step {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s;
}

.tz-flow-step.on { background: var(--tz-orange); color: #fff; border-color: var(--tz-orange); }
.tz-flow-step.done { color: rgba(255, 255, 255, 0.8); border-color: rgba(255, 255, 255, 0.3); }
a.tz-flow-step:hover { color: #fff; border-color: var(--tz-orange); }

.tz-flow-line {
    width: 1.5rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* ── Forms ──────────────────────────────────────────── */
.tz-form {
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    padding: 2rem;
}

.tz-form h2 { margin: 0 0 1.5rem; font-size: 1.25rem; }

.tz-field { margin-bottom: 1.25rem; }

.tz-field label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
}

.tz-field input,
.tz-field select,
.tz-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius);
    font-size: 0.9375rem;
    font-family: inherit;
    background: var(--tz-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tz-field input:focus,
.tz-field select:focus,
.tz-field textarea:focus {
    outline: none;
    border-color: var(--tz-orange);
    box-shadow: 0 0 0 3px var(--tz-orange-light);
}

.tz-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--tz-radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    color: #b91c1c;
}

.tz-alert p { margin: 0.25rem 0; }

/* ── Confirm ────────────────────────────────────────── */
.tz-confirm {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    padding: 3rem 2rem;
}

.tz-confirm-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    animation: tz-pop 0.5s var(--tz-ease);
}

@keyframes tz-pop {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.tz-confirm h1 { margin: 0 0 0.75rem; font-size: 1.75rem; }
.tz-confirm-ref { font-size: 1.125rem; }
.tz-confirm-btns { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }

/* ── About / Contact ────────────────────────────────── */
.tz-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tz-panel {
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    padding: 2rem;
}

.tz-panel h2 { margin: 0 0 1rem; font-size: 1.5rem; }

.tz-panel-accent {
    background: linear-gradient(145deg, var(--tz-dark), #2d1810);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--tz-shadow-md);
}

.tz-panel-accent p { color: rgba(255, 255, 255, 0.75); }

.tz-features { display: flex; flex-direction: column; gap: 1rem; }

.tz-feat {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius);
    padding: 1.25rem;
}

.tz-feat span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--tz-orange);
    opacity: 0.5;
}

.tz-feat h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.tz-feat p { margin: 0; color: var(--tz-muted); font-size: 0.875rem; }

.tz-contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.tz-contact {
    background: var(--tz-white);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-lg);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
}

.tz-contact:hover { border-color: var(--tz-orange); transform: translateY(-3px); box-shadow: var(--tz-shadow-md); }
.tz-contact span { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.tz-contact-icon { font-size: 1.75rem !important; line-height: 1; }
.tz-contact h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.tz-contact p { margin: 0; color: var(--tz-orange); font-weight: 600; font-size: 0.875rem; }

.tz-contact-hot { border-color: var(--tz-orange); background: var(--tz-orange-light); }

/* ── CTA ────────────────────────────────────────────── */
.tz-cta {
    background: linear-gradient(135deg, var(--tz-orange), var(--tz-orange-dark));
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.tz-cta h2 { font-size: 2rem; margin: 0 0 0.5rem; }
.tz-cta p { margin: 0 0 1.5rem; opacity: 0.9; }

.tz-cta-sm { padding: 2.5rem 0; }

.tz-cta-sm p { margin: 0; }

/* ── Empty / pager ──────────────────────────────────── */
.tz-empty {
    text-align: center;
    padding: clamp(3rem, 8vw, 4.5rem) 2rem;
    background: var(--tz-white);
    border: 1px dashed var(--tz-border);
    border-radius: var(--tz-radius-lg);
}

.tz-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--tz-orange-light);
    position: relative;
}

.tz-empty-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 28px;
    height: 28px;
    background: var(--tz-orange);
    opacity: 0.7;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tz-empty-icon-cart::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
}

.tz-empty span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.tz-empty h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.tz-empty p { color: var(--tz-muted); margin: 0 0 1.5rem; max-width: 28rem; margin-inline: auto; }

.tz-pager-num {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    min-width: 4rem;
    text-align: center;
}

/* Mobile sticky checkout bar */
.tz-mobile-bar {
    display: none;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 190;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--tz-border);
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    gap: 1rem;
    align-items: center;
    box-shadow: 0 -8px 30px rgba(18, 8, 4, 0.08);
}

.tz-mobile-bar-total {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}

.tz-mobile-bar-total span {
    font-size: 0.75rem;
    color: var(--tz-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.tz-mobile-bar-total strong {
    font-size: 1.125rem;
    color: var(--tz-orange);
    font-weight: 800;
}

.tz-mobile-bar .tz-btn {
    flex-shrink: 0;
    min-width: 140px;
}

.tz-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* ── Footer ─────────────────────────────────────────── */
.tz-footer {
    background: var(--tz-dark);
    color: rgba(255, 255, 255, 0.7);
    margin-top: auto;
}

.tz-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

.tz-footer h5 {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tz-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.2rem 0;
    transition: color 0.2s;
}

.tz-footer a:hover { color: var(--tz-orange); }

.tz-footer-brand p { font-size: 0.875rem; line-height: 1.6; margin: 0; }

.tz-footer-logo-box {
    background: #fff;
    border-radius: var(--tz-radius);
    padding: 0.75rem 1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.tz-footer-logo-box img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.tz-footer-bar {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
}

/* ── Animations ─────────────────────────────────────── */
.tz-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--tz-ease), transform 0.6s var(--tz-ease);
    transition-delay: var(--d, 0ms);
}

.tz-fade.is-visible { opacity: 1; transform: none; }

.tz-main { flex: 1; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
    .tz-hero-grid { grid-template-columns: 1fr; }
    .tz-hero-visual { display: none; }
    .tz-band-grid { grid-template-columns: 1fr; }
    .tz-pdp-layout { grid-template-columns: 1fr; }
    .tz-pdp-gallery { position: static; }
    .tz-checkout { grid-template-columns: 1fr; }
    .tz-summary { position: static; }
    .tz-split { grid-template-columns: 1fr; }
    .tz-contact-row { grid-template-columns: 1fr; }
    .tz-footer-grid { grid-template-columns: 1fr 1fr; }

    .tz-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .tz-stat {
        border-inline-end: none;
        padding: 0.65rem 0.5rem;
        background: rgba(255, 255, 255, 0.06);
        border-radius: var(--tz-radius);
        text-align: center;
        padding-inline-end: 0.5rem;
    }

    .tz-stat strong { font-size: 1rem; }
    .tz-stat span { font-size: 0.65rem; }
}

@media (max-width: 768px) {
    .tz-burger { display: flex; }

    .tz-nav-drawer-head,
    .tz-nav-drawer-body { display: block; }

    .tz-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        inset-inline-end: 0;
        width: min(320px, 86vw);
        height: 100vh;
        height: 100dvh;
        flex: none;
        background: var(--tz-white);
        padding: 0;
        gap: 0;
        z-index: 211;
        align-items: stretch;
        justify-content: flex-start;
        overflow: hidden;
        box-shadow: -8px 0 40px rgba(18, 8, 4, 0.18);
        transform: translateX(100%);
        transition: transform 0.35s var(--tz-ease);
        visibility: hidden;
        pointer-events: none;
    }

    .tz[dir="rtl"] .tz-nav {
        inset-inline-end: auto;
        inset-inline-start: 0;
        box-shadow: 8px 0 40px rgba(18, 8, 4, 0.18);
        transform: translateX(-100%);
    }

    .tz-nav.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .tz-nav-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--tz-border);
        background: var(--tz-bg);
        flex-shrink: 0;
    }

    .tz-nav-drawer-title {
        font-weight: 700;
        font-size: 1rem;
        color: var(--tz-text);
    }

    .tz-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        border: 1px solid var(--tz-border);
        border-radius: 50%;
        background: var(--tz-white);
        color: var(--tz-text);
        font-size: 1rem;
        cursor: pointer;
        font-family: inherit;
        line-height: 1;
        padding: 0;
    }

    .tz-nav-close:hover { border-color: var(--tz-orange); color: var(--tz-orange); }

    .tz-nav-drawer-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.75rem 1rem 2rem;
    }

    .tz-nav-link {
        display: block;
        width: 100%;
        padding: 0.95rem 1rem;
        border-radius: var(--tz-radius);
        font-size: 1rem;
        font-weight: 600;
        color: var(--tz-text);
        text-align: start;
        border-bottom: 1px solid var(--tz-border);
    }

    .tz-nav-link.is-active {
        color: var(--tz-orange);
        background: var(--tz-orange-light);
        border-color: transparent;
    }

    .tz-nav-drop { width: 100%; border-bottom: 1px solid var(--tz-border); }

    .tz-nav-drop-btn {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0.95rem 1rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--tz-text);
        border-bottom: none;
    }

    .tz-nav-drop-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0.5rem 0.75rem;
        margin: 0;
        display: none;
        background: var(--tz-bg);
        border-radius: var(--tz-radius);
    }

    .tz-nav-drop.is-open .tz-nav-drop-menu { display: block; }
    .tz-nav-drop:hover .tz-nav-drop-menu { display: none; }
    .tz-nav-drop.is-open .tz-nav-drop-menu { display: block; }

    .tz-nav-drop-all,
    .tz-nav-drop-link {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .tz-header-end .tz-cart span:not(.tz-cart-count) { display: none; }

    .tz-top-cat-grid {
        grid-template-columns: 88px 1fr;
        gap: 1rem;
    }

    .tz-top-cat-media {
        width: 88px;
        height: 88px;
    }

    .tz-shop-filters { flex-direction: column; align-items: stretch; }
    .tz-shop-filters .tz-search { min-width: 0; }
    .tz-sort { width: 100%; min-width: 0; }

    .tz-cart-item { grid-template-columns: 64px 1fr; }
    .tz-cart-item-end {
        grid-column: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tz-footer-grid { grid-template-columns: 1fr; }
    .tz-mobile-bar { display: flex; }
    .tz-main { padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }
    .tz-summary-checkout { display: none; }
}

@media (min-width: 1200px) {
    .tz-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tz-hero-stats { grid-template-columns: 1fr; }
    .tz-hero h1 { font-size: 2rem; }
    .tz-block { padding: 2.5rem 0; }
    .tz-cats { grid-template-columns: 1fr 1fr; }
    .tz-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .tz-card-body { padding: 0.85rem; }
    .tz-card h3 { font-size: 0.875rem; }
    .tz-price { font-size: 1rem; }
    .tz-pdp-panel { padding: 1.25rem; }
    .tz-form { padding: 1.25rem; }
    .tz-flow { gap: 0.35rem; flex-wrap: wrap; }
    .tz-flow-step { font-size: 0.7rem; padding: 0.3rem 0.55rem; }
    .tz-flow-line { width: 0.75rem; }
    .tz-logo { height: 38px; max-width: 120px; }
}

@media (min-width: 769px) {
    .tz-topbar {
        position: sticky;
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid var(--tz-border);
    }

    .tz-topbar .tz-header {
        background: transparent;
        border-bottom: none;
        box-shadow: none !important;
    }

    .tz-topbar .tz-header-inner {
        position: relative;
    }

    .tz-nav-drawer-head { display: none !important; }

    .tz-nav-drawer-body {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0;
        overflow: visible;
    }

    .tz-nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) !important;
        width: auto;
        height: auto;
        visibility: visible !important;
        pointer-events: none;
        background: transparent;
        box-shadow: none;
        flex-direction: row;
        padding: 0;
        overflow: visible;
        z-index: 1;
    }

    .tz-nav a,
    .tz-nav button { pointer-events: auto; }

    .tz-nav-link {
        display: inline-flex;
        width: auto;
        border-bottom: none;
        padding: 0.5rem 1rem;
        font-size: 0.9375rem;
        font-weight: 500;
        text-align: center;
    }

    .tz-nav-drop { width: auto; border-bottom: none; }

    .tz-nav-drop-btn {
        width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.9375rem;
        font-weight: 500;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .tz-fade,
    .tz-hero-visual,
    .tz-hero-visual-ring,
    .tz-card,
    .tz-confirm-icon {
        animation: none !important;
        transition: none !important;
    }

    .tz-fade { opacity: 1; transform: none; }
}

.tz-nav-link:focus-visible,
.tz-lang-btn:focus-visible,
.tz-cart:focus-visible,
.tz-tag:focus-visible,
.tz-field input:focus-visible,
.tz-field select:focus-visible,
.tz-field textarea:focus-visible {
    outline: 2px solid var(--tz-orange);
    outline-offset: 2px;
}
