/* ╔══════════════════════════════════════════════════════╗
   ║  DOMOWE ZOO — Design System                         ║
   ║  Friendly Pet Store Theme                            ║
   ╚══════════════════════════════════════════════════════╝ */

/* ── CSS Custom Properties ────────────────────────────── */
:root {
    /* Domowe Zoo — Teal / Green Palette */
    --dz-color-primary: #0E8A6D;
    --dz-color-primary-dark: #0A6B54;
    --dz-color-primary-light: #2DB891;
    --dz-color-primary-bg: #EBF7F3;
    --dz-color-primary-subtle: #D2EDE5;

    /* Accents */
    --dz-color-accent-orange: #E88A3A;
    --dz-color-accent-purple: #6C7BD4;
    --dz-color-accent-pink: #E86A8A;
    --dz-color-accent-blue: #4A90D9;
    --dz-color-accent-teal: #0E8A6D;
    --dz-color-red: #D94040;

    /* Neutrals */
    --dz-color-text: #1E2D2B;
    --dz-color-text-dark: #0F1A18;
    --dz-color-text-light: #4A5F5B;
    --dz-color-text-muted: #8A9E9A;
    --dz-color-border: #D8E4E0;
    --dz-color-border-light: #EDF2F0;

    /* Backgrounds */
    --dz-color-bg: #FFFFFF;
    --dz-color-bg-page: #F5FAF8;
    --dz-color-bg-soft: #FAFCFB;
    --dz-color-bg-alt: #EDF2F0;
    --dz-color-bg-dark: #1A2C29;

    --dz-color-white: #FFFFFF;
    --dz-color-black: #0F1A18;

    /* Typography — Inter */
    --dz-font-heading: 'Inter', -apple-system, sans-serif;
    --dz-font-body: 'Inter', -apple-system, sans-serif;

    --dz-fs-xs: 0.75rem;
    --dz-fs-sm: 0.875rem;
    --dz-fs-base: 0.9375rem;
    --dz-fs-md: 1.0625rem;
    --dz-fs-lg: 1.25rem;
    --dz-fs-xl: 1.5rem;
    --dz-fs-2xl: 1.875rem;
    --dz-fs-3xl: 2.25rem;
    --dz-fs-4xl: 3rem;
    --dz-fs-5xl: 3.75rem;

    /* Spacing */
    --dz-space-xs: 0.25rem;
    --dz-space-sm: 0.5rem;
    --dz-space-md: 1rem;
    --dz-space-lg: 1.5rem;
    --dz-space-xl: 2rem;
    --dz-space-2xl: 3rem;
    --dz-space-3xl: 4rem;
    --dz-space-4xl: 5rem;
    --dz-space-5xl: 6rem;

    /* Domowe Zoo — softer radius */
    --dz-radius-sm: 8px;
    --dz-radius-md: 12px;
    --dz-radius-lg: 16px;
    --dz-radius-xl: 22px;
    --dz-radius-2xl: 28px;
    --dz-radius-full: 9999px;

    /* Shadows — warm green tint */
    --dz-shadow-sm: 0 1px 4px rgba(26, 44, 41, 0.05);
    --dz-shadow-md: 0 2px 8px rgba(26, 44, 41, 0.07);
    --dz-shadow-lg: 0 4px 16px rgba(26, 44, 41, 0.09);
    --dz-shadow-xl: 0 8px 32px rgba(26, 44, 41, 0.11);
    --dz-shadow-card: 0 2px 12px rgba(26, 44, 41, 0.06);
    --dz-shadow-hover: 0 8px 24px rgba(26, 44, 41, 0.13);

    /* Transitions */
    --dz-transition-fast: 0.15s ease;
    --dz-transition-base: 0.25s ease;
    --dz-transition-slow: 0.4s ease;

    /* Layout */
    --dz-container-width: 1400px;
    --dz-header-height: 80px;
    --dz-top-bar-height: 38px;
}

/* ── Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--dz-font-body);
    font-size: var(--dz-fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dz-color-text);
    background-color: var(--dz-color-bg-page);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--dz-transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ── Container ────────────────────────────────────────── */
.dz-container {
    max-width: var(--dz-container-width);
    margin: 0 auto;
    padding: 0 var(--dz-space-xl);
}

/* ── Buttons ──────────────────────────────────────────── */
.dz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--dz-space-sm);
    font-family: var(--dz-font-heading);
    font-weight: 600;
    font-size: var(--dz-fs-sm);
    padding: 12px 28px;
    border-radius: var(--dz-radius-xl);
    transition: all var(--dz-transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.dz-btn--primary {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    border-color: var(--dz-color-primary);
}

.dz-btn--primary:hover {
    background: var(--dz-color-primary-dark);
    border-color: var(--dz-color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(136, 176, 75, 0.35);
}

.dz-btn--outline {
    background: transparent;
    color: var(--dz-color-primary);
    border-color: var(--dz-color-primary);
}

.dz-btn--outline:hover {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    transform: translateY(-2px);
}

.dz-btn--white {
    background: var(--dz-color-white);
    color: var(--dz-color-primary-dark);
    border-color: var(--dz-color-white);
}

.dz-btn--white:hover {
    background: var(--dz-color-primary-bg);
    transform: translateY(-2px);
    box-shadow: var(--dz-shadow-lg);
}

.dz-btn--lg {
    padding: 14px 36px;
    font-size: var(--dz-fs-base);
}

.dz-btn--sm {
    padding: 8px 18px;
    font-size: var(--dz-fs-xs);
}

.dz-btn--full {
    width: 100%;
}

/* ══════════════════════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════════════════════ */
.dz-top-bar {
    background: linear-gradient(90deg, var(--dz-color-primary) 0%, var(--dz-color-primary-light) 100%);
    color: var(--dz-color-white);
    font-size: var(--dz-fs-xs);
    font-weight: 500;
    height: var(--dz-top-bar-height);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dz-top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dz-top-bar__left,
.dz-top-bar__right {
    display: flex;
    align-items: center;
    gap: var(--dz-space-md);
}

.dz-top-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dz-top-bar__item a {
    color: var(--dz-color-white);
}

.dz-top-bar__item a:hover {
    opacity: 0.8;
}

.dz-top-bar__divider {
    opacity: 0.4;
}

@media (max-width: 768px) {
    .dz-top-bar__left {
        display: none;
    }

    .dz-top-bar__right {
        width: 100%;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════
   HEADER — UniZoo style
   ══════════════════════════════════════════════════════ */
.dz-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dz-color-white);
    height: var(--dz-header-height);
    transition: all var(--dz-transition-base);
}

.dz-site-header.is-scrolled {
    box-shadow: var(--dz-shadow-md);
}

.dz-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--dz-space-lg);
}

/* Logo */
.dz-site-logo {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
    flex-shrink: 0;
}

.dz-site-logo__icon {
    color: var(--dz-color-primary);
    display: flex;
}

.dz-site-logo__text {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xl);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    letter-spacing: -0.02em;
}

/* Navigation */
.dz-site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dz-nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.dz-nav-menu .menu-item>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-family: var(--dz-font-heading);
    font-weight: 600;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
    border-radius: var(--dz-radius-lg);
    transition: all var(--dz-transition-fast);
}

.dz-nav-menu .menu-item>a:hover,
.dz-nav-menu .menu-item.current-menu-item>a {
    color: var(--dz-color-primary-dark);
    background: var(--dz-color-primary-bg);
}

/* Nav SVG Icons */
.dz-nav-icon {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity var(--dz-transition-fast), color var(--dz-transition-fast);
}

.dz-nav-menu .menu-item>a:hover .dz-nav-icon,
.menu-item--dz-mega:hover>a .dz-nav-icon,
.menu-item--dz-mega.is-open>a .dz-nav-icon {
    opacity: 1;
    color: var(--dz-color-primary);
}

/* Header Actions */
.dz-site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
    flex-shrink: 0;
}

.dz-header-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--dz-radius-lg);
    color: var(--dz-color-text-dark);
    transition: all var(--dz-transition-fast);
}

.dz-header-action:hover {
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary-dark);
}

.dz-header-cart {
    position: relative;
    background: var(--dz-color-primary-bg);
    border-radius: var(--dz-radius-xl);
    width: auto;
    padding: 8px 16px;
    gap: 8px;
    font-weight: 600;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-primary-dark);
}

.dz-header-cart__count {
    min-width: 22px;
    height: 22px;
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--dz-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    line-height: 1;
}

/* Mobile Toggle */
.dz-mobile-toggle {
    display: none;
}

.dz-mobile-toggle__close {
    display: none;
}

.dz-mobile-toggle.is-active .dz-mobile-toggle__open {
    display: none;
}

.dz-mobile-toggle.is-active .dz-mobile-toggle__close {
    display: block;
}

@media (max-width: 960px) {
    .dz-site-header__nav {
        display: none;
    }

    .dz-mobile-toggle {
        display: flex;
    }
}

/* ── Search Overlay ───────────────────────────────────── */
.dz-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dz-color-white);
    padding: var(--dz-space-lg) 0;
    box-shadow: var(--dz-shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--dz-transition-base);
    z-index: 100;
}

.dz-search-overlay.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dz-search-overlay__form {
    display: flex;
    align-items: center;
    gap: var(--dz-space-md);
}

.dz-search-overlay__input {
    flex: 1;
    border: 2px solid var(--dz-color-border);
    border-radius: var(--dz-radius-xl);
    padding: 14px 24px;
    font-size: var(--dz-fs-md);
    outline: none;
    background: var(--dz-color-bg-soft);
    transition: border-color var(--dz-transition-fast);
}

.dz-search-overlay__input:focus {
    border-color: var(--dz-color-primary);
    background: var(--dz-color-white);
}

.dz-search-overlay__submit,
.dz-search-overlay__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--dz-radius-lg);
    color: var(--dz-color-text);
    transition: all var(--dz-transition-fast);
}

.dz-search-overlay__submit:hover {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
}

.dz-search-overlay__close:hover {
    background: var(--dz-color-bg-alt);
}

/* ── Mobile Menu ──────────────────────────────────────── */
.dz-mobile-menu {
    position: fixed;
    top: calc(var(--dz-header-height) + var(--dz-top-bar-height));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dz-color-white);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: all var(--dz-transition-base);
}

.dz-mobile-menu.is-active {
    transform: translateX(0);
    opacity: 1;
}

.dz-mobile-menu__inner {
    padding: var(--dz-space-xl);
}

.dz-mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-xs);
}

.dz-mobile-menu__list .menu-item>a {
    display: block;
    padding: 14px var(--dz-space-md);
    font-family: var(--dz-font-heading);
    font-weight: 500;
    font-size: var(--dz-fs-md);
    border-radius: var(--dz-radius-md);
    transition: all var(--dz-transition-fast);
}

.dz-mobile-menu__list .menu-item>a:hover {
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary-dark);
}

.dz-mobile-menu__actions {
    margin-top: var(--dz-space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-sm);
}

/* ══════════════════════════════════════════════════════
   MEGA MENU
   ══════════════════════════════════════════════════════ */

/* Trigger item */
.menu-item--dz-mega {
    position: static;
}

.menu-item--dz-mega>a svg {
    transition: transform var(--dz-transition-fast);
    margin-left: 2px;
}

.menu-item--dz-mega:hover>a svg,
.menu-item--dz-mega.is-open>a svg {
    transform: rotate(180deg);
}

.menu-item--dz-mega:hover>a,
.menu-item--dz-mega.is-open>a {
    color: var(--dz-color-primary-dark);
    background: var(--dz-color-primary-bg);
}

/* Panel */
.dz-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dz-color-white);
    border-top: 2px solid var(--dz-color-primary-bg);
    box-shadow: var(--dz-shadow-xl);
    border-radius: 0 0 var(--dz-radius-xl) var(--dz-radius-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 999;
    padding: var(--dz-space-2xl) 0;
}

.menu-item--dz-mega:hover .dz-mega-menu,
.menu-item--dz-mega.is-open .dz-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dz-mega-menu--sm {
    /* Smaller variant for Zdrowie */
}

/* Inner */
.dz-mega-menu__inner {
    max-width: var(--dz-container-width);
    margin: 0 auto;
    padding: 0 var(--dz-space-xl);
}

.dz-mega-menu__cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: var(--dz-space-2xl);
}

.dz-mega-menu--sm .dz-mega-menu__cols {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 900px;
}

/* Column header */
.dz-mega-menu__col-header {
    font-family: var(--dz-font-heading);
    font-weight: 700;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
    padding-bottom: var(--dz-space-sm);
    margin-bottom: var(--dz-space-md);
    border-bottom: 2px solid var(--dz-color-primary-bg);
}

/* Group */
.dz-mega-menu__group {
    margin-bottom: var(--dz-space-md);
}

.dz-mega-menu__group-title {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
    font-family: var(--dz-font-heading);
    font-weight: 600;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
    padding: 6px 10px;
    border-radius: var(--dz-radius-sm);
    transition: all var(--dz-transition-fast);
}

.dz-mega-menu__group-title:hover {
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary-dark);
}

.dz-mega-menu__group-link {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-light);
    padding: 6px 10px;
    border-radius: var(--dz-radius-sm);
    transition: all var(--dz-transition-fast);
}

.dz-mega-menu__group-link:hover {
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary-dark);
}

.dz-mega-menu__count {
    font-size: 10px;
    font-weight: 600;
    color: var(--dz-color-text-muted);
    background: var(--dz-color-bg-alt);
    padding: 1px 8px;
    border-radius: var(--dz-radius-full);
    line-height: 1.6;
}

.dz-mega-menu__group-title:hover .dz-mega-menu__count,
.dz-mega-menu__group-link:hover .dz-mega-menu__count {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
}

/* Subcategory links */
.dz-mega-menu__links {
    padding-left: var(--dz-space-sm);
}

.dz-mega-menu__links li a {
    display: block;
    padding: 4px 10px;
    font-size: var(--dz-fs-xs);
    color: var(--dz-color-text-muted);
    border-radius: var(--dz-radius-sm);
    transition: all var(--dz-transition-fast);
    position: relative;
}

.dz-mega-menu__links li a::before {
    content: '›';
    margin-right: 6px;
    color: var(--dz-color-border);
    transition: color var(--dz-transition-fast);
}

.dz-mega-menu__links li a:hover {
    color: var(--dz-color-primary-dark);
    background: var(--dz-color-primary-bg);
}

.dz-mega-menu__links li a:hover::before {
    color: var(--dz-color-primary);
}

/* Promo card inside mega menu */
.dz-mega-menu__promo {
    min-width: 220px;
    display: flex;
    align-items: stretch;
}

.dz-mega-menu__promo-card {
    width: 100%;
    padding: var(--dz-space-xl);
    border-radius: var(--dz-radius-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--dz-space-sm);
}

.dz-mega-menu__promo-card--dogs {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.dz-mega-menu__promo-card--cats {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
}

.dz-mega-menu__promo-emoji {
    font-size: 3rem;
}

.dz-mega-menu__promo-card h4 {
    font-family: var(--dz-font-heading);
    font-weight: 700;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
}

.dz-mega-menu__promo-card p {
    font-size: var(--dz-fs-xs);
    color: var(--dz-color-text-muted);
}

/* ── Mobile Mega Accordion ──────────────────────────── */
.dz-mobile-mega {
    display: none;
}

.dz-mobile-mega__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px var(--dz-space-md);
    font-family: var(--dz-font-heading);
    font-weight: 600;
    font-size: var(--dz-fs-md);
    color: var(--dz-color-text-dark);
    background: none;
    border: none;
    border-radius: var(--dz-radius-md);
    cursor: pointer;
    transition: all var(--dz-transition-fast);
}

.dz-mobile-mega__trigger::after {
    content: '+';
    font-size: var(--dz-fs-lg);
    color: var(--dz-color-primary);
    transition: transform var(--dz-transition-fast);
}

.dz-mobile-mega__trigger.is-open::after {
    content: '−';
}

.dz-mobile-mega__trigger:hover {
    background: var(--dz-color-primary-bg);
}

.dz-mobile-mega__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--dz-space-md);
}

.dz-mobile-mega__panel.is-open {
    max-height: 2000px;
    padding-bottom: var(--dz-space-md);
}

.dz-mobile-mega__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px var(--dz-space-md);
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-light);
    border-radius: var(--dz-radius-sm);
    transition: all var(--dz-transition-fast);
}

.dz-mobile-mega__link:hover {
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary-dark);
}

.dz-mobile-mega__link span {
    font-size: 10px;
    background: var(--dz-color-bg-alt);
    padding: 2px 8px;
    border-radius: var(--dz-radius-full);
    color: var(--dz-color-text-muted);
}

@media (max-width: 960px) {
    .dz-mega-menu {
        display: none !important;
    }

    .dz-mobile-mega {
        display: block;
    }
}

/* ══════════════════════════════════════════════════════
   SECTION (General)
   ══════════════════════════════════════════════════════ */
.dz-section {
    padding: var(--dz-space-4xl) 0;
}

.dz-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--dz-space-2xl);
    gap: var(--dz-space-xs);
}

.dz-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xs);
    font-weight: 700;
    color: var(--dz-color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: color-mix(in srgb, var(--dz-color-primary) 8%, transparent);
    padding: 6px 16px;
    border-radius: var(--dz-radius-full);
}

.dz-section__title {
    font-family: var(--dz-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.dz-section__subtitle {
    color: var(--dz-color-text-muted);
    font-size: var(--dz-fs-base);
    max-width: 480px;
    line-height: 1.6;
}

.dz-section__action {
    text-align: center;
    margin-top: var(--dz-space-2xl);
}

.dz-section__link {
    font-family: var(--dz-font-heading);
    font-weight: 600;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--dz-transition-fast);
    flex-shrink: 0;
}

.dz-section__link:hover {
    color: var(--dz-color-primary-dark);
    gap: 10px;
}

/* ══════════════════════════════════════════════════════
   HERO — Premium Split Layout
   ══════════════════════════════════════════════════════ */
.dz-hero--split {
    padding: var(--dz-space-xl) 0 0;
    overflow: visible;
}

.dz-hero__split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dz-space-3xl);
    align-items: center;
    background: linear-gradient(135deg, var(--dz-color-primary-bg) 0%, var(--dz-color-primary-subtle) 40%, #e8f0d8 100%);
    border-radius: var(--dz-radius-2xl);
    padding: var(--dz-space-4xl) var(--dz-space-3xl);
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.dz-hero__split-inner::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(136,176,75,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dz-hero__split-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(136,176,75,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Badge with pulse dot */
.dz-hero__badge--pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dz-color-white);
    color: var(--dz-color-primary-dark);
    padding: 8px 20px;
    border-radius: var(--dz-radius-full);
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xs);
    font-weight: 600;
    margin-bottom: var(--dz-space-lg);
    box-shadow: var(--dz-shadow-sm);
    border: 1px solid rgba(136,176,75,0.15);
}

.dz-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dz-color-primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Split Hero Title */
.dz-hero__title--split {
    font-family: var(--dz-font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--dz-color-text-dark);
    margin-bottom: var(--dz-space-md);
}

.dz-hero__title--gradient {
    background: linear-gradient(135deg, var(--dz-color-primary) 0%, var(--dz-color-accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero subtitle (reuse existing but tweak) */
.dz-hero--split .dz-hero__subtitle {
    font-size: var(--dz-fs-md);
    color: var(--dz-color-text-light);
    line-height: 1.7;
    max-width: 480px;
    margin-top: 0;
}

/* Hero actions */
.dz-hero--split .dz-hero__actions {
    display: flex;
    gap: var(--dz-space-md);
    margin-top: var(--dz-space-xl);
    flex-wrap: wrap;
}

/* Trust Badges */
.dz-hero__trust {
    display: flex;
    gap: var(--dz-space-xl);
    margin-top: var(--dz-space-2xl);
    padding-top: var(--dz-space-xl);
    border-top: 1px solid rgba(136,176,75,0.15);
}

.dz-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--dz-fs-xs);
    font-weight: 500;
    color: var(--dz-color-text-light);
}

.dz-hero__trust-item svg {
    color: var(--dz-color-primary);
    flex-shrink: 0;
}

/* ── Hero Visual Side ────────────────────────── */
.dz-hero__image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dz-hero__image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(136,176,75,0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.dz-hero__image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--dz-radius-2xl);
    filter: drop-shadow(0 20px 40px rgba(26,46,5,0.15));
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.dz-hero__image-container:hover .dz-hero__image {
    transform: scale(1.03) translateY(-5px);
}

/* ── Floating Badges ─────────────────────────── */
.dz-hero__float {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--dz-radius-xl);
    box-shadow: 0 8px 32px rgba(26,46,5,0.12);
    border: 1px solid rgba(255,255,255,0.6);
    animation: float-card 5s ease-in-out infinite;
}

.dz-hero__float-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

.dz-hero__float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.dz-hero__float-text strong {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-sm);
    font-weight: 700;
    color: var(--dz-color-text-dark);
}

.dz-hero__float-text span {
    font-size: 11px;
    color: var(--dz-color-text-muted);
    font-weight: 500;
}

.dz-hero__float--1 {
    top: 5%;
    right: 2%;
    animation-delay: 0s;
}

.dz-hero__float--2 {
    bottom: 15%;
    left: 2%;
    animation-delay: 1.5s;
}

.dz-hero__float--3 {
    bottom: 5%;
    right: 5%;
    animation-delay: 3s;
}

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

/* ── Marquee ─────────────────────────────────── */
.dz-hero__marquee {
    margin-top: var(--dz-space-xl);
    overflow: hidden;
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-xl);
    padding: 14px 0;
    box-shadow: var(--dz-shadow-sm);
}

.dz-hero__marquee-track {
    overflow: hidden;
}

.dz-hero__marquee-content {
    display: flex;
    gap: var(--dz-space-2xl);
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.dz-hero__marquee-content span {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    color: var(--dz-color-text-light);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Hero Responsive ─────────────────────────── */
@media (max-width: 960px) {
    .dz-hero__split-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--dz-space-2xl);
        gap: var(--dz-space-xl);
    }

    .dz-hero--split .dz-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .dz-hero--split .dz-hero__actions {
        justify-content: center;
    }

    .dz-hero__trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--dz-space-md);
    }

    .dz-hero__visual {
        order: -1;
    }

    .dz-hero__image {
        max-width: 320px;
    }

    .dz-hero__float {
        display: none;
    }
}

@media (max-width: 480px) {
    .dz-hero__title--split {
        font-size: 1.8rem;
    }

    .dz-hero__trust {
        flex-direction: column;
        align-items: center;
    }
}

/* Keep old hero base for compatibility */
.dz-hero {
    position: relative;
}



/* ══════════════════════════════════════════════════════
   CATEGORIES — Premium grid cards
   ══════════════════════════════════════════════════════ */
.dz-categories {
    background: transparent;
    padding-top: var(--dz-space-xl);
    padding-bottom: var(--dz-space-xl);
}

.dz-categories__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--dz-space-lg);
}

.dz-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--dz-space-xl) var(--dz-space-md) var(--dz-space-lg);
    background: var(--dz-color-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--dz-radius-2xl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.dz-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent, var(--dz-color-primary)) 6%, transparent), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.dz-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: color-mix(in srgb, var(--card-accent, var(--dz-color-primary)) 20%, transparent);
}

.dz-category-card:hover::before {
    opacity: 1;
}

.dz-category-card__icon {
    width: 80px;
    height: 80px;
    border-radius: var(--dz-radius-xl);
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--card-accent, var(--dz-color-primary)) 10%, transparent),
            color-mix(in srgb, var(--card-accent, var(--dz-color-primary)) 5%, transparent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--dz-space-md);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.dz-category-card:hover .dz-category-card__icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--card-accent, var(--dz-color-primary)) 25%, transparent);
}

.dz-category-card__svg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-accent, var(--dz-color-primary));
    transition: transform 0.4s ease;
}

.dz-category-card:hover .dz-category-card__svg {
    transform: scale(1.15);
}

.dz-category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dz-category-card__name {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-sm);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.dz-category-card:hover .dz-category-card__name {
    color: var(--card-accent, var(--dz-color-primary-dark));
}

.dz-category-card__count {
    font-size: var(--dz-fs-xs);
    color: var(--dz-color-text-muted);
    margin-top: 4px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.dz-category-card__arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--card-accent, var(--dz-color-primary));
    z-index: 1;
}

.dz-category-card:hover .dz-category-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .dz-categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .dz-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════════════
   PRODUCT CARDS — UniZoo style
   ══════════════════════════════════════════════════════ */
.dz-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--dz-space-lg);
}

.dz-product-card {
    background: var(--dz-color-white);
    border: none;
    border-radius: var(--dz-radius-xl);
    overflow: hidden;
    transition: all var(--dz-transition-base);
    box-shadow: var(--dz-shadow-card);
    display: flex;
    flex-direction: column;
}

.dz-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dz-shadow-hover);
}

.dz-product-card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.dz-product-card__image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--dz-color-bg-soft);
    border-radius: var(--dz-radius-xl) var(--dz-radius-xl) 0 0;
}

.dz-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--dz-space-md);
    transition: transform var(--dz-transition-slow);
}

.dz-product-card:hover .dz-product-card__image {
    transform: scale(1.05);
}

.dz-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dz-color-border);
}

.dz-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    border-radius: var(--dz-radius-full);
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xs);
    font-weight: 700;
    z-index: 2;
}

.dz-product-card__badge--new {
    background: var(--dz-color-accent-teal);
    color: var(--dz-color-white);
}

.dz-product-card__badge--sale {
    background: var(--dz-color-red);
    color: var(--dz-color-white);
}

.dz-product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 5, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--dz-transition-base);
    z-index: 1;
    border-radius: var(--dz-radius-xl) var(--dz-radius-xl) 0 0;
}

.dz-product-card:hover .dz-product-card__overlay {
    opacity: 1;
}

.dz-product-card__view {
    background: var(--dz-color-white);
    color: var(--dz-color-text-dark);
    padding: 10px 24px;
    border-radius: var(--dz-radius-xl);
    font-family: var(--dz-font-heading);
    font-weight: 600;
    font-size: var(--dz-fs-sm);
    transform: translateY(8px);
    transition: transform var(--dz-transition-base);
}

.dz-product-card:hover .dz-product-card__view {
    transform: translateY(0);
}

.dz-product-card__info {
    padding: var(--dz-space-md) var(--dz-space-lg) var(--dz-space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--dz-space-sm);
}

.dz-product-card__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    color: var(--dz-color-text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    margin: 0;
}

.dz-product-card__price {
    margin-top: auto;
    padding-top: var(--dz-space-sm);
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-lg);
    font-weight: 700;
    color: var(--dz-color-primary-dark);
}

.dz-product-card__price del {
    color: var(--dz-color-text-muted);
    font-weight: 400;
    font-size: var(--dz-fs-sm);
    margin-right: 6px;
}

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

.dz-product-card__cart-form {
    padding: var(--dz-space-sm) var(--dz-space-lg) var(--dz-space-lg);
    margin-top: auto;
}

.dz-product-card__add-to-cart {
    width: 100%;
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    border: none;
    border-radius: var(--dz-radius-lg);
    padding: 12px 16px;
    font-family: var(--dz-font-heading);
    font-weight: 600;
    font-size: var(--dz-fs-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--dz-space-sm);
    cursor: pointer;
    transition: all var(--dz-transition-base);
}

.dz-product-card__add-to-cart:hover {
    background: var(--dz-color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(136, 176, 75, 0.3);
}

/* ══════════════════════════════════════════════════════
   PROMO BANNER — UniZoo gradient style
   ══════════════════════════════════════════════════════ */
.dz-promo-banner {
    padding: var(--dz-space-xl) 0;
}

.dz-promo-banner__inner {
    background: linear-gradient(135deg, var(--dz-color-primary) 0%, var(--dz-color-primary-dark) 60%, #0A6B54 100%);
    border-radius: var(--dz-radius-2xl);
    padding: var(--dz-space-4xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--dz-space-2xl);
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--dz-color-white);
}

.dz-promo-banner__inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.dz-promo-banner__inner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 12%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.dz-promo-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 18px;
    border-radius: var(--dz-radius-full);
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    backdrop-filter: blur(8px);
    margin-bottom: var(--dz-space-md);
}

.dz-promo-banner__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-3xl);
    font-weight: 700;
    line-height: 1.2;
}

.dz-promo-banner__text {
    font-size: var(--dz-fs-base);
    opacity: 0.9;
    margin: var(--dz-space-md) 0 var(--dz-space-xl);
    max-width: 480px;
    line-height: 1.7;
}

.dz-promo-banner__visual {
    position: relative;
    z-index: 1;
}

.dz-promo-banner__emoji {
    font-size: 5rem;
    animation: float 5s ease-in-out infinite;
}

.dz-promo-banner__emoji--2 {
    font-size: 3.5rem;
    position: absolute;
    top: -15px;
    right: -25px;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .dz-promo-banner__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--dz-space-2xl);
    }

    .dz-promo-banner__title {
        font-size: var(--dz-fs-xl);
    }

    .dz-promo-banner__text {
        margin-left: auto;
        margin-right: auto;
    }

    .dz-promo-banner__visual {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════
   USP SECTION
   ══════════════════════════════════════════════════════ */
.dz-usp-section {
    background: transparent;
    padding: var(--dz-space-3xl) 0;
}

.dz-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--dz-space-md);
}

.dz-usp-card {
    text-align: center;
    padding: var(--dz-space-xl);
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-xl);
    transition: all var(--dz-transition-base);
    box-shadow: var(--dz-shadow-card);
}

.dz-usp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dz-shadow-hover);
}

.dz-usp-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--dz-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary);
    border-radius: var(--dz-radius-lg);
    transition: all var(--dz-transition-base);
}

.dz-usp-card:hover .dz-usp-card__icon {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
}

.dz-usp-card__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-sm);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    margin-bottom: 4px;
}

.dz-usp-card__text {
    color: var(--dz-color-text-muted);
    font-size: var(--dz-fs-xs);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .dz-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════ */
.dz-newsletter-section {
    background: transparent;
    padding-bottom: var(--dz-space-3xl);
}

.dz-newsletter__inner {
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-2xl);
    padding: var(--dz-space-3xl) var(--dz-space-4xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dz-space-2xl);
    align-items: center;
    box-shadow: var(--dz-shadow-card);
}

.dz-newsletter__emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--dz-space-sm);
}

.dz-newsletter__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xl);
    font-weight: 700;
    color: var(--dz-color-text-dark);
}

.dz-newsletter__text {
    color: var(--dz-color-text-light);
    margin-top: var(--dz-space-xs);
    font-size: var(--dz-fs-sm);
    line-height: 1.6;
}

.dz-newsletter__input-group {
    display: flex;
    gap: var(--dz-space-sm);
}

.dz-newsletter__input {
    flex: 1;
    border: 2px solid var(--dz-color-border);
    border-radius: var(--dz-radius-xl);
    padding: 12px 20px;
    font-size: var(--dz-fs-sm);
    outline: none;
    background: var(--dz-color-bg-soft);
    transition: border-color var(--dz-transition-fast);
}

.dz-newsletter__input:focus {
    border-color: var(--dz-color-primary);
    background: var(--dz-color-white);
}

.dz-newsletter__submit {
    flex-shrink: 0;
}

.dz-newsletter__disclaimer {
    font-size: var(--dz-fs-xs);
    color: var(--dz-color-text-muted);
    margin-top: var(--dz-space-sm);
}

.dz-newsletter__disclaimer a {
    color: var(--dz-color-primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .dz-newsletter__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--dz-space-xl);
    }

    .dz-newsletter__input-group {
        flex-direction: column;
    }
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.dz-site-footer {
    background: var(--dz-color-white);
    color: var(--dz-color-text-dark);
    border-top: 1px solid var(--dz-color-border);
}

.dz-footer-main {
    padding: var(--dz-space-3xl) 0;
}

.dz-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--dz-space-2xl);
}

.dz-footer-logo {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
    margin-bottom: var(--dz-space-md);
}

.dz-footer-logo__icon {
    color: var(--dz-color-primary);
    display: flex;
}

.dz-footer-logo__text {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-lg);
    font-weight: 800;
    color: var(--dz-color-text-dark);
}

.dz-footer-col__desc {
    color: var(--dz-color-text-light);
    font-size: var(--dz-fs-sm);
    line-height: 1.7;
    margin-bottom: var(--dz-space-md);
}

.dz-footer-socials {
    display: flex;
    gap: var(--dz-space-sm);
}

.dz-footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--dz-radius-lg);
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary);
    transition: all var(--dz-transition-fast);
}

.dz-footer-social:hover {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    transform: translateY(-2px);
}

.dz-footer-col__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-sm);
    font-weight: 700;
    margin-bottom: var(--dz-space-md);
    color: var(--dz-color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dz-footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-sm);
}

.dz-footer-links a {
    color: var(--dz-color-text-light);
    font-size: var(--dz-fs-sm);
    transition: all var(--dz-transition-fast);
}

.dz-footer-links a:hover {
    color: var(--dz-color-primary);
    padding-left: 4px;
}

.dz-footer-links--contact li {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
    color: var(--dz-color-text-light);
    font-size: var(--dz-fs-sm);
}

.dz-footer-links--contact svg {
    flex-shrink: 0;
    color: var(--dz-color-primary);
}

/* Footer Bottom */
.dz-footer-bottom {
    border-top: 1px solid var(--dz-color-border-light);
    padding: var(--dz-space-md) 0;
}

.dz-footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dz-footer-bottom__copy {
    font-size: var(--dz-fs-xs);
    color: var(--dz-color-text-muted);
}

.dz-footer-bottom__payments {
    display: flex;
    gap: var(--dz-space-sm);
    font-size: var(--dz-fs-lg);
}

@media (max-width: 768px) {
    .dz-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--dz-space-xl);
    }

    .dz-footer-col--brand {
        grid-column: 1 / -1;
    }

    .dz-footer-bottom__inner {
        flex-direction: column;
        gap: var(--dz-space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .dz-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0);
}

/* ══════════════════════════════════════════════════════
   WooCommerce Overrides
   ══════════════════════════════════════════════════════ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: var(--dz-radius-lg) !important;
    font-family: var(--dz-font-body) !important;
}

.woocommerce .dz-price {
    font-family: var(--dz-font-heading);
}

/* ══════════════════════════════════════════════════════
   ARTICLE SINGLE (single.php)
   ══════════════════════════════════════════════════════ */
.dz-article-hero {
    position: relative;
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}

.dz-article-hero__image-wrap {
    position: relative;
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}

.dz-article-hero__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.dz-article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
}

.dz-article-single__container {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--dz-space-3xl) var(--dz-space-lg);
}

.dz-article-single__header {
    margin-bottom: var(--dz-space-2xl);
}

.dz-article-single__meta {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
    margin-bottom: var(--dz-space-md);
    flex-wrap: wrap;
}

.dz-article-single__date {
    color: var(--dz-color-primary);
    font-weight: 600;
}

.dz-article-single__sep {
    color: var(--dz-color-border);
}

.dz-article-single__category {
    background: color-mix(in srgb, var(--dz-color-primary) 10%, transparent);
    color: var(--dz-color-primary);
    padding: 2px 10px;
    border-radius: var(--dz-radius-full);
    font-weight: 600;
    font-size: var(--dz-fs-xs);
}

.dz-article-single__read-time {
    font-style: italic;
}

.dz-article-single__title {
    font-family: var(--dz-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--dz-space-md);
}

.dz-article-single__lead {
    font-size: var(--dz-fs-lg);
    color: var(--dz-color-text-muted);
    line-height: 1.7;
    border-left: 3px solid var(--dz-color-primary);
    padding-left: var(--dz-space-md);
}

/* Article Content Typography */
.dz-article-single__content {
    font-size: var(--dz-fs-base);
    line-height: 1.8;
    color: var(--dz-color-text);
}

.dz-article-single__content p {
    margin-bottom: var(--dz-space-lg);
}

.dz-article-single__content h2 {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xl);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    margin-top: var(--dz-space-2xl);
    margin-bottom: var(--dz-space-md);
    padding-bottom: var(--dz-space-xs);
    border-bottom: 2px solid color-mix(in srgb, var(--dz-color-primary) 15%, transparent);
}

.dz-article-single__content h3 {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-lg);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    margin-top: var(--dz-space-xl);
    margin-bottom: var(--dz-space-sm);
}

.dz-article-single__content ul,
.dz-article-single__content ol {
    margin-bottom: var(--dz-space-lg);
    padding-left: var(--dz-space-xl);
}

.dz-article-single__content li {
    margin-bottom: var(--dz-space-sm);
    line-height: 1.7;
}

.dz-article-single__content strong {
    color: var(--dz-color-text-dark);
    font-weight: 600;
}

.dz-article-single__content blockquote {
    background: color-mix(in srgb, var(--dz-color-primary) 5%, transparent);
    border-left: 4px solid var(--dz-color-primary);
    padding: var(--dz-space-lg);
    margin: var(--dz-space-xl) 0;
    border-radius: 0 var(--dz-radius-lg) var(--dz-radius-lg) 0;
    font-style: italic;
}

/* Article Footer */
.dz-article-single__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--dz-space-xl) 0;
    margin-top: var(--dz-space-2xl);
    border-top: 1px solid var(--dz-color-border);
    flex-wrap: wrap;
    gap: var(--dz-space-md);
}

.dz-article-single__share {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
}

.dz-article-single__share-label {
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
    font-weight: 600;
}

.dz-article-single__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--dz-radius-full);
    background: var(--dz-color-bg-muted);
    color: var(--dz-color-text-muted);
    transition: all 0.3s ease;
}

.dz-article-single__share-btn:hover {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    transform: translateY(-2px);
}

.dz-article-single__back {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dz-article-single__back svg {
    transform: rotate(180deg);
}

/* Related Articles */
.dz-article-related {
    margin-top: var(--dz-space-3xl);
    padding-top: var(--dz-space-2xl);
    border-top: 1px solid var(--dz-color-border);
}

.dz-article-related__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xl);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    margin-bottom: var(--dz-space-xl);
    text-align: center;
}

/* ══════════════════════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════════════════════ */
.dz-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--dz-space-xl);
}

@media (max-width: 768px) {
    .dz-blog-grid {
        grid-template-columns: 1fr;
    }
}

.dz-blog-card {
    display: flex;
    flex-direction: column;
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-2xl);
    overflow: hidden;
    border: 1px solid var(--dz-color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}

.dz-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.dz-blog-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--dz-color-bg-muted);
}

.dz-blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dz-blog-card:hover .dz-blog-card__image {
    transform: scale(1.08);
}

.dz-blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dz-color-text-muted);
    background: linear-gradient(135deg, var(--dz-color-bg-muted), var(--dz-color-bg));
}

.dz-blog-card__content {
    padding: var(--dz-space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-xs);
    flex: 1;
}

.dz-blog-card__date {
    font-size: var(--dz-fs-xs);
    color: var(--dz-color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dz-blog-card__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-lg);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dz-blog-card__excerpt {
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dz-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    color: var(--dz-color-primary);
    margin-top: auto;
    padding-top: var(--dz-space-sm);
    transition: gap 0.3s ease;
}

.dz-blog-card:hover .dz-blog-card__link {
    gap: 10px;
}

/* ══════════════════════════════════════════════════════
   CATALOG PAGE — WooCommerce Archive
   ══════════════════════════════════════════════════════ */

/* ── Catalog Header ── */
.dz-catalog-header {
    padding: var(--dz-space-xl) 0 var(--dz-space-lg);
}

.dz-catalog-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--dz-space-xs);
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
    margin-bottom: var(--dz-space-lg);
}

.dz-catalog-breadcrumbs a {
    color: var(--dz-color-text-muted);
    text-decoration: none;
    transition: color var(--dz-transition-base);
}

.dz-catalog-breadcrumbs a:hover {
    color: var(--dz-color-primary);
}

.dz-catalog-breadcrumbs__sep {
    color: var(--dz-color-border);
}

.dz-catalog-breadcrumbs__current {
    color: var(--dz-color-text-dark);
    font-weight: 600;
}

.dz-catalog-header__info {
    display: flex;
    align-items: baseline;
    gap: var(--dz-space-md);
    margin-bottom: var(--dz-space-sm);
}

.dz-catalog-header__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-3xl);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    margin: 0;
}

.dz-catalog-header__count {
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
    background: var(--dz-color-primary-bg);
    padding: 4px 12px;
    border-radius: var(--dz-radius-full);
    font-weight: 500;
}

.dz-catalog-header__desc {
    font-size: var(--dz-fs-base);
    color: var(--dz-color-text-muted);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: var(--dz-space-lg);
}

/* ── Subcategories Chips ── */
.dz-catalog-subcats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--dz-space-xs);
    margin-top: var(--dz-space-md);
}

.dz-catalog-subcats__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--dz-color-white);
    border: 1px solid var(--dz-color-border);
    border-radius: var(--dz-radius-full);
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--dz-transition-base);
}

.dz-catalog-subcats__item:hover {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    border-color: var(--dz-color-primary);
}

.dz-catalog-subcats__item:hover .dz-catalog-subcats__count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--dz-color-white);
}

.dz-catalog-subcats__count {
    font-size: 11px;
    background: var(--dz-color-bg-alt);
    color: var(--dz-color-text-muted);
    padding: 2px 8px;
    border-radius: var(--dz-radius-full);
    transition: all var(--dz-transition-base);
}

/* ── Catalog Toolbar ── */
.dz-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--dz-space-xl);
    padding: var(--dz-space-sm) 0;
    border-bottom: 1px solid var(--dz-color-border);
}

.dz-catalog-toolbar__results .woocommerce-result-count {
    margin: 0;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
}

.dz-catalog-toolbar__sort .woocommerce-ordering select {
    border: 1px solid var(--dz-color-border);
    border-radius: var(--dz-radius-md);
    padding: 8px 32px 8px 12px;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
    background: var(--dz-color-white);
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color var(--dz-transition-base);
}

.dz-catalog-toolbar__sort .woocommerce-ordering select:focus {
    border-color: var(--dz-color-primary);
}

/* ── Catalog Grid ── */
.dz-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--dz-space-lg);
}

.dz-catalog-grid .dz-products {
    display: contents;
}

/* ── Catalog Pagination ── */
.dz-catalog-pagination {
    display: flex;
    justify-content: center;
    margin: var(--dz-space-3xl) 0 var(--dz-space-xl);
}

.dz-catalog-pagination .page-numbers {
    display: flex;
    align-items: center;
    gap: var(--dz-space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.dz-catalog-pagination .page-numbers li {
    list-style: none;
}

.dz-catalog-pagination .page-numbers a,
.dz-catalog-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--dz-radius-md);
    font-size: var(--dz-fs-sm);
    font-weight: 500;
    color: var(--dz-color-text-dark);
    text-decoration: none;
    transition: all var(--dz-transition-base);
    border: 1px solid transparent;
}

.dz-catalog-pagination .page-numbers a:hover {
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary);
}

.dz-catalog-pagination .page-numbers .current {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    font-weight: 700;
}

.dz-catalog-pagination .page-numbers .dz-prev,
.dz-catalog-pagination .page-numbers .dz-next {
    font-weight: 600;
    color: var(--dz-color-primary);
}

/* ── Empty State ── */
.dz-catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--dz-space-4xl) var(--dz-space-xl);
}

.dz-catalog-empty__icon {
    color: var(--dz-color-primary-bg);
    margin-bottom: var(--dz-space-lg);
}

.dz-catalog-empty h3 {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xl);
    color: var(--dz-color-text-dark);
    margin-bottom: var(--dz-space-sm);
}

.dz-catalog-empty p {
    color: var(--dz-color-text-muted);
}

.dz-catalog-empty a {
    color: var(--dz-color-primary);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ══════════════════════════════════════════════════════ */

/* ── Product Hero (breadcrumbs area) ── */
.dz-product-hero {
    padding: var(--dz-space-lg) 0 var(--dz-space-sm);
}

/* ── Product Single Grid ── */
.dz-product-single {
    padding: var(--dz-space-md) 0 var(--dz-space-3xl);
}

.dz-product-single__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dz-space-3xl);
    align-items: start;
}

/* ── Gallery ── */
.dz-product-single__gallery {
    position: sticky;
    top: 100px;
}

.dz-product-single__main-image {
    position: relative;
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.dz-product-single__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.dz-product-single__thumbs {
    display: flex;
    gap: var(--dz-space-xs);
    margin-top: var(--dz-space-md);
    overflow-x: auto;
    padding-bottom: var(--dz-space-xs);
}

.dz-product-single__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: var(--dz-radius-lg);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--dz-color-white);
    transition: border-color var(--dz-transition-base);
    padding: 0;
}

.dz-product-single__thumb.active,
.dz-product-single__thumb:hover {
    border-color: var(--dz-color-primary);
}

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

/* ── Product Info ── */
.dz-product-single__info {
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-md);
}

.dz-product-single__category {
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dz-product-single__category:hover {
    text-decoration: underline;
}

.dz-product-single__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-2xl);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    line-height: 1.2;
    margin: 0;
}

.dz-product-single__price {
    font-size: var(--dz-fs-xl);
    font-weight: 800;
    color: var(--dz-color-primary-dark);
}

.dz-product-single__price del {
    color: var(--dz-color-text-muted);
    font-size: var(--dz-fs-base);
    font-weight: 400;
}

.dz-product-single__price ins {
    text-decoration: none;
    color: #d32f2f;
}

.dz-product-single__short-desc {
    font-size: var(--dz-fs-base);
    color: var(--dz-color-text-muted);
    line-height: 1.7;
}

/* ── Stock Badge ── */
.dz-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--dz-radius-full);
}

.dz-stock-badge--in {
    background: #e8f5e9;
    color: #2e7d32;
}

.dz-stock-badge--out {
    background: #ffebee;
    color: #c62828;
}

/* ── Cart Form ── */
.dz-product-single__cart-form {
    display: flex;
    gap: var(--dz-space-md);
    align-items: center;
}

.dz-product-single__qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--dz-color-border);
    border-radius: var(--dz-radius-lg);
    overflow: hidden;
}

.dz-qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--dz-color-bg-alt);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--dz-color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--dz-transition-base);
}

.dz-qty-btn:hover {
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary);
}

.dz-qty-input {
    width: 48px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: var(--dz-fs-base);
    font-weight: 600;
    background: var(--dz-color-white);
    -moz-appearance: textfield;
}

.dz-qty-input::-webkit-inner-spin-button,
.dz-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dz-product-single__add-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--dz-space-xs);
    font-size: var(--dz-fs-base);
    font-weight: 700;
    padding: 12px 24px;
    height: 48px;
}

/* ── Meta ── */
.dz-product-single__meta {
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-xs);
    padding-top: var(--dz-space-md);
    border-top: 1px solid var(--dz-color-border);
}

.dz-product-meta-row {
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
}

.dz-product-meta-row__label {
    font-weight: 600;
    color: var(--dz-color-text-dark);
    margin-right: 4px;
}

.dz-product-meta-row a {
    color: var(--dz-color-primary);
    text-decoration: none;
}

.dz-product-meta-row a:hover {
    text-decoration: underline;
}

/* ── USP Mini ── */
.dz-product-single__usps {
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-xs);
    padding: var(--dz-space-md);
    background: var(--dz-color-primary-bg);
    border-radius: var(--dz-radius-xl);
}

.dz-product-usp {
    display: flex;
    align-items: center;
    gap: var(--dz-space-xs);
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
    font-weight: 500;
}

.dz-product-usp svg {
    color: var(--dz-color-primary);
    flex-shrink: 0;
}

/* ── Product Description Card ── */
.dz-product-desc-card {
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-2xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: var(--dz-space-2xl);
    max-width: 900px;
}

.dz-product-desc-card__header {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
}

.dz-product-desc-card__icon {
    width: 44px;
    height: 44px;
    background: var(--dz-color-primary-bg);
    border-radius: var(--dz-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dz-color-primary);
}

.dz-product-desc-card__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-lg);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    margin: 0;
}

.dz-product-desc-card__divider {
    height: 2px;
    background: linear-gradient(90deg, var(--dz-color-primary), var(--dz-color-primary-light, #a5d6a7), transparent);
    margin: var(--dz-space-lg) 0;
    border-radius: 2px;
}

.dz-product-desc-card__text {
    font-size: var(--dz-fs-base);
    color: var(--dz-color-text-muted);
    line-height: 1.85;
}

.dz-product-desc-card__text p {
    margin-bottom: var(--dz-space-md);
}

.dz-product-desc-card__text p:last-child {
    margin-bottom: 0;
}

.dz-product-desc-card__text strong {
    color: var(--dz-color-text-dark);
    font-weight: 700;
}

.dz-product-desc-card__text em {
    color: var(--dz-color-primary-dark);
    font-style: italic;
}

.dz-product-desc-card__text ul,
.dz-product-desc-card__text ol {
    padding-left: var(--dz-space-lg);
    margin-bottom: var(--dz-space-md);
}

.dz-product-desc-card__text li {
    margin-bottom: var(--dz-space-xs);
}

/* ── Specs Table ── */
.dz-product-desc-card__specs-title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-base);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    margin: 0 0 var(--dz-space-sm);
}

.dz-product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.dz-product-specs-table tr:nth-child(odd) {
    background: var(--dz-color-bg-alt);
}

.dz-product-specs-table td {
    padding: 10px 14px;
    font-size: var(--dz-fs-sm);
}

.dz-product-specs-table__label {
    font-weight: 600;
    color: var(--dz-color-text-dark);
    width: 35%;
    border-radius: var(--dz-radius-md) 0 0 var(--dz-radius-md);
}

.dz-product-specs-table__value {
    color: var(--dz-color-text-muted);
    border-radius: 0 var(--dz-radius-md) var(--dz-radius-md) 0;
}

/* ── Related Products ── */
.dz-product-related .dz-products-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* ── Hide WooCommerce Defaults ── */
.woocommerce-products-header,
.woocommerce-breadcrumb,
.woocommerce-result-count:not(.dz-catalog-toolbar__results .woocommerce-result-count),
.woocommerce-ordering:not(.dz-catalog-toolbar__sort .woocommerce-ordering) {
    /* Keep defaults hidden — we render our own */
}

.dz-catalog-content .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
}

/* ══════════════════════════════════════════════════════
   MOBILE RESPONSIVE OVERRIDES (≤768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── General Section ── */
    .dz-section {
        padding: var(--dz-space-2xl) 0;
    }

    .dz-section__title {
        font-size: var(--dz-fs-xl);
    }

    .dz-section__subtitle {
        font-size: var(--dz-fs-sm);
    }

    .dz-container {
        padding-left: var(--dz-space-md);
        padding-right: var(--dz-space-md);
    }

    /* ── Hero ── */
    .dz-hero__inner {
        padding: var(--dz-space-xl) var(--dz-space-md);
    }

    .dz-hero__title {
        font-size: var(--dz-fs-xl);
        line-height: 1.2;
    }

    .dz-hero__subtitle {
        font-size: var(--dz-fs-sm);
        margin-bottom: var(--dz-space-sm);
    }

    .dz-hero__actions {
        flex-direction: row;
        gap: var(--dz-space-xs);
        flex-wrap: wrap;
        justify-content: center;
    }

    .dz-hero__actions .dz-btn {
        width: auto;
        padding: 10px 20px;
        font-size: var(--dz-fs-sm);
    }

    .dz-hero__stats {
        gap: var(--dz-space-md);
        margin-top: var(--dz-space-sm);
    }

    .dz-hero__stat-number {
        font-size: var(--dz-fs-lg);
    }

    .dz-hero__stat-label {
        font-size: 11px;
    }

    .dz-hero__floating {
        display: none;
    }

    /* ── Products Grid ── */
    .dz-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--dz-space-sm);
    }

    .dz-product-card__info {
        padding: var(--dz-space-sm);
    }

    .dz-product-card__name {
        font-size: var(--dz-fs-sm);
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .dz-product-card__price {
        font-size: var(--dz-fs-sm);
    }

    .dz-product-card .dz-btn {
        font-size: var(--dz-fs-xs);
        padding: 8px 12px;
    }

    /* ── Promo Banner ── */
    .dz-promo-banner__badge {
        font-size: var(--dz-fs-xs);
    }

    .dz-promo-banner .dz-btn {
        width: 100%;
        justify-content: center;
    }

    /* ── USP Grid ── */
    .dz-usp-card {
        padding: var(--dz-space-md);
    }

    .dz-usp-card__icon {
        width: 44px;
        height: 44px;
    }

    /* ── Newsletter ── */
    .dz-newsletter__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--dz-space-xl);
    }

    .dz-newsletter__input-group {
        flex-direction: column;
    }

    .dz-newsletter__input {
        width: 100%;
    }

    .dz-newsletter__btn {
        width: 100%;
        justify-content: center;
    }

    .dz-newsletter__consent {
        text-align: center;
    }

    /* ── Blog Cards ── */
    .dz-blog-card__title {
        font-size: var(--dz-fs-base);
    }

    .dz-blog-card__content {
        padding: var(--dz-space-md);
    }

    /* ── Article Single ── */
    .dz-article-hero__image {
        height: 220px;
    }

    .dz-article-single__container {
        padding: var(--dz-space-xl) var(--dz-space-md);
    }

    .dz-article-single__title {
        font-size: var(--dz-fs-xl);
    }

    .dz-article-single__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .dz-article-related .dz-blog-grid {
        grid-template-columns: 1fr;
    }

    /* ── Catalog ── */
    .dz-catalog-header__title {
        font-size: var(--dz-fs-xl);
    }

    .dz-catalog-header__info {
        flex-direction: column;
        gap: var(--dz-space-xs);
    }

    .dz-catalog-toolbar {
        flex-direction: column;
        gap: var(--dz-space-sm);
        align-items: flex-start;
    }

    .dz-catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--dz-space-sm);
    }

    .dz-catalog-subcats {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--dz-space-xs);
        -webkit-overflow-scrolling: touch;
    }

    .dz-catalog-subcats__item {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .dz-catalog-pagination .page-numbers a,
    .dz-catalog-pagination .page-numbers span {
        min-width: 36px;
        height: 36px;
        font-size: var(--dz-fs-xs);
    }

    /* ── Single Product ── */
    .dz-product-single__grid {
        grid-template-columns: 1fr;
        gap: var(--dz-space-xl);
    }

    .dz-product-single__gallery {
        position: static;
    }

    .dz-product-single__title {
        font-size: var(--dz-fs-xl);
    }

    .dz-product-single__cart-form {
        flex-direction: column;
    }

    .dz-product-single__add-btn {
        width: 100%;
    }

    .dz-product-related .dz-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* ── Cart & Checkout Mobile ── */
    .woocommerce-cart-form__contents th,
    .woocommerce-cart-form__contents .dz-product-thumbnail {
        display: none;
    }

    .woocommerce-cart-form__contents td {
        display: block;
        text-align: right;
        padding: 8px 14px;
        border-bottom: none;
    }

    .woocommerce-cart-form__contents td::before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
        color: var(--dz-color-text-dark);
    }

    .woocommerce-cart-form__contents tr {
        border-bottom: 1px solid var(--dz-color-border);
        margin-bottom: var(--dz-space-sm);
        padding-bottom: var(--dz-space-sm);
    }

    .wc-cart-grid {
        grid-template-columns: 1fr;
    }

    .dz-col2-set {
        grid-template-columns: 1fr !important;
    }
}

/* ══════════════════════════════════════════════════════
   PAGE TEMPLATE (page.php)
   ══════════════════════════════════════════════════════ */

/* ── Page Hero ── */
.dz-page-hero {
    padding: var(--dz-space-xl) 0 var(--dz-space-lg);
    background: var(--dz-color-bg-alt);
    border-bottom: 1px solid var(--dz-color-border);
}

.dz-page-hero__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-2xl);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    margin: var(--dz-space-sm) 0 0;
}

/* ── Page Content ── */
.dz-page-content {
    padding: var(--dz-space-2xl) 0 var(--dz-space-3xl);
}

/* ══════════════════════════════════════════════════════
   WOOCOMMERCE CART
   ══════════════════════════════════════════════════════ */

.wc-cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--dz-space-2xl);
    align-items: start;
}

/* ── Cart Table ── */
.woocommerce-cart-form {
    overflow: visible;
}

table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

table.shop_table thead {
    background: var(--dz-color-bg-alt);
}

table.shop_table th {
    padding: 14px 18px;
    font-size: var(--dz-fs-sm);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--dz-color-border);
}

table.shop_table td {
    padding: 16px 18px;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
    vertical-align: middle;
    border-bottom: 1px solid var(--dz-color-border);
}

table.shop_table tr:last-child td {
    border-bottom: none;
}

table.shop_table .dz-product-thumbnail img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--dz-radius-lg);
    border: 1px solid var(--dz-color-border);
}

table.shop_table .dz-product-name a {
    color: var(--dz-color-text-dark);
    font-weight: 600;
    text-decoration: none;
}

table.shop_table .dz-product-name a:hover {
    color: var(--dz-color-primary);
}

table.shop_table .dz-product-price .woocommerce-Price-amount,
table.shop_table .dz-product-subtotal .woocommerce-Price-amount {
    font-weight: 700;
    color: var(--dz-color-text-dark);
}

/* ── Qty in Cart ── */
table.shop_table .dz-quantity input[type="number"] {
    width: 60px;
    height: 38px;
    border: 1px solid var(--dz-color-border);
    border-radius: var(--dz-radius-md);
    text-align: center;
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    background: var(--dz-color-white);
    -moz-appearance: textfield;
}

table.shop_table .dz-quantity input::-webkit-inner-spin-button,
table.shop_table .dz-quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* ── Remove button ── */
table.shop_table .dz-product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--dz-radius-full);
    background: #ffebee;
    color: #c62828;
    font-size: 18px;
    text-decoration: none;
    transition: all var(--dz-transition-base);
}

table.shop_table .dz-product-remove a:hover {
    background: #c62828;
    color: white;
}

/* ── Update Cart Button ── */
button[name="update_cart"],
.wc-cart-form .button {
    background: var(--dz-color-bg-alt);
    color: var(--dz-color-text-dark);
    border: 1px solid var(--dz-color-border);
    padding: 10px 24px;
    border-radius: var(--dz-radius-lg);
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dz-transition-base);
    margin-top: var(--dz-space-md);
}

button[name="update_cart"]:hover {
    background: var(--dz-color-primary-bg);
    border-color: var(--dz-color-primary);
    color: var(--dz-color-primary);
}

/* ── Coupon ── */
.dz-coupon {
    display: flex;
    gap: var(--dz-space-xs);
    margin-top: var(--dz-space-md);
}

.dz-coupon input[type="text"] {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--dz-color-border);
    border-radius: var(--dz-radius-lg);
    font-size: var(--dz-fs-sm);
    background: var(--dz-color-white);
}

.dz-coupon .button {
    margin-top: 0 !important;
}

/* ── Cart Totals ── */
.cart_totals {
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-2xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: var(--dz-space-xl);
    position: sticky;
    top: 100px;
}

.cart_totals h2 {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-lg);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    margin: 0 0 var(--dz-space-lg);
    padding-bottom: var(--dz-space-sm);
    border-bottom: 2px solid var(--dz-color-primary);
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.cart_totals table th {
    text-align: left;
    padding: 12px 0;
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    color: var(--dz-color-text-muted);
}

.cart_totals table td {
    text-align: right;
    padding: 12px 0;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
    font-weight: 600;
}

.cart_totals .dz-order-total th,
.cart_totals .dz-order-total td {
    font-size: var(--dz-fs-lg);
    font-weight: 800;
    color: var(--dz-color-primary-dark);
    padding-top: var(--dz-space-md);
    border-top: 2px solid var(--dz-color-border);
}

.cart_totals .wc-proceed-to-checkout {
    margin-top: var(--dz-space-lg);
}

.cart_totals .wc-proceed-to-checkout a,
.wc-proceed-to-checkout .dz-checkout-button {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    text-align: center;
    font-size: var(--dz-fs-base);
    font-weight: 700;
    border-radius: var(--dz-radius-xl);
    text-decoration: none;
    transition: all var(--dz-transition-base);
    border: none;
    cursor: pointer;
}

.cart_totals .wc-proceed-to-checkout a:hover,
.wc-proceed-to-checkout .dz-checkout-button:hover {
    background: var(--dz-color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(76, 125, 58, 0.3);
}

/* ══════════════════════════════════════════════════════
   WOOCOMMERCE CHECKOUT
   ══════════════════════════════════════════════════════ */

/* ── Checkout two-column layout ── */
.dz-col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dz-space-2xl);
}

.dz-col2-set>div>h3,
#order_review_heading {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-lg);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    margin: 0 0 var(--dz-space-lg);
    padding-bottom: var(--dz-space-xs);
    border-bottom: 2px solid var(--dz-color-primary);
}

/* ── Form Fields ── */
.woocommerce-checkout .dz-form-row {
    margin-bottom: var(--dz-space-md);
}

.woocommerce-checkout .dz-form-row label {
    display: block;
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    color: var(--dz-color-text-dark);
    margin-bottom: 4px;
}

.woocommerce-checkout .dz-form-row .dz-required {
    color: #d32f2f;
}

.woocommerce-checkout .dz-form-row input[type="text"],
.woocommerce-checkout .dz-form-row input[type="email"],
.woocommerce-checkout .dz-form-row input[type="tel"],
.woocommerce-checkout .dz-form-row input[type="number"],
.woocommerce-checkout .dz-form-row textarea,
.woocommerce-checkout .dz-form-row select,
.woocommerce-checkout .dz-select2-container .dz-select2-selection--single {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--dz-color-border);
    border-radius: var(--dz-radius-lg);
    font-size: var(--dz-fs-sm);
    font-family: var(--dz-font-body);
    background: var(--dz-color-white);
    transition: border-color var(--dz-transition-base), box-shadow var(--dz-transition-base);
    box-sizing: border-box;
}

.woocommerce-checkout .dz-form-row input:focus,
.woocommerce-checkout .dz-form-row textarea:focus,
.woocommerce-checkout .dz-form-row select:focus {
    outline: none;
    border-color: var(--dz-color-primary);
    box-shadow: 0 0 0 3px rgba(76, 125, 58, 0.15);
}

/* ── Order Review ── */
#order_review {
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-2xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: var(--dz-space-xl);
    margin-top: var(--dz-space-lg);
}

#order_review table.shop_table {
    box-shadow: none;
    border: none;
    border-radius: 0;
}

#order_review table.shop_table th {
    border-bottom: 1px solid var(--dz-color-border);
}

/* ── Payment Methods ── */
.dz-wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: var(--dz-space-lg) 0;
}

.dz-wc_payment_methods li {
    background: var(--dz-color-bg-alt);
    border: 1px solid var(--dz-color-border);
    border-radius: var(--dz-radius-lg);
    padding: var(--dz-space-md);
    margin-bottom: var(--dz-space-sm);
    transition: border-color var(--dz-transition-base);
}

.dz-wc_payment_methods li.active,
.dz-wc_payment_methods li:has(input:checked) {
    border-color: var(--dz-color-primary);
    background: var(--dz-color-primary-bg);
}

.dz-wc_payment_methods label {
    font-weight: 600;
    color: var(--dz-color-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--dz-space-xs);
}

.dz-wc_payment_methods .dz-payment_box {
    padding: var(--dz-space-sm) 0 0 28px;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
}

/* ── Place Order ── */
#place_order {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    font-size: var(--dz-fs-base);
    font-weight: 700;
    border: none;
    border-radius: var(--dz-radius-xl);
    cursor: pointer;
    transition: all var(--dz-transition-base);
    margin-top: var(--dz-space-lg);
}

#place_order:hover {
    background: var(--dz-color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(76, 125, 58, 0.3);
}

/* ── WooCommerce Notices ── */
.woocommerce-message,
.woocommerce-info {
    background: var(--dz-color-primary-bg);
    border-left: 4px solid var(--dz-color-primary);
    padding: var(--dz-space-md) var(--dz-space-lg);
    border-radius: var(--dz-radius-lg);
    margin-bottom: var(--dz-space-lg);
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
}

.woocommerce-error {
    background: #ffebee;
    border-left: 4px solid #c62828;
    padding: var(--dz-space-md) var(--dz-space-lg);
    border-radius: var(--dz-radius-lg);
    margin-bottom: var(--dz-space-lg);
    font-size: var(--dz-fs-sm);
    color: #c62828;
    list-style: none;
}

.woocommerce-message a,
.woocommerce-info a {
    color: var(--dz-color-primary);
    font-weight: 600;
}

/* ── Empty Cart ── */
.dz-cart-empty {
    text-align: center;
    padding: var(--dz-space-3xl) 0;
    font-size: var(--dz-fs-lg);
    color: var(--dz-color-text-muted);
}

.dz-return-to-shop .button {
    display: inline-flex;
    align-items: center;
    gap: var(--dz-space-xs);
    padding: 14px 32px;
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    font-size: var(--dz-fs-base);
    font-weight: 700;
    border-radius: var(--dz-radius-xl);
    text-decoration: none;
    transition: all var(--dz-transition-base);
    border: none;
    cursor: pointer;
    margin-top: var(--dz-space-lg);
}

.dz-return-to-shop .button:hover {
    background: var(--dz-color-primary-dark);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   SMALL MOBILE OVERRIDES (≤480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    /* ── Hero ── */
    .dz-hero__title {
        font-size: var(--dz-fs-xl);
    }

    /* ── Products Grid ── */
    .dz-products-grid {
        gap: var(--dz-space-xs);
    }

    .dz-product-card__info {
        padding: var(--dz-space-xs);
    }

    .dz-product-card__name {
        font-size: var(--dz-fs-xs);
    }

    /* ── USP ── */
    .dz-usp-card__title {
        font-size: var(--dz-fs-xs);
    }

    .dz-usp-card__text {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ══════════════════════════════════════════════════════
   UTILITY
   ══════════════════════════════════════════════════════ */
.dz-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ══════════════════════════════════════════════════════
   CATALOG / ARCHIVE PAGES
   ══════════════════════════════════════════════════════ */

/* --- Header --- */
.dz-catalog-header {
    padding: var(--dz-space-2xl) 0 var(--dz-space-lg);
    background: var(--dz-color-bg-soft);
}

.dz-catalog-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: var(--dz-fs-xs);
    color: var(--dz-color-text-muted);
    margin-bottom: var(--dz-space-lg);
}

.dz-catalog-breadcrumbs a {
    color: var(--dz-color-text-muted);
    text-decoration: none;
    transition: color var(--dz-transition-base);
}

.dz-catalog-breadcrumbs a:hover {
    color: var(--dz-color-primary);
}

.dz-catalog-breadcrumbs__sep {
    color: var(--dz-color-border);
}

.dz-catalog-breadcrumbs__current {
    color: var(--dz-color-text-dark);
    font-weight: 600;
}

.dz-catalog-header__info {
    display: flex;
    align-items: baseline;
    gap: var(--dz-space-md);
    margin-bottom: var(--dz-space-sm);
}

.dz-catalog-header__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-3xl);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    margin: 0;
}

.dz-catalog-header__count {
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-muted);
}

.dz-catalog-header__desc {
    color: var(--dz-color-text-light);
    font-size: var(--dz-fs-sm);
    max-width: 640px;
    line-height: 1.6;
}

/* --- Subcategories pills --- */
.dz-catalog-subcats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--dz-space-md);
}

.dz-catalog-subcats__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--dz-radius-full);
    background: var(--dz-color-white);
    color: var(--dz-color-text-dark);
    font-size: var(--dz-fs-sm);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--dz-color-border);
    transition: all var(--dz-transition-base);
}

.dz-catalog-subcats__item:hover {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    border-color: var(--dz-color-primary);
}

.dz-catalog-subcats__item:hover .dz-catalog-subcats__count {
    background: rgba(255, 255, 255, 0.25);
    color: var(--dz-color-white);
}

.dz-catalog-subcats__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: var(--dz-radius-full);
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary);
    font-size: 11px;
    font-weight: 700;
    transition: all var(--dz-transition-base);
}

/* --- Toolbar (result count + sorting) --- */
.dz-catalog-content {
    padding: var(--dz-space-xl) 0 var(--dz-space-3xl);
}

.dz-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--dz-space-xl);
    flex-wrap: wrap;
    gap: var(--dz-space-md);
}

.dz-catalog-toolbar__results .woocommerce-result-count {
    color: var(--dz-color-text-muted);
    font-size: var(--dz-fs-sm);
    margin: 0;
    float: none;
}

.dz-catalog-toolbar__sort .woocommerce-ordering {
    margin: 0;
}

.dz-catalog-toolbar__sort select {
    padding: 10px 40px 10px 16px;
    border: 1px solid var(--dz-color-border);
    border-radius: var(--dz-radius-lg);
    font-family: var(--dz-font-body);
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-dark);
    background: var(--dz-color-white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color var(--dz-transition-base);
}

.dz-catalog-toolbar__sort select:focus {
    outline: none;
    border-color: var(--dz-color-primary);
}

/* --- Product Grid (override WooCommerce defaults) --- */
.dz-catalog-grid {
    margin-bottom: var(--dz-space-2xl);
}

.dz-catalog-grid ul.products,
.dz-catalog-grid .dz-products,
ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--dz-space-lg);
    list-style: none;
    padding: 0;
    margin: 0;
    float: none !important;
}

ul.products::before,
ul.products::after {
    display: none !important;
}

ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: none !important;
}

/* Override WC default styles */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Product card in catalog grid */
.dz-catalog-grid .dz-product-card {
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-xl);
    overflow: hidden;
    box-shadow: var(--dz-shadow-card);
    transition: all var(--dz-transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dz-catalog-grid .dz-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dz-shadow-hover);
}

.dz-catalog-grid .dz-product-card__image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--dz-color-bg-soft);
}

.dz-catalog-grid .dz-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--dz-space-md);
    transition: transform 0.4s ease;
}

.dz-catalog-grid .dz-product-card:hover .dz-product-card__image {
    transform: scale(1.05);
}

.dz-product-card__name {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    color: var(--dz-color-text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    min-height: 2.8em;
    transition: color var(--dz-transition-base);
}

.dz-product-card__name:hover {
    color: var(--dz-color-primary);
}

.dz-product-card__btn {
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Badges */
.dz-product-card__badge--hot {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--dz-radius-full);
    z-index: 2;
}

/* --- Pagination --- */
.dz-catalog-pagination {
    display: flex;
    justify-content: center;
}

.dz-catalog-pagination .page-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dz-catalog-pagination .page-numbers li {
    display: inline-flex;
}

.dz-catalog-pagination .page-numbers a,
.dz-catalog-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: var(--dz-radius-lg);
    font-size: var(--dz-fs-sm);
    font-weight: 500;
    text-decoration: none;
    color: var(--dz-color-text-dark);
    transition: all var(--dz-transition-base);
}

.dz-catalog-pagination .page-numbers a:hover {
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary);
}

.dz-catalog-pagination .page-numbers .current {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    font-weight: 700;
}

.dz-catalog-pagination .page-numbers .dz-prev,
.dz-catalog-pagination .page-numbers .dz-next {
    font-weight: 600;
    color: var(--dz-color-primary);
}

.dz-catalog-pagination .page-numbers .dz-dots {
    color: var(--dz-color-text-muted);
}

/* --- Empty state --- */
.dz-catalog-empty {
    text-align: center;
    padding: var(--dz-space-4xl) var(--dz-space-xl);
    grid-column: 1 / -1;
}

.dz-catalog-empty__icon {
    color: var(--dz-color-primary-bg);
    margin-bottom: var(--dz-space-md);
}

.dz-catalog-empty h3 {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-lg);
    color: var(--dz-color-text-dark);
    margin-bottom: var(--dz-space-xs);
}

.dz-catalog-empty p {
    color: var(--dz-color-text-muted);
}

.dz-catalog-empty a {
    color: var(--dz-color-primary);
    font-weight: 600;
}

/* --- Responsive catalog --- */
@media (max-width: 1200px) {
    .dz-catalog-grid ul.products,
    ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .dz-catalog-grid ul.products,
    ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dz-catalog-header__title {
        font-size: var(--dz-fs-2xl);
    }

    .dz-catalog-grid ul.products,
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--dz-space-md);
    }

    .dz-catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .dz-catalog-grid ul.products,
    ul.products {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ══════════════════════════════════════════════════════ */

/* ── Product hero section ──────────────────────────── */
.dz-product-hero {
    padding: var(--dz-space-lg) 0 0;
}

/* ── Main grid: image + info ───────────────────────── */
.dz-product-single {
    padding: var(--dz-space-xl) 0 var(--dz-space-3xl);
}

.dz-product-single__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dz-space-3xl);
    align-items: start;
}

/* ── Gallery ───────────────────────────────────────── */
.dz-product-single__gallery {
    position: sticky;
    top: calc(var(--dz-header-height) + var(--dz-top-bar-height) + var(--dz-space-lg));
}

.dz-product-single__main-image {
    position: relative;
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-xl);
    overflow: hidden;
    box-shadow: var(--dz-shadow-card);
    border: 1px solid var(--dz-color-border-light);
    cursor: zoom-in;
}

.dz-product-single__main-image:hover {
    box-shadow: var(--dz-shadow-hover);
}

.dz-product-single__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dz-product-single__main-image:hover .dz-product-single__image {
    transform: scale(1.05);
}

/* Sale badge on product page */
.dz-product-single__main-image .dz-product-card__badge {
    position: absolute;
    top: var(--dz-space-md);
    left: var(--dz-space-md);
    z-index: 5;
}

/* ── Thumbnails ────────────────────────────────────── */
.dz-product-single__thumbs {
    display: flex;
    gap: var(--dz-space-sm);
    margin-top: var(--dz-space-md);
    flex-wrap: wrap;
}

.dz-product-single__thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--dz-radius-md);
    overflow: hidden;
    border: 2px solid var(--dz-color-border);
    background: var(--dz-color-white);
    cursor: pointer;
    transition: all var(--dz-transition-base);
    padding: 0;
    flex-shrink: 0;
}

.dz-product-single__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dz-transition-fast);
}

.dz-product-single__thumb:hover {
    border-color: var(--dz-color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--dz-shadow-sm);
}

.dz-product-single__thumb:hover img {
    transform: scale(1.08);
}

.dz-product-single__thumb.active {
    border-color: var(--dz-color-primary);
    box-shadow: 0 0 0 3px rgba(136, 176, 75, 0.2);
}

/* ── Product Info ──────────────────────────────────── */
.dz-product-single__info {
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-md);
}

/* Category link */
.dz-product-single__category {
    display: inline-block;
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dz-color-primary);
    background: var(--dz-color-primary-bg);
    padding: 4px 14px;
    border-radius: var(--dz-radius-full);
    transition: all var(--dz-transition-fast);
    align-self: flex-start;
}

.dz-product-single__category:hover {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
}

/* Title */
.dz-product-single__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-2xl);
    font-weight: 800;
    line-height: 1.25;
    color: var(--dz-color-text-dark);
    letter-spacing: -0.02em;
}

/* Price — BIG and prominent */
.dz-product-single__price {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-3xl);
    font-weight: 800;
    color: var(--dz-color-primary-dark);
    line-height: 1;
}

.dz-product-single__price del {
    font-size: var(--dz-fs-lg);
    color: var(--dz-color-text-muted);
    font-weight: 500;
    text-decoration: line-through;
    margin-right: var(--dz-space-sm);
}

.dz-product-single__price ins {
    text-decoration: none;
    color: var(--dz-color-red);
}

/* Short description */
.dz-product-single__short-desc {
    font-size: var(--dz-fs-base);
    color: var(--dz-color-text-light);
    line-height: 1.7;
}

.dz-product-single__short-desc p {
    margin-bottom: var(--dz-space-xs);
}

/* ── Stock Badge ───────────────────────────────────── */
.dz-product-single__stock {
    margin: var(--dz-space-xs) 0;
}

.dz-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--dz-radius-full);
}

.dz-stock-badge--in {
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.dz-stock-badge--out {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

/* ── Cart Form: Qty + Button ───────────────────────── */
.dz-product-single__cart-form {
    display: flex;
    align-items: center;
    gap: var(--dz-space-md);
    margin: var(--dz-space-sm) 0;
}

.dz-product-single__qty {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--dz-color-border);
    border-radius: var(--dz-radius-xl);
    overflow: hidden;
    background: var(--dz-color-white);
    transition: border-color var(--dz-transition-fast), box-shadow var(--dz-transition-fast);
}

.dz-product-single__qty:focus-within {
    border-color: var(--dz-color-primary);
    box-shadow: 0 0 0 3px rgba(136, 176, 75, 0.15);
}

.dz-qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--dz-color-text-dark);
    background: var(--dz-color-bg-soft);
    border: none;
    cursor: pointer;
    transition: all var(--dz-transition-fast);
    user-select: none;
}

.dz-qty-btn:hover {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
}

.dz-qty-btn:active {
    transform: scale(0.92);
}

.dz-qty-input {
    width: 50px;
    text-align: center;
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-md);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    border: none;
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}

.dz-qty-input::-webkit-inner-spin-button,
.dz-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to cart CTA button */
.dz-product-single__add-btn {
    flex: 1;
    min-height: 52px;
    font-size: var(--dz-fs-md) !important;
    padding: 14px 32px !important;
    border-radius: var(--dz-radius-xl) !important;
    box-shadow: 0 4px 14px rgba(136, 176, 75, 0.3);
    gap: var(--dz-space-sm);
}

.dz-product-single__add-btn:hover {
    box-shadow: 0 6px 22px rgba(136, 176, 75, 0.45) !important;
    transform: translateY(-2px);
}

.dz-product-single__add-btn:active {
    transform: translateY(0);
}

/* ── Meta (SKU, Tags) ──────────────────────────────── */
.dz-product-single__meta {
    padding-top: var(--dz-space-md);
    border-top: 1px solid var(--dz-color-border-light);
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-xs);
}

.dz-product-meta-row {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-light);
}

.dz-product-meta-row__label {
    font-weight: 700;
    color: var(--dz-color-text-muted);
    min-width: 50px;
}

.dz-product-meta-row a {
    color: var(--dz-color-primary);
    font-weight: 500;
}

.dz-product-meta-row a:hover {
    color: var(--dz-color-primary-dark);
    text-decoration: underline;
}

/* ── USP Badges ────────────────────────────────────── */
.dz-product-single__usps {
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-xs);
    padding: var(--dz-space-lg);
    background: var(--dz-color-bg-soft);
    border-radius: var(--dz-radius-xl);
    border: 1px solid var(--dz-color-border-light);
    margin-top: var(--dz-space-sm);
}

.dz-product-usp {
    display: flex;
    align-items: center;
    gap: var(--dz-space-sm);
    font-size: var(--dz-fs-sm);
    font-weight: 500;
    color: var(--dz-color-text);
    padding: 8px 12px;
    border-radius: var(--dz-radius-md);
    transition: background var(--dz-transition-fast);
}

.dz-product-usp:hover {
    background: var(--dz-color-white);
}

.dz-product-usp svg {
    color: var(--dz-color-primary);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   PRODUCT DESCRIPTION CARD
   ══════════════════════════════════════════════════════ */
.dz-product-description {
    padding: 0 0 var(--dz-space-3xl);
}

.dz-product-desc-card {
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-xl);
    padding: var(--dz-space-2xl);
    box-shadow: var(--dz-shadow-card);
    border: 1px solid var(--dz-color-border-light);
    max-width: 900px;
    margin: 0 auto;
}

.dz-product-desc-card__header {
    display: flex;
    align-items: center;
    gap: var(--dz-space-md);
    margin-bottom: var(--dz-space-lg);
}

.dz-product-desc-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--dz-color-primary-bg);
    border-radius: var(--dz-radius-md);
    color: var(--dz-color-primary);
    flex-shrink: 0;
}

.dz-product-desc-card__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xl);
    font-weight: 700;
    color: var(--dz-color-text-dark);
}

.dz-product-desc-card__divider {
    height: 2px;
    background: linear-gradient(90deg, var(--dz-color-primary-bg) 0%, transparent 100%);
    margin: var(--dz-space-lg) 0;
    border-radius: 1px;
}

.dz-product-desc-card__text {
    font-size: var(--dz-fs-base);
    line-height: 1.8;
    color: var(--dz-color-text);
}

.dz-product-desc-card__text p {
    margin-bottom: var(--dz-space-md);
}

.dz-product-desc-card__text strong,
.dz-product-desc-card__text b {
    font-weight: 700;
    color: var(--dz-color-text-dark);
}

.dz-product-desc-card__text ul,
.dz-product-desc-card__text ol {
    padding-left: var(--dz-space-xl);
    margin-bottom: var(--dz-space-md);
}

.dz-product-desc-card__text li {
    margin-bottom: var(--dz-space-xs);
    position: relative;
    list-style: disc;
    color: var(--dz-color-text);
}

/* ── Specs Table ───────────────────────────────────── */
.dz-product-desc-card__specs {
    margin-top: var(--dz-space-sm);
}

.dz-product-desc-card__specs-title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-lg);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    margin-bottom: var(--dz-space-md);
}

.dz-product-specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--dz-radius-md);
    overflow: hidden;
    border: 1px solid var(--dz-color-border-light);
}

.dz-product-specs-table tr:nth-child(even) {
    background: var(--dz-color-bg-soft);
}

.dz-product-specs-table tr:nth-child(odd) {
    background: var(--dz-color-white);
}

.dz-product-specs-table td {
    padding: 12px 18px;
    font-size: var(--dz-fs-sm);
    border-bottom: 1px solid var(--dz-color-border-light);
}

.dz-product-specs-table tr:last-child td {
    border-bottom: none;
}

.dz-product-specs-table__label {
    font-weight: 700;
    color: var(--dz-color-text-dark);
    width: 35%;
    white-space: nowrap;
}

.dz-product-specs-table__value {
    color: var(--dz-color-text-light);
}

/* ══════════════════════════════════════════════════════
   PRODUCT DETAILS GRID (Description + Sidebar)
   ══════════════════════════════════════════════════════ */
.dz-product-details-section {
    padding: 0 0 var(--dz-space-3xl);
}

.dz-product-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--dz-space-2xl);
    align-items: start;
}

.dz-product-details-grid__main {
    min-width: 0; /* prevent grid blowout */
}

/* ── Sidebar ───────────────────────────────────────── */
.dz-product-details-grid__sidebar {
    position: sticky;
    top: calc(var(--dz-header-height) + var(--dz-top-bar-height) + var(--dz-space-lg));
    display: flex;
    flex-direction: column;
    gap: var(--dz-space-md);
}

/* ── Info Cards ────────────────────────────────────── */
.dz-product-info-card {
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-xl);
    padding: var(--dz-space-lg) var(--dz-space-xl);
    box-shadow: var(--dz-shadow-card);
    border: 1px solid var(--dz-color-border-light);
    transition: all var(--dz-transition-base);
}

.dz-product-info-card:hover {
    box-shadow: var(--dz-shadow-hover);
    transform: translateY(-2px);
}

.dz-product-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--dz-radius-md);
    margin-bottom: var(--dz-space-sm);
}

.dz-product-info-card__icon--delivery {
    background: #ecfdf5;
    color: #059669;
}

.dz-product-info-card__icon--payment {
    background: #eff6ff;
    color: #2563eb;
}

.dz-product-info-card__icon--returns {
    background: #fff7ed;
    color: #ea580c;
}

.dz-product-info-card__icon--guarantee {
    background: #fdf4ff;
    color: #a855f7;
}

.dz-product-info-card__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-md);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    margin-bottom: var(--dz-space-sm);
}

.dz-product-info-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dz-product-info-card__list li {
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-light);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.dz-product-info-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--dz-color-primary);
    font-size: 12px;
}

/* ══════════════════════════════════════════════════════
   RELATED PRODUCTS
   ══════════════════════════════════════════════════════ */
.dz-product-related {
    padding-bottom: var(--dz-space-4xl);
}

.dz-product-related .dz-section__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-2xl);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    text-align: center;
    margin-bottom: var(--dz-space-2xl);
}

.dz-product-related .dz-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--dz-space-xl);
}

/* ── Responsive Single Product ─────────────────────── */
@media (max-width: 992px) {
    .dz-product-single__grid {
        grid-template-columns: 1fr;
        gap: var(--dz-space-2xl);
    }

    .dz-product-single__gallery {
        position: static;
    }

    .dz-product-related .dz-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dz-product-details-grid {
        grid-template-columns: 1fr;
    }

    .dz-product-details-grid__sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--dz-space-md);
    }
}

@media (max-width: 768px) {
    .dz-product-single__title {
        font-size: var(--dz-fs-xl);
    }

    .dz-product-single__price {
        font-size: var(--dz-fs-2xl);
    }

    .dz-product-single__cart-form {
        flex-direction: column;
        align-items: stretch;
    }

    .dz-product-single__qty {
        align-self: flex-start;
    }

    .dz-product-desc-card {
        padding: var(--dz-space-lg);
    }

    .dz-product-single__thumb {
        width: 60px;
        height: 60px;
    }

    .dz-product-related .dz-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--dz-space-md);
    }
}

@media (max-width: 480px) {
    .dz-product-related .dz-products-grid {
        grid-template-columns: 1fr;
    }
}



/* ── Global WC Block overrides ─────────────────────── */
.wc-block-cart,
.wc-block-checkout,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
    font-family: var(--dz-font-body) !important;
}

/* ── Cart Page Title ───────────────────────────────── */
.woocommerce-cart .entry-title,
.dz-page-title-cart {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-3xl);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    margin-bottom: var(--dz-space-xl);
}

/* ── Cart Item Row ─────────────────────────────────── */
.wc-block-cart-items .wc-block-cart-items__row {
    padding: var(--dz-space-lg) 0 !important;
    border-bottom: 1px solid var(--dz-color-border-light) !important;
    transition: background var(--dz-transition-fast);
}

.wc-block-cart-items .wc-block-cart-items__row:hover {
    background: var(--dz-color-bg-soft);
}

/* Product image in cart */
.wc-block-cart-item__image img {
    border-radius: var(--dz-radius-md) !important;
    border: 1px solid var(--dz-color-border-light);
}

/* Product name */
.wc-block-cart-item__product .wc-block-components-product-name {
    font-family: var(--dz-font-heading) !important;
    font-weight: 600 !important;
    font-size: var(--dz-fs-base) !important;
    color: var(--dz-color-text-dark) !important;
    text-decoration: none !important;
    transition: color var(--dz-transition-fast);
}

.wc-block-cart-item__product .wc-block-components-product-name:hover {
    color: var(--dz-color-primary) !important;
}

/* Product price */
.wc-block-cart-item__product .wc-block-components-product-price {
    font-weight: 700;
    color: var(--dz-color-primary-dark);
}

/* ── Quantity Selector ─────────────────────────────── */
.wc-block-components-quantity-selector {
    border: 2px solid var(--dz-color-border) !important;
    border-radius: var(--dz-radius-lg) !important;
    overflow: hidden !important;
    background: var(--dz-color-white) !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: border-color var(--dz-transition-fast), box-shadow var(--dz-transition-fast);
}

.wc-block-components-quantity-selector:hover {
    border-color: var(--dz-color-primary-light) !important;
}

.wc-block-components-quantity-selector:focus-within {
    border-color: var(--dz-color-primary) !important;
    box-shadow: 0 0 0 3px rgba(136, 176, 75, 0.15) !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
    background: var(--dz-color-bg-soft) !important;
    color: var(--dz-color-text-dark) !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all var(--dz-transition-fast) !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
    background: var(--dz-color-primary) !important;
    color: var(--dz-color-white) !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__input {
    width: 40px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: var(--dz-fs-base) !important;
    color: var(--dz-color-text-dark) !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    -moz-appearance: textfield !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__input::-webkit-inner-spin-button,
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__input::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* ── Remove Item Button ────────────────────────────── */
.wc-block-cart-item__remove-link,
.wc-block-cart-item__remove-link a,
a.wc-block-cart-item__remove-link {
    color: var(--dz-color-red) !important;
    font-size: var(--dz-fs-xs) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 4px 12px !important;
    border-radius: var(--dz-radius-sm) !important;
    transition: all var(--dz-transition-fast) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
}

.wc-block-cart-item__remove-link:hover,
a.wc-block-cart-item__remove-link:hover {
    background: #fef2f2 !important;
    border-color: #fecaca !important;
    color: #dc2626 !important;
}

/* ── Cart Totals / Summary Sidebar ─────────────────── */
.wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block,
.wc-block-cart__sidebar {
    background: var(--dz-color-white) !important;
    border-radius: var(--dz-radius-xl) !important;
    padding: var(--dz-space-xl) !important;
    box-shadow: var(--dz-shadow-card) !important;
    border: 1px solid var(--dz-color-border-light) !important;
}

/* Summary heading */
.wc-block-cart__sidebar .wc-block-components-totals-wrapper:first-child {
    padding-top: 0 !important;
}

.wc-block-components-totals-item__label {
    font-family: var(--dz-font-heading) !important;
    font-weight: 600 !important;
    color: var(--dz-color-text-dark) !important;
}

.wc-block-components-totals-item__value {
    font-weight: 700 !important;
    color: var(--dz-color-text-dark) !important;
}

/* Total row - bigger */
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: var(--dz-fs-lg) !important;
    font-weight: 800 !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: var(--dz-fs-xl) !important;
    font-weight: 800 !important;
    color: var(--dz-color-primary-dark) !important;
}

/* ── Checkout Button (the star!) ───────────────────── */
.wc-block-cart__submit-button,
.wc-block-cart__submit-button a,
a.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-proceed-to-checkout-block a,
.wc-block-cart__submit-container .wc-block-components-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 18px 32px !important;
    background: var(--dz-color-primary) !important;
    color: var(--dz-color-white) !important;
    font-family: var(--dz-font-heading) !important;
    font-weight: 700 !important;
    font-size: var(--dz-fs-md) !important;
    border: none !important;
    border-radius: var(--dz-radius-xl) !important;
    cursor: pointer !important;
    transition: all var(--dz-transition-base) !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    box-shadow: 0 4px 14px rgba(136, 176, 75, 0.3) !important;
}

.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button a:hover,
a.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block a:hover,
.wc-block-cart__submit-container .wc-block-components-button:hover {
    background: var(--dz-color-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(136, 176, 75, 0.4) !important;
}

.wc-block-cart__submit-button:active,
.wc-block-components-checkout-place-order-button:active {
    transform: translateY(0) !important;
}

/* ── Coupon / Discount Section ─────────────────────── */
.wc-block-components-totals-coupon__button {
    background: var(--dz-color-primary) !important;
    color: var(--dz-color-white) !important;
    border: none !important;
    border-radius: var(--dz-radius-lg) !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    font-size: var(--dz-fs-sm) !important;
    cursor: pointer !important;
    transition: all var(--dz-transition-fast) !important;
}

.wc-block-components-totals-coupon__button:hover {
    background: var(--dz-color-primary-dark) !important;
}

.wc-block-components-totals-coupon__input .wc-block-components-text-input input {
    border: 2px solid var(--dz-color-border) !important;
    border-radius: var(--dz-radius-lg) !important;
    padding: 10px 14px !important;
    transition: border-color var(--dz-transition-fast) !important;
}

.wc-block-components-totals-coupon__input .wc-block-components-text-input input:focus {
    border-color: var(--dz-color-primary) !important;
    box-shadow: 0 0 0 3px rgba(136, 176, 75, 0.12) !important;
    outline: none !important;
}

/* ── Checkout Page Specific ────────────────────────── */

/* Checkout page wrapper */
.wc-block-checkout {
    --dz-checkout-gap: var(--dz-space-xl);
}

/* Page title (Zamówienie) */
.wc-block-checkout .wp-block-heading,
.woocommerce-checkout .entry-title {
    font-family: var(--dz-font-heading) !important;
    font-size: var(--dz-fs-3xl) !important;
    font-weight: 800 !important;
    color: var(--dz-color-text-dark) !important;
    margin-bottom: var(--dz-space-lg) !important;
}

/* ── Checkout Steps / Sections in Cards ───────────── */
.wc-block-checkout__form .wc-block-components-checkout-step {
    background: var(--dz-color-white) !important;
    border-radius: var(--dz-radius-xl) !important;
    padding: var(--dz-space-xl) var(--dz-space-2xl) !important;
    margin-bottom: var(--dz-space-lg) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid var(--dz-color-border-light) !important;
    transition: box-shadow var(--dz-transition-base) !important;
}

.wc-block-checkout__form .wc-block-components-checkout-step:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07) !important;
}

/* Step heading / title */
.wc-block-checkout .wc-block-components-checkout-step__heading,
.wc-block-checkout .wc-block-components-checkout-step__title {
    font-family: var(--dz-font-heading) !important;
    font-weight: 700 !important;
    font-size: var(--dz-fs-lg) !important;
    color: var(--dz-color-text-dark) !important;
    padding-bottom: var(--dz-space-sm) !important;
    margin-bottom: var(--dz-space-md) !important;
    border-bottom: 2px solid var(--dz-color-primary-bg) !important;
    display: flex !important;
    align-items: center !important;
    gap: var(--dz-space-sm) !important;
}

/* Step numbers */
.wc-block-checkout .wc-block-components-checkout-step__container::before {
    content: counter(checkout-step);
    counter-increment: checkout-step;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    border-radius: 50%;
    font-family: var(--dz-font-heading);
    font-weight: 700;
    font-size: var(--dz-fs-xs);
    flex-shrink: 0;
    margin-right: var(--dz-space-xs);
}

.wc-block-checkout__form {
    counter-reset: checkout-step;
}

/* Form inputs */
.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-text-input textarea,
.wc-block-checkout select {
    border: 2px solid var(--dz-color-border) !important;
    border-radius: var(--dz-radius-md) !important;
    padding: 14px 16px !important;
    font-family: var(--dz-font-body) !important;
    font-size: var(--dz-fs-base) !important;
    transition: border-color var(--dz-transition-fast), box-shadow var(--dz-transition-fast) !important;
    background: var(--dz-color-white) !important;
}

.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-text-input textarea:focus,
.wc-block-checkout select:focus {
    border-color: var(--dz-color-primary) !important;
    box-shadow: 0 0 0 3px rgba(136, 176, 75, 0.15) !important;
    outline: none !important;
}

/* Labels */
.wc-block-checkout .wc-block-components-text-input label {
    font-size: var(--dz-fs-sm) !important;
    color: var(--dz-color-text-muted) !important;
    font-weight: 500 !important;
}

/* Combobox / dropdown */
.wc-block-checkout .wc-block-components-combobox .dz-components-form-token-field__input-container {
    border: 2px solid var(--dz-color-border) !important;
    border-radius: var(--dz-radius-md) !important;
    transition: border-color var(--dz-transition-fast), box-shadow var(--dz-transition-fast) !important;
}

.wc-block-checkout .wc-block-components-combobox .dz-components-form-token-field__input-container:focus-within {
    border-color: var(--dz-color-primary) !important;
    box-shadow: 0 0 0 3px rgba(136, 176, 75, 0.15) !important;
}

/* ── Payment Method Section ───────────────────────── */
.wc-block-checkout .wc-block-components-radio-control__input {
    accent-color: var(--dz-color-primary) !important;
}

.wc-block-checkout .wc-block-components-radio-control__label {
    font-weight: 600 !important;
    color: var(--dz-color-text-dark) !important;
}

.wc-block-checkout .wc-block-components-radio-control__option {
    padding: var(--dz-space-md) !important;
    border-radius: var(--dz-radius-md) !important;
    border: 2px solid var(--dz-color-border-light) !important;
    margin-bottom: var(--dz-space-sm) !important;
    transition: all var(--dz-transition-fast) !important;
}

.wc-block-checkout .wc-block-components-radio-control__option:hover {
    border-color: var(--dz-color-primary-light) !important;
    background: var(--dz-color-primary-bg) !important;
}

.wc-block-checkout .wc-block-components-radio-control__option--checked {
    border-color: var(--dz-color-primary) !important;
    background: rgba(136, 176, 75, 0.04) !important;
    box-shadow: 0 0 0 3px rgba(136, 176, 75, 0.1) !important;
}

/* ── Stripe / Payment gateway content — remove ugly dashed border ── */

/* Nuclear: kill ALL borders and outlines on payment method containers */
.wc-block-checkout .wc-block-components-checkout-step fieldset,
.wc-block-checkout .wc-block-components-checkout-step fieldset > *,
.wc-block-checkout .wc-block-components-checkout-step fieldset > div,
.wc-block-checkout .wc-block-components-checkout-step label[class*="radio"],
.wc-block-checkout .wc-block-components-radio-control-accordion-content,
.wc-block-checkout .wc-block-components-radio-control__option-layout,
.wc-block-checkout .wc-block-checkout__payment-method label,
.wc-block-checkout .wc-block-checkout__payment-method fieldset {
    border-style: none !important;
    border: none !important;
    outline: none !important;
    outline-style: none !important;
}

/* The selected payment option label — make it look clean */
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control label,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control > div > label {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* The outer wrapper of payment method — NO borders, clean look */
.wc-block-checkout .wc-block-components-payment-method-label,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option-layout,
.wc-block-checkout .wc-block-checkout__payment-method label {
    border: none !important;
    border-style: none !important;
    outline: none !important;
    outline-style: none !important;
    border-radius: var(--dz-radius-md) !important;
}

.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option--checked,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option:has(input:checked) {
    background: rgba(136, 176, 75, 0.04) !important;
    border: none !important;
    outline: none !important;
}

/* The gateway container that wraps Stripe form */
.wc-block-checkout .wc-block-gateway-container {
    border: none !important;
    outline: none !important;
}

/* Stripe's own styling wrapper */
.wc-block-checkout .wc-stripe-elements-field,
.wc-block-checkout .wc-block-components-radio-control__option .wc-block-gateway-container {
    background: var(--dz-color-bg-soft) !important;
    border: none !important;
    border-radius: var(--dz-radius-md) !important;
    padding: var(--dz-space-md) !important;
    margin-top: var(--dz-space-sm) !important;
}

/* Stripe iframe */
.wc-block-checkout .StripeElement,
.wc-block-checkout #stripe-card-element {
    border-radius: var(--dz-radius-sm) !important;
}

/* Nuclear option: any element with inline dashed style */
.wc-block-checkout [style*="dashed"] {
    border-style: solid !important;
    border-color: var(--dz-color-border-light) !important;
}

/* Payment method icons */
.wc-block-checkout .wc-block-components-payment-method-icons {
    gap: var(--dz-space-xs) !important;
}

.wc-block-checkout .wc-block-components-payment-method-icon {
    border-radius: 4px !important;
}

/* ── Place Order Button ───────────────────────────── */
.wc-block-components-checkout-place-order-button {
    margin-top: var(--dz-space-lg) !important;
    min-height: 56px !important;
    font-size: var(--dz-fs-lg) !important;
    letter-spacing: 0.03em !important;
    max-width: 400px !important;
    border-radius: var(--dz-radius-xl) !important;
}

/* Actions row — flex layout */
.wc-block-checkout__actions {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: var(--dz-space-lg) !important;
    flex-wrap: wrap !important;
}

/* ── Order Summary in Checkout Sidebar ────────────── */
.wc-block-checkout__sidebar {
    position: sticky !important;
    top: calc(var(--dz-header-height) + var(--dz-top-bar-height) + var(--dz-space-lg)) !important;
}

.wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block,
.wc-block-checkout__sidebar {
    background: var(--dz-color-white) !important;
    border-radius: var(--dz-radius-xl) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid var(--dz-color-border-light) !important;
    padding: var(--dz-space-lg) !important;
}

/* Order summary heading */
.wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary__button-text,
.wc-block-checkout__sidebar .wc-block-components-panel__button span {
    font-family: var(--dz-font-heading) !important;
    font-weight: 700 !important;
    font-size: var(--dz-fs-md) !important;
    color: var(--dz-color-text-dark) !important;
}

/* Product items — compact */
.wc-block-checkout__sidebar .wc-block-components-order-summary-item {
    padding: var(--dz-space-sm) 0 !important;
    border-bottom: 1px solid var(--dz-color-border-light) !important;
}

.wc-block-checkout__sidebar .wc-block-components-order-summary-item:last-child {
    border-bottom: none !important;
}

/* Product image — smaller */
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__image {
    width: 48px !important;
    min-width: 48px !important;
}

.wc-block-checkout__sidebar .wc-block-components-order-summary-item__image img {
    border-radius: var(--dz-radius-sm) !important;
    border: 1px solid var(--dz-color-border-light) !important;
    width: 48px !important;
    height: 48px !important;
    object-fit: cover !important;
}

/* Product name — truncate to 2 lines */
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-components-product-name {
    font-size: var(--dz-fs-sm) !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: var(--dz-color-text-dark) !important;
}

/* Hide long product descriptions / metadata in order summary */
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__description > *:not(.wc-block-components-product-name):not(.wc-block-components-product-price):not(.wc-block-components-product-metadata) {
    display: none !important;
}

/* Product metadata — smaller, subtle */
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-components-product-metadata {
    font-size: 11px !important;
    color: var(--dz-color-text-muted) !important;
    margin-top: 2px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Short description text — hide it */
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-components-product-metadata__description {
    display: none !important;
}

/* Price in product rows — compact */
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__total-price {
    font-size: var(--dz-fs-sm) !important;
    font-weight: 700 !important;
    color: var(--dz-color-text-dark) !important;
    white-space: nowrap !important;
}

.wc-block-checkout__sidebar .wc-block-components-order-summary-item__individual-price {
    font-size: 11px !important;
    color: var(--dz-color-text-muted) !important;
}

/* Quantity badge — smaller */
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__quantity {
    min-width: 20px !important;
    min-height: 20px !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 10px !important;
    line-height: 20px !important;
}

/* ── Totals section ──────────────────────────────── */
.wc-block-checkout__sidebar .wc-block-components-totals-wrapper {
    padding: var(--dz-space-xs) 0 !important;
}

/* Kwota row */
.wc-block-checkout__sidebar .wc-block-components-totals-item:not(.wc-block-components-totals-footer-item) .wc-block-components-totals-item__label {
    font-size: var(--dz-fs-sm) !important;
    font-weight: 500 !important;
    color: var(--dz-color-text-muted) !important;
}

.wc-block-checkout__sidebar .wc-block-components-totals-item:not(.wc-block-components-totals-footer-item) .wc-block-components-totals-item__value {
    font-size: var(--dz-fs-sm) !important;
    font-weight: 600 !important;
}

/* Total row — prominent */
.wc-block-checkout__sidebar .wc-block-components-totals-footer-item {
    background: var(--dz-color-primary-bg) !important;
    border-radius: var(--dz-radius-md) !important;
    padding: var(--dz-space-md) var(--dz-space-lg) !important;
    margin-top: var(--dz-space-sm) !important;
}

.wc-block-checkout__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: var(--dz-fs-md) !important;
    font-weight: 800 !important;
    color: var(--dz-color-text-dark) !important;
}

.wc-block-checkout__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: var(--dz-fs-xl) !important;
    font-weight: 800 !important;
    color: var(--dz-color-primary-dark) !important;
}

/* Coupon section in checkout */
.wc-block-checkout__sidebar .wc-block-components-totals-coupon .wc-block-components-panel__button span {
    font-size: var(--dz-fs-sm) !important;
    font-weight: 600 !important;
}

/* ── Checkbox & Terms ─────────────────────────────── */
.wc-block-checkout .wc-block-checkout__terms,
.wc-block-checkout .wc-block-components-checkbox {
    font-size: var(--dz-fs-sm) !important;
    color: var(--dz-color-text-light) !important;
    line-height: 1.6 !important;
}

.wc-block-checkout .wc-block-components-checkbox__input:checked {
    accent-color: var(--dz-color-primary) !important;
}

/* ══════════════════════════════════════════════
   SHIPPING OPTIONS — Premium card-style design
   ══════════════════════════════════════════════ */

/* Package container — clean */
.wc-block-components-shipping-rates-control__package {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide package title */
.wc-block-components-shipping-rates-control__package .wc-block-components-title {
    display: none !important;
}

/* Radio control wrapper — remove all default styling */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
}

/* Kill WooCommerce's built-in highlight borders */
.wc-block-components-radio-control--highlight-checked::after,
.wc-block-components-radio-control--highlight-checked::before,
.wc-block-components-radio-control .wc-block-components-radio-control__option::after {
    display: none !important;
    content: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* ── Each option — premium card ────────────── */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__option {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 16px 20px !important;
    margin-bottom: 10px !important;
    border: 2px solid #e4e8dc !important;
    border-radius: 14px !important;
    background: #fff !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
}

.wc-block-components-shipping-rates-control .wc-block-components-radio-control__option:last-child {
    margin-bottom: 0 !important;
}

/* Hover */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__option:hover {
    border-color: rgba(136, 176, 75, 0.5) !important;
    background: rgba(136, 176, 75, 0.02) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 14px rgba(136, 176, 75, 0.08) !important;
}

/* Selected */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__option-checked {
    border-color: #88b04b !important;
    background: linear-gradient(135deg, rgba(136,176,75,0.03), rgba(136,176,75,0.07)) !important;
    box-shadow: 0 0 0 1px #88b04b, 0 4px 16px rgba(136,176,75,0.1) !important;
}

/* ── Custom radio circle ───────────────────── */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__input {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border: 2px solid #c5cebc !important;
    border-radius: 50% !important;
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    top: 0 !important;
}

.wc-block-components-shipping-rates-control .wc-block-components-radio-control__input:checked {
    border-color: #88b04b !important;
}

.wc-block-components-shipping-rates-control .wc-block-components-radio-control__input:checked::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 10px !important;
    height: 10px !important;
    background: #88b04b !important;
    border-radius: 50% !important;
    display: block !important;
}

/* ── Option layout — icon + labels ─────────── */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__option-layout {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex: 1 !important;
    min-width: 0 !important;
    gap: 12px !important;
}

/* Truck icon via ::before on option-layout */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__option-layout::before {
    content: '' !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 10px !important;
    background-color: rgba(136, 176, 75, 0.12) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a6b2a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E") !important;
    background-size: 20px 20px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    flex-shrink: 0 !important;
}

/* Labels container */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__label-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    flex: 1 !important;
    gap: 12px !important;
}

/* Method name */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__label {
    font-family: var(--dz-font-heading) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #1a2e05 !important;
    letter-spacing: 0.01em !important;
}

/* Price — pill badge */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__secondary-label {
    font-family: var(--dz-font-heading) !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    color: #3d5a1e !important;
    white-space: nowrap !important;
    background: rgba(136, 176, 75, 0.12) !important;
    padding: 5px 14px !important;
    border-radius: 20px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    width: auto !important;
    max-width: fit-content !important;
}

/* ── Shipping step — clean ─────────────────── */
.wp-block-woocommerce-checkout-shipping-methods-block .wc-block-components-checkout-step__container {
    padding-bottom: var(--dz-space-sm) !important;
}
.wc-block-checkout .wc-block-checkout__terms a {
    color: var(--dz-color-primary) !important;
    font-weight: 600 !important;
}

.wc-block-checkout .wc-block-checkout__terms a:hover {
    color: var(--dz-color-primary-dark) !important;
    text-decoration: underline !important;
}

/* ── Return to Cart Link ──────────────────────────── */
.wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button {
    font-family: var(--dz-font-heading) !important;
    font-weight: 600 !important;
    color: var(--dz-color-text-muted) !important;
    font-size: var(--dz-fs-sm) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: var(--dz-space-xs) !important;
    transition: color var(--dz-transition-fast) !important;
}

.wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button:hover {
    color: var(--dz-color-primary) !important;
}

/* ── Empty Cart State ──────────────────────────────── */
.wc-block-cart--is-empty .wc-block-cart__empty-cart__title,
.dz-cart-empty {
    font-family: var(--dz-font-heading) !important;
    font-size: var(--dz-fs-2xl) !important;
    font-weight: 700 !important;
    color: var(--dz-color-text-dark) !important;
    text-align: center;
    margin-bottom: var(--dz-space-lg);
}

.wc-block-cart--is-empty a.wc-block-components-button,
a.wc-block-components-button.wc-block-cart__return-to-shop-button {
    background: var(--dz-color-primary) !important;
    color: var(--dz-color-white) !important;
    border-radius: var(--dz-radius-xl) !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    font-size: var(--dz-fs-base) !important;
    text-decoration: none !important;
}

/* ── Shipping / Express / Notices ──────────────────── */
.wc-block-components-notice-banner {
    border-radius: var(--dz-radius-md) !important;
    font-family: var(--dz-font-body) !important;
}

.wc-block-components-notice-banner.is-error {
    border-color: var(--dz-color-red) !important;
}

.wc-block-components-notice-banner.is-success {
    border-color: var(--dz-color-primary) !important;
}

/* ── Column headers (PRODUKT / ŁĄCZNIE) ────────────── */
.wc-block-cart .wc-block-cart-items__header span {
    font-family: var(--dz-font-heading) !important;
    font-weight: 700 !important;
    font-size: var(--dz-fs-xs) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: var(--dz-color-text-muted) !important;
}

/* ── Item total price (rightmost column) ───────────── */
.wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-product-price {
    font-weight: 800 !important;
    font-size: var(--dz-fs-md) !important;
    color: var(--dz-color-text-dark) !important;
}

/* ── Desktop optimizations (wide screens) ─────────── */
@media (min-width: 1024px) {
    /* Checkout step cards — tighter padding desktop */
    .wc-block-checkout__form .wc-block-components-checkout-step {
        padding: var(--dz-space-lg) var(--dz-space-xl) !important;
    }

    /* Place Order — limited width */
    .wc-block-components-checkout-place-order-button {
        max-width: 400px !important;
    }
}

/* ── Responsive Cart & Checkout ───────────────────── */
@media (max-width: 768px) {
    .wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block,
    .wc-block-cart__sidebar {
        border-radius: var(--dz-radius-lg) !important;
        padding: var(--dz-space-lg) !important;
    }

    .wc-block-cart__submit-button,
    .wc-block-cart__submit-button a,
    .wc-block-cart__submit-container .wc-block-components-button {
        padding: 16px 24px !important;
        font-size: var(--dz-fs-base) !important;
        border-radius: var(--dz-radius-lg) !important;
    }

    .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
        width: 32px !important;
        height: 32px !important;
    }

    .wc-block-checkout__form .wc-block-components-checkout-step {
        padding: var(--dz-space-lg) !important;
        border-radius: var(--dz-radius-lg) !important;
    }

    .wc-block-checkout__sidebar {
        position: static !important;
    }

    .wc-block-components-checkout-place-order-button {
        max-width: 100% !important;
    }
}

/* ══════════════════════════════════════════════
   STICKY MOBILE CART BAR
   ══════════════════════════════════════════════ */
.dz-sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease;
    pointer-events: none;
}

.dz-sticky-cart-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.dz-sticky-cart-bar__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    margin: 0 12px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--dz-radius-xl);
    box-shadow: 0 -4px 32px rgba(26, 46, 5, 0.15),
                0 2px 8px rgba(26, 46, 5, 0.08);
    border: 1px solid rgba(136, 176, 75, 0.15);
}

.dz-sticky-cart-bar__info {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.dz-sticky-cart-bar__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    animation: cart-bounce 0.5s ease;
}

@keyframes cart-bounce {
    0% { transform: scale(0.5); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.dz-sticky-cart-bar__text {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    min-width: 0;
}

.dz-sticky-cart-bar__title {
    font-family: var(--dz-font-heading);
    font-weight: 700;
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-primary-dark);
    white-space: nowrap;
}

.dz-sticky-cart-bar__details {
    font-size: 12px;
    color: var(--dz-color-text-muted);
    white-space: nowrap;
}

.dz-sticky-cart-bar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.dz-sticky-cart-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 11px 16px;
    border-radius: var(--dz-radius-lg);
    font-family: var(--dz-font-heading);
    font-weight: 600;
    font-size: var(--dz-fs-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--dz-transition-fast);
}

.dz-sticky-cart-bar__btn--cart {
    background: var(--dz-color-bg-alt);
    color: var(--dz-color-text-dark);
}

.dz-sticky-cart-bar__btn--cart:hover {
    background: var(--dz-color-border);
}

.dz-sticky-cart-bar__btn--checkout {
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    box-shadow: 0 2px 12px rgba(136, 176, 75, 0.35);
}

.dz-sticky-cart-bar__btn--checkout:hover {
    background: var(--dz-color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(136, 176, 75, 0.45);
}

.dz-sticky-cart-bar__close {
    position: absolute;
    top: -8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--dz-color-white);
    border: 1px solid var(--dz-color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--dz-color-text-muted);
    cursor: pointer;
    transition: all var(--dz-transition-fast);
    line-height: 1;
    padding: 0;
}

.dz-sticky-cart-bar__close:hover {
    background: var(--dz-color-red);
    color: var(--dz-color-white);
    border-color: var(--dz-color-red);
}

/* When sticky bar is visible — add body padding so content isn't hidden */
body:has(.dz-sticky-cart-bar.is-visible) {
    padding-bottom: 110px;
}

@media (max-width: 400px) {
    body:has(.dz-sticky-cart-bar.is-visible) {
        padding-bottom: 120px;
    }
}

/* Hide on desktop — only show on mobile/tablet */
@media (min-width: 769px) {
    .dz-sticky-cart-bar {
        display: none !important;
    }

    body:has(.dz-sticky-cart-bar.is-visible) {
        padding-bottom: 0;
    }
}

/* ═══════════════════════════════════════════════
   LEGAL / STATIC PAGE STYLES — Prose Typography
   ═══════════════════════════════════════════════ */

/* ── Page hero section ─────────────────────── */
.dz-page-hero {
    padding: 32px 0 16px;
}

.dz-page-hero__title {
    font-family: var(--dz-font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1a2e05;
    margin: 0;
    line-height: 1.2;
}

/* ── Main content card ─────────────────────── */
.dz-page-content {
    padding: 0 0 60px;
}

.dz-page-content > .dz-container {
    background: #fff;
    border-radius: 20px;
    padding: clamp(28px, 5vw, 56px);
    box-shadow: 0 2px 20px rgba(26, 46, 5, 0.06);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 15.5px;
    color: #2d3a1f;
}

/* ── Cart & Checkout — full width, no card ── */
.dz-page-content--cart > .dz-container,
.dz-page-content--checkout > .dz-container {
    max-width: 100%;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0 clamp(16px, 3vw, 40px);
    line-height: normal;
    font-size: inherit;
}

.dz-page-content--cart h2,
.dz-page-content--checkout h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin: 0 0 16px;
}

.dz-page-content--cart h2::after,
.dz-page-content--checkout h2::after {
    display: none;
}

/* ── Headings inside prose ─────────────────── */
.dz-page-content h2 {
    font-family: var(--dz-font-heading);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: #1a2e05;
    margin: 44px 0 16px;
    padding-bottom: 12px;
    border-bottom: 3px solid rgba(136, 176, 75, 0.25);
    position: relative;
    line-height: 1.3;
}

.dz-page-content h2:first-child {
    margin-top: 0;
}

.dz-page-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 60px;
    height: 3px;
    background: #88b04b;
    border-radius: 2px;
}

.dz-page-content h3 {
    font-family: var(--dz-font-heading);
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 700;
    color: #2c4a12;
    margin: 32px 0 12px;
    line-height: 1.4;
}

/* ── Paragraphs ────────────────────────────── */
.dz-page-content p {
    margin: 0 0 16px;
    line-height: 1.8;
}

.dz-page-content p:last-child {
    margin-bottom: 0;
}

/* italic date at bottom */
.dz-page-content em {
    color: #6b7a5a;
    font-size: 14px;
}

/* ── Links ─────────────────────────────────── */
.dz-page-content a {
    color: #4a8c1c;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(74, 140, 28, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.dz-page-content a:hover {
    color: #2c6400;
    text-decoration-color: #2c6400;
}

/* ── Lists (ul, ol) ────────────────────────── */
.dz-page-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.dz-page-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.dz-page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #88b04b;
    border-radius: 50%;
}

.dz-page-content ol {
    padding-left: 0;
    margin: 0 0 20px;
    counter-reset: legal-counter;
    list-style: none;
}

.dz-page-content ol li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    line-height: 1.7;
    counter-increment: legal-counter;
}

.dz-page-content ol li::before {
    content: counter(legal-counter);
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    background: rgba(136, 176, 75, 0.12);
    color: #3d5a1e;
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Strong inside lists */
.dz-page-content li strong {
    color: #1a2e05;
}

/* ── Tables ─────────────────────────────────── */
.dz-page-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0 28px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e4e8dc;
    font-size: 15px;
}

.dz-page-content thead th {
    background: linear-gradient(135deg, #3d5a1e 0%, #4a6b2a 100%);
    color: #fff;
    font-family: var(--dz-font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: left;
    border: none;
}

.dz-page-content tbody td {
    padding: 13px 20px;
    border-bottom: 1px solid #eef1e8;
    vertical-align: top;
}

.dz-page-content tbody tr:last-child td {
    border-bottom: none;
}

.dz-page-content tbody tr:nth-child(even) {
    background: rgba(136, 176, 75, 0.04);
}

.dz-page-content tbody tr:hover {
    background: rgba(136, 176, 75, 0.08);
}

.dz-page-content td strong {
    color: #1a2e05;
    font-weight: 700;
    white-space: nowrap;
}

/* ── Horizontal rule ───────────────────────── */
.dz-page-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, rgba(136, 176, 75, 0.3) 0%, rgba(136, 176, 75, 0.05) 100%);
    margin: 40px 0;
    border-radius: 2px;
}

/* ── Blockquote ────────────────────────────── */
.dz-page-content blockquote {
    border-left: 4px solid #88b04b;
    background: rgba(136, 176, 75, 0.06);
    padding: 16px 24px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #3d5a1e;
}

/* ── Google Maps iframe ────────────────────── */
.dz-page-content iframe {
    border-radius: 16px;
    margin: 24px 0 8px;
    box-shadow: 0 4px 20px rgba(26, 46, 5, 0.08);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
    .dz-page-content > .dz-container {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .dz-page-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dz-page-content h2 {
        margin-top: 32px;
    }
}


/* end of main styles */

/* ══════════════════════════════════════════════════════
   LEGAL PAGES — reusable components
   Used on: /metody-platnosci/, /zwroty/, /dostawa/,
            /regulamin/, /polityka-prywatnosci/, /kontakt/
   ══════════════════════════════════════════════════════ */

.dz-legal {
    max-width: 960px;
    margin: 0 auto;
}

.dz-legal > * + * {
    margin-top: var(--dz-space-xl);
}

/* Neutralise empty <p> wrappers injected by WordPress wpautop */
.dz-legal p:empty {
    display: none;
}

/* ── Intro card (hero для легал-страницы) ─────────── */
.dz-legal-intro {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: var(--dz-space-lg);
    align-items: center;
    background: linear-gradient(135deg, var(--dz-color-primary-bg) 0%, var(--dz-color-primary-subtle) 100%);
    border: 1px solid var(--dz-color-primary-subtle);
    border-radius: var(--dz-radius-2xl);
    padding: var(--dz-space-xl);
}

.dz-legal-intro__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dz-color-white);
    border-radius: var(--dz-radius-xl);
    box-shadow: var(--dz-shadow-card);
    color: var(--dz-color-primary);
}

.dz-legal-intro__icon svg {
    width: 36px;
    height: 36px;
}

.dz-legal-intro__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xl);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    line-height: 1.25;
    margin: 0 0 6px;
}

.dz-legal-intro__lead {
    font-size: var(--dz-fs-md);
    color: var(--dz-color-text-light);
    line-height: 1.55;
    margin: 0;
}

/* ── Section heading ─────────────────────────────── */
.dz-legal-section__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xl);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 var(--dz-space-lg);
}

.dz-legal-section__title svg {
    width: 24px;
    height: 24px;
    color: var(--dz-color-primary);
    flex-shrink: 0;
}

.dz-legal-section__sub {
    font-size: var(--dz-fs-md);
    color: var(--dz-color-text-light);
    margin: 0 0 var(--dz-space-lg);
}

/* ── Card grid (2-3 colonn) ──────────────────────── */
.dz-legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--dz-space-lg);
}

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

.dz-legal-card {
    background: var(--dz-color-white);
    border: 1px solid var(--dz-color-border-light);
    border-radius: var(--dz-radius-xl);
    padding: var(--dz-space-lg);
    box-shadow: var(--dz-shadow-card);
    transition: transform var(--dz-transition-base), box-shadow var(--dz-transition-base);
}

.dz-legal-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--dz-shadow-hover);
}

.dz-legal-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--dz-radius-md);
    background: var(--dz-color-primary-bg);
    color: var(--dz-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--dz-space-md);
}

.dz-legal-card__icon svg {
    width: 26px;
    height: 26px;
}

.dz-legal-card__icon--orange { background: #FEF1E3; color: var(--dz-color-accent-orange); }
.dz-legal-card__icon--blue   { background: #E7F0FB; color: var(--dz-color-accent-blue); }
.dz-legal-card__icon--pink   { background: #FCE7ED; color: var(--dz-color-accent-pink); }
.dz-legal-card__icon--purple { background: #EBEEFA; color: var(--dz-color-accent-purple); }

.dz-legal-card__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-md);
    font-weight: 700;
    color: var(--dz-color-text-dark);
    margin: 0 0 6px;
    line-height: 1.3;
}

.dz-legal-card__text {
    font-size: var(--dz-fs-sm);
    color: var(--dz-color-text-light);
    line-height: 1.55;
    margin: 0;
}

.dz-legal-card__text a {
    color: var(--dz-color-primary);
    font-weight: 600;
}

.dz-legal-card__text a:hover {
    text-decoration: underline;
}

/* ── Steps (нумерованные шаги) ───────────────────── */
.dz-legal-steps {
    display: grid;
    gap: var(--dz-space-md);
    counter-reset: step;
}

.dz-legal-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: var(--dz-space-md);
    align-items: start;
    background: var(--dz-color-white);
    border: 1px solid var(--dz-color-border-light);
    border-radius: var(--dz-radius-lg);
    padding: var(--dz-space-md) var(--dz-space-lg);
    box-shadow: var(--dz-shadow-sm);
}

.dz-legal-step__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dz-color-primary);
    color: var(--dz-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--dz-fs-md);
    flex-shrink: 0;
}

.dz-legal-step__body strong {
    color: var(--dz-color-text-dark);
    font-weight: 700;
}

.dz-legal-step__body {
    font-size: var(--dz-fs-base);
    color: var(--dz-color-text-light);
    line-height: 1.55;
    padding-top: 4px;
}

/* ── Callout (info/success/warning) ──────────────── */
.dz-legal-callout {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: var(--dz-space-md);
    align-items: start;
    border-radius: var(--dz-radius-lg);
    padding: var(--dz-space-md) var(--dz-space-lg);
    border: 1px solid;
}

.dz-legal-callout svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.dz-legal-callout__text {
    font-size: var(--dz-fs-sm);
    line-height: 1.55;
    margin: 0;
}

.dz-legal-callout__text strong {
    font-weight: 700;
}

.dz-legal-callout--info {
    background: #E7F0FB;
    border-color: #BED5F0;
    color: #2B5D94;
}

.dz-legal-callout--success {
    background: var(--dz-color-primary-bg);
    border-color: var(--dz-color-primary-subtle);
    color: var(--dz-color-primary-dark);
}

.dz-legal-callout--warning {
    background: #FEF1E3;
    border-color: #F9DAB5;
    color: #8E5315;
}

/* ── Shipping / pricing table ────────────────────── */
.dz-legal-shipping-table {
    background: var(--dz-color-white);
    border: 1px solid var(--dz-color-border-light);
    border-radius: var(--dz-radius-xl);
    overflow: hidden;
    box-shadow: var(--dz-shadow-card);
}

.dz-legal-shipping-table table {
    width: 100%;
    border-collapse: collapse;
}

.dz-legal-shipping-table th,
.dz-legal-shipping-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: var(--dz-fs-sm);
}

.dz-legal-shipping-table thead {
    background: var(--dz-color-bg-alt);
}

.dz-legal-shipping-table th {
    font-weight: 700;
    color: var(--dz-color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--dz-fs-xs);
}

.dz-legal-shipping-table tbody tr {
    border-top: 1px solid var(--dz-color-border-light);
}

.dz-legal-shipping-table tbody tr:first-child {
    border-top: none;
}

.dz-legal-shipping-table .dz-legal-shipping-method {
    font-weight: 600;
    color: var(--dz-color-text-dark);
}

.dz-legal-shipping-table .dz-legal-shipping-method svg {
    width: 18px;
    height: 18px;
    vertical-align: -4px;
    margin-right: 8px;
    color: var(--dz-color-primary);
}

.dz-legal-shipping-table .dz-legal-shipping-price {
    font-weight: 700;
    color: var(--dz-color-text-dark);
    white-space: nowrap;
}

/* ── CTA footer ──────────────────────────────────── */
.dz-legal-cta {
    background: var(--dz-color-bg-dark);
    color: var(--dz-color-white);
    border-radius: var(--dz-radius-2xl);
    padding: var(--dz-space-2xl);
    text-align: center;
}

.dz-legal-cta__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-xl);
    font-weight: 800;
    color: var(--dz-color-white);
    margin: 0 0 10px;
}

.dz-legal-cta__text {
    font-size: var(--dz-fs-md);
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 var(--dz-space-lg);
}

.dz-legal-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--dz-space-md);
    justify-content: center;
}

.dz-legal-cta .dz-btn--white {
    background: var(--dz-color-white);
    color: var(--dz-color-text-dark);
}

.dz-legal-cta .dz-btn--ghost {
    background: transparent;
    color: var(--dz-color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 10px 22px;
    border-radius: var(--dz-radius-full);
    font-weight: 600;
    font-size: var(--dz-fs-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--dz-transition-fast), border-color var(--dz-transition-fast);
}

.dz-legal-cta .dz-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.dz-legal-cta .dz-btn svg {
    width: 18px;
    height: 18px;
}

/* ── Regulamin / polityka — ordered list sections ── */
.dz-legal-articles {
    display: grid;
    gap: var(--dz-space-md);
}

.dz-legal-article {
    background: var(--dz-color-white);
    border: 1px solid var(--dz-color-border-light);
    border-radius: var(--dz-radius-xl);
    padding: var(--dz-space-lg) var(--dz-space-xl);
    box-shadow: var(--dz-shadow-sm);
}

.dz-legal-article__title {
    font-family: var(--dz-font-heading);
    font-size: var(--dz-fs-md);
    font-weight: 800;
    color: var(--dz-color-text-dark);
    margin: 0 0 var(--dz-space-md);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.dz-legal-article__num {
    color: var(--dz-color-primary);
    font-weight: 800;
    font-size: var(--dz-fs-md);
}

.dz-legal-article__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.dz-legal-article__list li {
    position: relative;
    padding-left: 24px;
    font-size: var(--dz-fs-base);
    color: var(--dz-color-text-light);
    line-height: 1.55;
}

.dz-legal-article__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dz-color-primary);
    opacity: 0.4;
}

.dz-legal-article__list li strong {
    color: var(--dz-color-text-dark);
}

.dz-legal-article__list li a {
    color: var(--dz-color-primary);
    font-weight: 600;
}

.dz-legal-article__list li a:hover {
    text-decoration: underline;
}

/* ── Badges row ─────────────────────────────────── */
.dz-legal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--dz-space-md);
    justify-content: center;
    padding: var(--dz-space-md) 0;
}

.dz-legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dz-color-white);
    border: 1px solid var(--dz-color-border-light);
    border-radius: var(--dz-radius-full);
    padding: 8px 16px;
    font-size: var(--dz-fs-sm);
    font-weight: 600;
    color: var(--dz-color-text-dark);
    box-shadow: var(--dz-shadow-sm);
}

.dz-legal-badge svg {
    width: 18px;
    height: 18px;
    color: var(--dz-color-primary);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
    .dz-legal-intro {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--dz-space-lg);
    }
    .dz-legal-intro__icon {
        margin: 0 auto;
    }
    .dz-legal-grid--2 {
        grid-template-columns: 1fr;
    }
    .dz-legal-cta {
        padding: var(--dz-space-xl) var(--dz-space-lg);
    }
    .dz-legal-article {
        padding: var(--dz-space-md);
    }
    .dz-legal-step {
        padding: var(--dz-space-md);
    }
    .dz-legal-shipping-table th,
    .dz-legal-shipping-table td {
        padding: 10px 12px;
    }
}
/* ═══════════════════════════════════════
   HERO — Banner variant (new front-page)
   ═══════════════════════════════════════ */
.dz-hero--banner {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #1a2e2a;
}
/* Картинка-фон полная ширина + затемняющий gradient-overlay для читаемости */
.dz-hero--banner .dz-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(10, 30, 26, 0.82) 0%, rgba(10, 30, 26, 0.65) 40%, rgba(10, 30, 26, 0.25) 75%, rgba(10, 30, 26, 0.10) 100%),
        url('../img/hero/hero-bg.jpg');
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: cover, cover;
    pointer-events: none;
}
.dz-hero--banner .dz-hero__inner {
    position: relative;
    z-index: 1;
    padding: clamp(80px, 11vw, 160px) var(--dz-space-md) clamp(80px, 9vw, 120px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 520px;
}
.dz-hero--banner .dz-hero__content {
    max-width: 620px;
    text-align: left;
    margin: 0;
}
@keyframes dz-hero-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(122, 232, 200, 0.25); }
    50%      { box-shadow: 0 0 0 8px rgba(122, 232, 200, 0.06); }
}
@media (max-width: 900px) {
    .dz-hero--banner .dz-hero__bg {
        background-image:
            linear-gradient(180deg, rgba(10, 30, 26, 0.55) 0%, rgba(10, 30, 26, 0.78) 100%),
            url('../img/hero/hero-bg.jpg');
        background-position: center, center 30%;
    }
    .dz-hero--banner .dz-hero__inner {
        justify-content: center;
        min-height: 440px;
    }
    .dz-hero--banner .dz-hero__content {
        text-align: center;
        margin: 0 auto;
        max-width: 720px;
    }
}
.dz-hero--banner .dz-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.dz-hero--banner .dz-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #7AE8C8;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(122, 232, 200, 0.25);
    animation: dz-hero-dot-pulse 2s ease-in-out infinite;
}
@keyframes dz-hero-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(122, 232, 200, 0.25); }
    50%      { box-shadow: 0 0 0 8px rgba(122, 232, 200, 0.06); }
}
.dz-hero--banner .dz-hero__title {
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 22px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.dz-hero--banner .dz-hero__title--gradient {
    background: linear-gradient(135deg, #7AE8C8 0%, #C5F7E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.dz-hero--banner .dz-hero__subtitle {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 32px;
    max-width: 540px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}
.dz-hero--banner .dz-hero__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
@media (max-width: 900px) {
    .dz-hero--banner .dz-hero__subtitle { margin: 0 auto 32px; max-width: 620px; }
    .dz-hero--banner .dz-hero__actions { justify-content: center; }
}

/* Trust strip under hero */
.dz-hero__strip {
    position: relative;
    background: #fff;
    border-top: 1px solid var(--dz-color-border-light);
    border-bottom: 1px solid var(--dz-color-border-light);
}
.dz-hero__strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
}
.dz-hero__strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    font-size: 13.5px;
    color: var(--dz-color-text-light);
    font-weight: 500;
    border-right: 1px solid var(--dz-color-border-light);
    text-align: left;
}
.dz-hero__strip-item:last-child { border-right: 0; }
.dz-hero__strip-item svg {
    color: var(--dz-color-primary);
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .dz-hero__strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .dz-hero__strip-item {
        border-right: 0;
        border-bottom: 1px solid var(--dz-color-border-light);
        padding: 14px 12px;
        font-size: 12.5px;
    }
    .dz-hero__strip-item:nth-child(odd) {
        border-right: 1px solid var(--dz-color-border-light);
    }
    .dz-hero__strip-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}
@media (max-width: 540px) {
    .dz-hero__strip-inner {
        grid-template-columns: 1fr;
    }
    .dz-hero__strip-item {
        border-right: 0 !important;
        border-bottom: 1px solid var(--dz-color-border-light);
    }
    .dz-hero__strip-item:last-child { border-bottom: 0; }
}
