/* ===== ZÁMKAŘSTVÍ BUBÁK - Main Stylesheet ===== */

/* --- CSS Variables --- */
:root {
    --primary: #1e4d6e;
    --primary-hover: #173d58;
    --primary-dark: #132f45;
    --primary-light: #e8f0f6;
    --primary-rgb: 30, 77, 110;

    --accent: #f5c518;
    --accent-hover: #e0b215;
    --accent-light: #fef9e7;
    --accent-rgb: 245, 197, 24;

    --success: #22c55e;
    --error: #ef4444;

    --bg: #f8fafc;
    --bg-card: #ffffff;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #ffffff;

    --border: #e2e8f0;
    --border-light: #f1f5f9;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --shadow-lg: 0 12px 28px rgba(0,0,0,.1), 0 4px 10px rgba(0,0,0,.05);
    --shadow-xl: 0 24px 48px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);
    --shadow-card: 0 2px 8px rgba(0,0,0,.06), 0 0 1px rgba(0,0,0,.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --nav-height: 72px;
    --topbar-height: 40px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

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

a:hover {
    color: var(--accent);
}

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

main {
    overflow-x: hidden;
}

ul, ol {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }

/* --- Container --- */
.zb-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.zb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.zb-btn--primary {
    background: var(--primary);
    color: var(--text-light);
}

.zb-btn--primary:hover {
    background: var(--primary-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.zb-btn--accent {
    background: var(--accent);
    color: var(--text);
}

.zb-btn--accent:hover {
    background: var(--accent-hover);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}

.zb-btn--outline {
    background: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.zb-btn--outline:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.zb-btn--sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.zb-btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

/* --- Top Bar --- */
.zb-topbar {
    background: var(--primary);
    color: var(--text-light);
    font-size: 0.82rem;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 101;
}

.zb-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.zb-topbar-left,
.zb-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zb-topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.85);
    transition: color var(--transition-fast);
}

a.zb-topbar-item:hover {
    color: var(--accent);
}

.zb-topbar-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Open/Closed Indicator */
.zb-open-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.zb-open-indicator.zb-open {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.zb-open-indicator.zb-closed {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.zb-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.zb-open .zb-indicator-dot {
    background: var(--success);
    animation: zbPulse 2s infinite;
}

.zb-closed .zb-indicator-dot {
    background: var(--error);
}

/* --- Navigation --- */
.zb-nav {
    background: var(--bg-card);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--transition-base), height var(--transition-base);
    border-bottom: 1px solid var(--border);
}

.zb-nav.scrolled {
    box-shadow: var(--shadow-md);
    height: 60px;
}

.zb-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zb-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    flex-shrink: 0;
}

.zb-nav-logo img {
    height: 42px;
    width: auto;
    transition: height var(--transition-base);
}

.scrolled .zb-nav-logo img {
    height: 34px;
}

.zb-nav-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.zb-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.zb-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.93rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.zb-nav-link:hover,
.zb-nav-link.zb-active {
    color: var(--primary);
    background: var(--primary-light);
}

.zb-nav-link.zb-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Dropdown */
.zb-nav-dropdown {
    position: relative;
}

.zb-dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.zb-nav-dropdown:hover .zb-dropdown-arrow,
.zb-nav-dropdown.open .zb-dropdown-arrow {
    transform: rotate(180deg);
}

.zb-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 16px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 200;
}

.zb-nav-dropdown:hover .zb-dropdown-menu,
.zb-nav-dropdown.open .zb-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.zb-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.zb-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.zb-dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.zb-dropdown-item.zb-active {
    background: var(--primary);
    color: var(--text-light);
}

.zb-dropdown-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
}

.zb-dropdown-icon svg {
    width: 100%;
    height: 100%;
}

/* Hamburger */
.zb-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.zb-hamburger:hover {
    background: var(--primary-light);
}

.zb-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.zb-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.zb-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.zb-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Section Styles --- */
.zb-section {
    padding: 80px 0;
}

.zb-section--alt {
    background: var(--bg-card);
}

.zb-section--dark {
    background: var(--primary);
    color: var(--text-light);
}

.zb-section--dark h2,
.zb-section--dark h3,
.zb-section--dark h4 {
    color: var(--text-light);
}

.zb-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.zb-section-header h2 {
    margin-bottom: 12px;
}

.zb-section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.zb-section--dark .zb-section-header p {
    color: rgba(255,255,255,.7);
}

.zb-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 12px;
    background: var(--accent-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
}

/* --- Hero Section --- */
.zb-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, #1e4a6e 70%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    animation: zbGradientShift 20s ease infinite;
    color: var(--text-light);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}

@keyframes zbGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.zb-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: zbFloat 12s ease-in-out infinite;
}

.zb-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: zbFloat 15s ease-in-out infinite reverse;
}

.zb-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zb-hero-content {
    max-width: 560px;
}

.zb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.85);
    letter-spacing: 0.02em;
}

.zb-hero-badge svg {
    color: var(--accent);
}

.zb-hero h1 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 2px 12px rgba(0,0,0,.2);
    line-height: 1.15;
}

.zb-hero h1 span {
    color: var(--accent);
    text-shadow: 0 2px 16px rgba(var(--accent-rgb), 0.3);
}

.zb-hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 32px;
    line-height: 1.7;
}

.zb-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.zb-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.zb-hero-logo-wrapper {
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: zbFloat 6s ease-in-out infinite;
}

.zb-hero-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px dashed rgba(var(--accent-rgb), 0.2);
    border-radius: 50%;
    animation: zbSpin 30s linear infinite;
}

@keyframes zbSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.zb-hero-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.3)) drop-shadow(0 0 40px rgba(var(--accent-rgb), 0.15));
}

.zb-hero-visual::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.zb-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.zb-hero-stat {
    text-align: center;
}

.zb-hero-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.25);
}

.zb-hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,.55);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

/* --- Advantages Section --- */
.zb-section--advantages {
    padding: 56px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
}

.zb-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.zb-advantage {
    text-align: center;
    padding: 24px 16px;
}

.zb-advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(var(--primary-rgb), 0.08) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    transition: all var(--transition-base);
}

.zb-advantage:hover .zb-advantage-icon {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.25);
}

.zb-advantage-icon svg {
    width: 26px;
    height: 26px;
}

.zb-advantage h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.zb-advantage p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* --- Service Cards Grid --- */
.zb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.zb-service-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.zb-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.zb-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--accent-rgb), 0.3);
    color: inherit;
}

.zb-service-card:hover::before {
    transform: scaleY(1);
}

.zb-service-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
    transition: all var(--transition-base);
}

.zb-service-card:hover .zb-service-card-icon {
    background: var(--accent);
    color: var(--text);
}

.zb-service-card-icon svg {
    width: 24px;
    height: 24px;
}

.zb-service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.zb-service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex: 1;
}

.zb-service-card-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 16px;
    transition: gap var(--transition-fast);
}

.zb-service-card:hover .zb-service-card-arrow {
    gap: 10px;
    color: var(--accent-hover);
}

.zb-service-card-arrow svg {
    width: 16px;
    height: 16px;
}

/* --- About Section (homepage) --- */
.zb-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zb-about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.zb-about-image:hover {
    transform: scale(1.02);
}

.zb-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zb-about-content h2 {
    margin-bottom: 16px;
}

.zb-about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.zb-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.zb-about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.zb-about-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

/* --- Partners --- */
.zb-partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.zb-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 36px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 170px;
}

.zb-partner:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    transform: scale(1.06);
}

.zb-partner img,
.zb-partner-logo {
    max-height: 60px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

.zb-partner-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

/* --- Reviews Carousel --- */
.zb-reviews-carousel-wrapper {
    position: relative;
    padding: 0 52px;
}

.zb-reviews-carousel {
    overflow: hidden;
}

.zb-reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zb-review-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    position: relative;
}

.zb-review-card::before {
    content: '\201E';
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 3rem;
    line-height: 1;
    color: rgba(var(--accent-rgb), 0.15);
    font-family: Georgia, serif;
    pointer-events: none;
}

.zb-review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.2);
}

.zb-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    z-index: 2;
    padding: 0;
}

.zb-carousel-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.zb-carousel-prev {
    left: 0;
}

.zb-carousel-next {
    right: 0;
}

.zb-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.zb-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.zb-carousel-dot:hover {
    background: var(--text-muted);
}

.zb-carousel-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

.zb-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.zb-review-star {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.zb-review-text {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.zb-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zb-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.zb-review-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.zb-review-source {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Hours Banner --- */
.zb-section--hours {
    padding: 48px 0;
}

.zb-hours-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    box-shadow: var(--shadow-card);
    gap: 32px;
}

.zb-hours-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zb-hours-banner-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.zb-hours-banner h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.zb-hours-banner-time {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.zb-hours-banner-time strong {
    color: var(--text);
    font-weight: 600;
}

.zb-hours-banner-closed {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.zb-hours-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.zb-hours-banner-address {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --- Interactive Gallery --- */
.zb-section--gallery {
    background: var(--bg-card);
}

.zb-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.zb-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/7;
    background: var(--primary-light);
}

.zb-gallery-main .zb-img-placeholder {
    border: none;
    border-radius: 0;
    min-height: 100%;
    font-size: 1rem;
}

.zb-gallery-main .zb-img-placeholder svg {
    width: 48px;
    height: 48px;
}

.zb-gallery-main-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,.55));
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: opacity var(--transition-base);
}

.zb-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.zb-gallery-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--primary-light);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
}

.zb-gallery-thumb .zb-img-placeholder {
    border: none;
    border-radius: 0;
    min-height: 100%;
    padding: 8px;
    font-size: 0.7rem;
    gap: 4px;
}

.zb-gallery-thumb .zb-img-placeholder svg {
    width: 20px;
    height: 20px;
}

.zb-gallery-thumb:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.zb-gallery-thumb--active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.25);
}

/* --- Partner Logo Placeholder --- */
.zb-partner-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.zb-partner-logo-placeholder svg {
    opacity: 0.35;
}

.zb-partner-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.zb-partner:hover .zb-partner-name {
    color: var(--accent);
}

/* --- Pre-footer CTA (white) --- */
.zb-section--prefooter {
    padding: 64px 0;
    background: var(--bg);
}

.zb-prefooter-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    box-shadow: var(--shadow-md);
    gap: 40px;
}

.zb-prefooter-content h2 {
    margin-bottom: 8px;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.zb-prefooter-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 480px;
}

.zb-prefooter-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.zb-prefooter-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.zb-prefooter-phone a {
    color: var(--primary);
}

.zb-prefooter-phone a:hover {
    color: var(--accent);
}

.zb-prefooter-phone svg {
    color: var(--accent);
}

/* --- Full-width Map --- */
.zb-map--fullwidth {
    border-radius: 0;
    border: none;
    margin-top: 0;
    border-bottom: 3px solid var(--accent);
}

.zb-map--fullwidth iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* --- Contact Cards --- */
.zb-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zb-contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.zb-contact-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

/* --- CTA Section --- */
.zb-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    animation: zbGradientShift 15s ease infinite;
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zb-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.zb-cta h2 {
    color: var(--text-light);
    margin-bottom: 12px;
}

.zb-cta p {
    color: rgba(255,255,255,.7);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.zb-cta-phone {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
}

.zb-cta-phone a {
    color: var(--accent);
}

.zb-cta-phone a:hover {
    color: var(--accent-hover);
}

/* --- Contact / Shop Page --- */
.zb-page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1e4a6e 100%);
    color: var(--text-light);
    padding: 52px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zb-page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.zb-page-hero h1 {
    color: var(--text-light);
    margin-bottom: 8px;
}

.zb-page-hero p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
}

.zb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.zb-breadcrumb a {
    color: rgba(255,255,255,.6);
}

.zb-breadcrumb a:hover {
    color: var(--accent);
}

.zb-breadcrumb-sep {
    color: rgba(255,255,255,.3);
}

.zb-breadcrumb-current {
    color: rgba(255,255,255,.9);
}

/* Contact Grid */
.zb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.zb-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.zb-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.zb-contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.zb-contact-icon svg {
    width: 20px;
    height: 20px;
}

.zb-contact-item-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.zb-contact-item-value {
    font-weight: 500;
    margin-top: 2px;
}

.zb-contact-item-value a {
    color: var(--text);
}

.zb-contact-item-value a:hover {
    color: var(--accent);
}

/* Contact Form */
.zb-form {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
}

.zb-form h3 {
    margin-bottom: 24px;
}

.zb-form-group {
    margin-bottom: 16px;
}

.zb-form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.zb-form-input,
.zb-form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.93rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--bg);
}

.zb-form-input:focus,
.zb-form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

.zb-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.zb-form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.zb-form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.zb-form-message--success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.zb-form-message--error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Map */
.zb-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 20px;
}

.zb-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* --- Shop Page --- */
.zb-shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.zb-shop-info h3 {
    margin-bottom: 12px;
}

.zb-shop-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.zb-shop-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.zb-shop-gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.zb-shop-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Opening Hours Table */
.zb-hours-table {
    width: 100%;
    margin: 20px 0;
}

.zb-hours-table li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.93rem;
}

.zb-hours-table li:last-child {
    border-bottom: none;
}

.zb-hours-table .zb-today {
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    margin: 0 -12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
}

/* --- About Page --- */
.zb-about-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.zb-about-page-content h2 {
    margin-bottom: 16px;
}

.zb-about-page-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.zb-about-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zb-about-sidebar-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
}

.zb-about-sidebar-card h4 {
    margin-bottom: 12px;
    color: var(--primary);
}

/* --- Service Template --- */
.zb-service-page {
    padding: 60px 0;
}

.zb-service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.zb-service-content h2 {
    margin-bottom: 16px;
}

.zb-service-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.zb-service-content ul {
    margin: 16px 0;
    padding-left: 0;
}

.zb-service-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.zb-service-content li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.zb-service-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--primary-light);
    margin: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.zb-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Placeholder */
.zb-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0f4f8 100%);
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 32px;
    text-align: center;
}

.zb-img-placeholder svg {
    opacity: 0.4;
}

.zb-img-placeholder span {
    opacity: 0.6;
    font-weight: 500;
}

.zb-service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zb-sidebar-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
}

.zb-sidebar-card h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.zb-sidebar-card--cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.25);
}

.zb-sidebar-card--cta h4 {
    color: var(--text-light);
}

.zb-sidebar-card--cta p {
    color: rgba(255,255,255,.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.zb-sidebar-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin: 8px 0;
}

.zb-sidebar-phone a {
    color: var(--accent);
}

/* Related Services */
.zb-related-services {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.zb-related-services h3 {
    margin-bottom: 20px;
}

.zb-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* --- VOP Page --- */
.zb-vop-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.zb-vop-content h2 {
    margin: 32px 0 16px;
    font-size: 1.4rem;
}

.zb-vop-content h3 {
    margin: 24px 0 12px;
    font-size: 1.15rem;
}

.zb-vop-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.zb-vop-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.zb-vop-content li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
    list-style: disc;
}

/* --- 404 Page --- */
.zb-404 {
    text-align: center;
    padding: 100px 0;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.zb-404-code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.zb-404 p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

/* --- Footer --- */
.zb-footer {
    background: var(--primary);
    color: rgba(255,255,255,.8);
    padding: 40px 0 0;
}

.zb-footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    margin-top: 8px;
}

.zb-footer-sublabel {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,.35);
    margin-top: 1px;
}

.zb-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.zb-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.zb-footer-brand h3 {
    color: var(--text-light);
    font-size: 1.15rem;
}

.zb-footer-motto {
    color: rgba(255,255,255,.5);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.zb-footer-since {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.zb-footer h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.zb-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.zb-footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zb-footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,.65);
}

.zb-footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.zb-footer-list a {
    color: rgba(255,255,255,.65);
}

.zb-footer-list a:hover {
    color: var(--accent);
}

.zb-footer-hours-simple li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.zb-footer-hours-simple li:last-child {
    border-bottom: none;
}

.zb-footer-hours-simple .zb-day-name {
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

.zb-footer-hours-simple .zb-closed-text {
    color: rgba(255,255,255,.35);
}

.zb-footer-hours .zb-today {
    color: var(--accent);
}

.zb-footer-hours .zb-today .zb-day-name {
    color: var(--accent);
}

.zb-footer-links a {
    transition: padding-left var(--transition-fast), color var(--transition-fast);
}

.zb-footer-links a:hover {
    padding-left: 6px;
}

.zb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,.4);
}

.zb-footer-ico {
    color: rgba(255,255,255,.3);
}

/* --- Cookie Consent --- */
.zb-cookie {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    max-width: 380px;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    overflow: hidden;
}

.zb-cookie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.zb-cookie.zb-cookie--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.zb-cookie-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.zb-cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zb-cookie-icon {
    font-size: 2.2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    animation: zb-cookie-wobble 2s ease-in-out infinite;
}

@keyframes zb-cookie-wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

.zb-cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.zb-cookie-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.zb-cookie-actions {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}

.zb-cookie-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.zb-cookie-btn--accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark, #1a5a1a));
    color: #fff;
    box-shadow: 0 2px 8px rgba(34, 139, 34, 0.3);
}

.zb-cookie-btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.4);
}

.zb-cookie-btn--decline {
    background: var(--bg-secondary, #f5f5f5);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.zb-cookie-btn--decline:hover {
    background: var(--bg-card);
    border-color: var(--text-muted);
}

.zb-cookie-link {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    text-align: center;
    opacity: 0.7;
    transition: all 0.2s;
}

.zb-cookie-link:hover {
    color: var(--primary);
    opacity: 1;
    text-decoration: underline;
}

/* === RESPONSIVE === */

@media (max-width: 1024px) {
    .zb-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zb-hero-visual {
        display: none;
    }

    .zb-review-card {
        flex: 0 0 calc(50% - 10px);
    }

    .zb-about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .zb-about-image {
        max-height: 360px;
    }

    .zb-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .zb-contact-grid,
    .zb-shop-grid {
        grid-template-columns: 1fr;
    }

    .zb-about-page-grid {
        grid-template-columns: 1fr;
    }

    .zb-service-layout {
        grid-template-columns: 1fr;
    }

    .zb-service-sidebar {
        order: -1;
    }

    .zb-related-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .zb-hours-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .zb-hours-banner-content {
        flex-direction: column;
    }

    .zb-hours-banner-actions {
        align-items: center;
    }

    .zb-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .zb-gallery-main {
        aspect-ratio: 16/9;
    }

    .zb-prefooter-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .zb-prefooter-actions {
        flex-direction: column;
    }

    .zb-map--fullwidth iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .zb-topbar-left {
        gap: 12px;
    }

    .zb-topbar-hours {
        display: none;
    }

    /* Mobile nav */
    .zb-hamburger {
        display: flex;
    }

    .zb-nav-links {
        position: fixed;
        top: calc(var(--topbar-height) + var(--nav-height));
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-card);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 99;
    }

    .zb-nav-links.open {
        transform: translateX(0);
    }

    .zb-nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .zb-nav-link.zb-active::after {
        display: none;
    }

    /* Mobile dropdown */
    .zb-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-slow);
    }

    .zb-nav-dropdown.open .zb-dropdown-menu {
        max-height: 800px;
        transform: none;
    }

    .zb-dropdown-grid {
        grid-template-columns: 1fr;
        padding: 8px 0 8px 16px;
    }

    .zb-dropdown-item {
        padding: 10px 12px;
    }

    /* Hero */
    .zb-hero {
        padding: 60px 0;
        min-height: auto;
    }

    .zb-hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .zb-hero-stat-number {
        font-size: 1.5rem;
    }

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

    /* Services grid */
    .zb-services-grid {
        grid-template-columns: 1fr;
    }

    /* Reviews Carousel */
    .zb-reviews-carousel-wrapper {
        padding: 0 40px;
    }

    .zb-review-card {
        flex: 0 0 100%;
    }

    .zb-carousel-btn {
        width: 34px;
        height: 34px;
    }

    .zb-carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Partners */
    .zb-partners-row {
        gap: 16px;
    }

    .zb-partner {
        padding: 12px 20px;
        min-width: 120px;
    }

    /* Footer */
    .zb-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .zb-footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* About features */
    .zb-about-features {
        grid-template-columns: 1fr;
    }

    /* Section padding */
    .zb-section {
        padding: 48px 0;
    }

    /* Related */
    .zb-related-grid {
        grid-template-columns: 1fr;
    }

    /* Cookie */
    .zb-cookie {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        border-radius: 14px;
    }

    .zb-cookie-inner {
        padding: 18px;
    }

    .zb-cookie-actions {
        flex-direction: column;
    }

    .zb-cookie-btn {
        width: 100%;
    }

    /* Shop gallery */
    .zb-shop-gallery {
        grid-template-columns: 1fr;
    }

    .zb-advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .zb-advantage {
        padding: 16px 8px;
    }

    .zb-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .zb-gallery-main {
        aspect-ratio: 16/10;
    }

    .zb-prefooter-phone {
        font-size: 1.1rem;
    }

    .zb-map--fullwidth iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .zb-topbar-inner {
        font-size: 0.75rem;
    }

    .zb-topbar-left {
        flex-wrap: wrap;
        gap: 8px;
    }

    .zb-topbar .zb-topbar-left .zb-topbar-item:first-child {
        display: none;
    }

    .zb-hero h1 {
        font-size: 1.8rem;
    }

    .zb-form {
        padding: 20px;
    }

    .zb-advantages-grid {
        grid-template-columns: 1fr;
    }

    .zb-gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .zb-partners-row {
        gap: 12px;
    }

    .zb-partner {
        padding: 10px 14px;
        min-width: 100px;
    }

    .zb-partner-logo {
        max-height: 28px;
    }

    .zb-reviews-carousel-wrapper {
        padding: 0 28px;
    }

    .zb-container {
        padding: 0 16px;
    }

    .zb-prefooter-cta {
        padding: 24px 16px;
    }
}
