/*
Theme Name:        ZK Theme
Theme URI:         https://zaharakebab.com
Author:            Zahara Kebab Team
Author URI:        https://zaharakebab.com
Description:       Premium franchise WordPress theme (ZK Theme) built for Zahara Kebab. Features full franchise management, outlet map, ROI calculator, menu showcase, testimonials, and complete content management via the native ZK Options panel and WordPress Customizer — no external plugin required. Built to ThemeForest quality standards.
Version:           1.3.2
Requires at least: 6.0
Tested up to:      6.5
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       zk-theme
Tags:              food, restaurant, franchise, yellow, responsive, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, full-width-template, custom-background, custom-colors, editor-style
*/

/* ============================================================
   DESIGN TOKENS / CSS CUSTOM PROPERTIES
============================================================ */
:root {
    /* Brand Colors — Zahara Kebab Official */
    --zk-yellow:        #F7C600;
    --zk-yellow-dark:   #E6B800;
    --zk-yellow-light:  #FFF9E0;
    --zk-red:           #D91F26;
    --zk-red-dark:      #B71822;
    --zk-red-light:     #FFE8E9;
    --zk-black:         #1A1A1A;
    --zk-white:         #FFFFFF;

    /* Text Colors */
    --zk-text-primary:  #1A1A1A;
    --zk-text-secondary:#4A4A4A;
    --zk-text-muted:    #757575;
    --zk-text-light:    #9E9E9E;

    /* Background Colors */
    --zk-bg-white:      #FFFFFF;
    --zk-bg-light:      #F9F9F9;
    --zk-bg-gray:       #F0F0F0;

    /* Typography */
    --zk-font-primary:  'Plus Jakarta Sans', 'Nunito Sans', sans-serif;
    --zk-font-fallback: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --zk-fs-xs:    11px;
    --zk-fs-sm:    13px;
    --zk-fs-base:  15px;
    --zk-fs-md:    17px;
    --zk-fs-lg:    20px;
    --zk-fs-xl:    24px;
    --zk-fs-2xl:   32px;
    --zk-fs-3xl:   40px;
    --zk-fs-4xl:   52px;

    --zk-fw-normal: 400;
    --zk-fw-medium: 500;
    --zk-fw-semi:   600;
    --zk-fw-bold:   700;
    --zk-fw-black:  800;

    --zk-lh-tight:  1.2;
    --zk-lh-normal: 1.5;
    --zk-lh-loose:  1.7;

    /* Spacing */
    --zk-space-1:   4px;
    --zk-space-2:   8px;
    --zk-space-3:   12px;
    --zk-space-4:   16px;
    --zk-space-5:   20px;
    --zk-space-6:   24px;
    --zk-space-8:   32px;
    --zk-space-10:  40px;
    --zk-space-12:  48px;
    --zk-space-16:  64px;
    --zk-space-20:  80px;
    --zk-space-24:  96px;

    /* Layout */
    --zk-container:     1280px;
    --zk-container-sm:  960px;

    /* Border Radius */
    --zk-radius-sm:  6px;
    --zk-radius-md:  10px;
    --zk-radius-lg:  16px;
    --zk-radius-xl:  24px;
    --zk-radius-full: 9999px;

    /* Shadows */
    --zk-shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
    --zk-shadow-md:   0 4px 20px rgba(0,0,0,0.10);
    --zk-shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
    --zk-shadow-xl:   0 16px 64px rgba(0,0,0,0.16);

    /* Transitions */
    --zk-transition:     all 0.25s ease;
    --zk-transition-slow:all 0.40s ease;

    /* Header */
    --zk-topbar-h:  38px;
    --zk-header-h:  72px;
    --zk-total-header: calc(var(--zk-topbar-h) + var(--zk-header-h));
}

/* ============================================================
   CSS RESET & BASE
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--zk-font-primary), var(--zk-font-fallback);
    font-size: var(--zk-fs-base);
    font-weight: var(--zk-fw-normal);
    line-height: var(--zk-lh-normal);
    color: var(--zk-text-primary);
    background-color: var(--zk-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--zk-fw-bold);
    line-height: var(--zk-lh-tight);
    color: var(--zk-text-primary);
}

p {
    line-height: var(--zk-lh-loose);
    color: var(--zk-text-secondary);
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.zk-container {
    width: 100%;
    max-width: var(--zk-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--zk-space-6);
    padding-right: var(--zk-space-6);
}

.zk-section {
    padding-top: var(--zk-space-20);
    padding-bottom: var(--zk-space-20);
}

.zk-section--yellow {
    background-color: var(--zk-yellow);
}

.zk-section--light {
    background-color: var(--zk-bg-light);
}

.zk-section--white {
    background-color: var(--zk-bg-white);
}

.zk-grid {
    display: grid;
    gap: var(--zk-space-6);
}

.zk-grid--2 { grid-template-columns: repeat(2, 1fr); }
.zk-grid--3 { grid-template-columns: repeat(3, 1fr); }
.zk-grid--4 { grid-template-columns: repeat(4, 1fr); }

.zk-flex {
    display: flex;
    align-items: center;
}

.zk-flex--between {
    justify-content: space-between;
}

.zk-flex--center {
    justify-content: center;
}

.zk-text-center { text-align: center; }
.zk-text-red    { color: var(--zk-red); }
.zk-text-yellow { color: var(--zk-yellow); }
.zk-text-white  { color: var(--zk-white); }
.zk-text-muted  { color: var(--zk-text-muted); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.zk-eyebrow {
    display: inline-block;
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--zk-red);
    margin-bottom: var(--zk-space-3);
}

.zk-section-title {
    font-size: var(--zk-fs-3xl);
    font-weight: var(--zk-fw-black);
    line-height: 1.15;
    color: var(--zk-text-primary);
    margin-bottom: var(--zk-space-4);
}

.zk-section-title--white {
    color: var(--zk-white);
}

.zk-section-body {
    font-size: var(--zk-fs-base);
    line-height: var(--zk-lh-loose);
    color: var(--zk-text-secondary);
    max-width: 520px;
}

/* ============================================================
   BUTTONS
============================================================ */
.zk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--zk-space-2);
    padding: 13px 28px;
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--zk-radius-sm);
    transition: var(--zk-transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
}

.zk-btn--red {
    background-color: var(--zk-red);
    color: var(--zk-white);
    border-color: var(--zk-red);
}

.zk-btn--red:hover {
    background-color: var(--zk-red-dark);
    border-color: var(--zk-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(217,31,38,0.35);
    color: var(--zk-white);
}

.zk-btn--outline-dark {
    background: transparent;
    color: var(--zk-black);
    border-color: var(--zk-black);
}

.zk-btn--outline-dark:hover {
    background: var(--zk-black);
    color: var(--zk-white);
}

.zk-btn--outline-white {
    background: transparent;
    color: var(--zk-white);
    border-color: var(--zk-white);
}

.zk-btn--outline-white:hover {
    background: var(--zk-white);
    color: var(--zk-black);
}

.zk-btn--yellow {
    background-color: var(--zk-yellow);
    color: var(--zk-black);
    border-color: var(--zk-yellow);
}

.zk-btn--yellow:hover {
    background-color: var(--zk-yellow-dark);
    border-color: var(--zk-yellow-dark);
    color: var(--zk-black);
}

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

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

/* ============================================================
   CARDS
============================================================ */
.zk-card {
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    box-shadow: var(--zk-shadow-md);
    overflow: hidden;
    transition: var(--zk-transition);
}

.zk-card:hover {
    box-shadow: var(--zk-shadow-lg);
    transform: translateY(-3px);
}

.zk-card__body {
    padding: var(--zk-space-6);
}

/* ============================================================
   BADGES / LABELS
============================================================ */
.zk-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--zk-space-2);
    padding: 6px 14px;
    border-radius: var(--zk-radius-full);
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-semi);
    background: var(--zk-red-light);
    color: var(--zk-red);
}

/* ============================================================
   TOPBAR
============================================================ */
.zk-topbar {
    background-color: var(--zk-red);
    height: var(--zk-topbar-h);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.zk-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.zk-topbar__tagline {
    font-size: var(--zk-fs-xs);
    color: rgba(255,255,255,0.9);
    font-weight: var(--zk-fw-medium);
    letter-spacing: 0.02em;
}

.zk-topbar__right {
    display: flex;
    align-items: center;
    gap: var(--zk-space-5);
}

.zk-topbar__social {
    display: flex;
    align-items: center;
    gap: var(--zk-space-3);
}

.zk-topbar__social a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    transition: var(--zk-transition);
}

.zk-topbar__social a:hover {
    color: var(--zk-white);
}

.zk-topbar__social svg {
    width: 16px;
    height: 16px;
}

.zk-topbar__franchise {
    display: flex;
    align-items: center;
    gap: var(--zk-space-2);
    font-size: var(--zk-fs-xs);
    color: var(--zk-white);
    font-weight: var(--zk-fw-semi);
}

.zk-topbar__divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.3);
}

/* ============================================================
   MAIN HEADER / NAV
============================================================ */
.zk-header {
    background-color: var(--zk-yellow);
    height: var(--zk-header-h);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--zk-transition);
}

.zk-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.zk-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--zk-space-6);
    width: 100%;
}

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

.zk-logo img {
    height: 48px;
    width: auto;
}

.zk-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.zk-logo__name {
    font-size: 18px;
    font-weight: var(--zk-fw-black);
    color: var(--zk-black);
    letter-spacing: -0.02em;
}

.zk-logo__sub {
    font-size: 9px;
    font-weight: var(--zk-fw-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--zk-red);
}

/* Navigation */
.zk-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.zk-nav__menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.zk-nav__item {
    position: relative;
}

.zk-nav__link {
    display: block;
    padding: 8px 14px;
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--zk-black);
    position: relative;
    white-space: nowrap;
    transition: var(--zk-transition);
}

.zk-nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--zk-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--zk-transition);
}

.zk-nav__link:hover::after,
.zk-nav__item.current-menu-item .zk-nav__link::after,
.zk-nav__item.current-menu-parent .zk-nav__link::after {
    transform: scaleX(1);
}

.zk-nav__link:hover,
.zk-nav__item.current-menu-item .zk-nav__link {
    color: var(--zk-red);
}

/* Dropdown */
.zk-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--zk-white);
    border-radius: var(--zk-radius-md);
    box-shadow: var(--zk-shadow-lg);
    padding: var(--zk-space-2) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--zk-transition);
    list-style: none;
    z-index: 100;
}

.zk-nav__item:hover .zk-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zk-nav__dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-medium);
    color: var(--zk-text-secondary);
    transition: var(--zk-transition);
}

.zk-nav__dropdown a:hover {
    color: var(--zk-red);
    background: var(--zk-red-light);
    padding-left: 24px;
}

/* Header CTA */
.zk-header__cta {
    flex-shrink: 0;
}

/* Hamburger */
.zk-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--zk-space-2);
    cursor: pointer;
    background: none;
    border: none;
}

.zk-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--zk-black);
    transition: var(--zk-transition);
    transform-origin: center;
}

.zk-hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.zk-hamburger.is-active span:nth-child(2) { opacity: 0; }
.zk-hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.zk-mobile-nav {
    display: none;
    position: fixed;
    top: var(--zk-total-header);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--zk-yellow);
    z-index: 999;
    padding: var(--zk-space-6);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: var(--zk-transition-slow);
}

.zk-mobile-nav.is-open {
    transform: translateX(0);
}

.zk-mobile-nav__menu {
    list-style: none;
}

.zk-mobile-nav__link {
    display: block;
    padding: var(--zk-space-4) 0;
    font-size: 18px;
    font-weight: var(--zk-fw-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--zk-black);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: var(--zk-transition);
}

.zk-mobile-nav__link:hover {
    color: var(--zk-red);
    padding-left: var(--zk-space-3);
}

/* ============================================================
   FLOATING WIDGET
============================================================ */
.zk-floating-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.zk-floating-widget__item {
    display: flex;
    align-items: center;
    gap: var(--zk-space-2);
    padding: 12px 14px;
    background: var(--zk-white);
    color: var(--zk-black);
    font-size: var(--zk-fs-xs);
    font-weight: var(--zk-fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--zk-shadow-md);
    transition: var(--zk-transition);
    border-left: 3px solid transparent;
    writing-mode: horizontal-tb;
    text-decoration: none;
    white-space: nowrap;
    min-width: 100px;
    justify-content: flex-start;
}

.zk-floating-widget__item:first-child { border-radius: var(--zk-radius-md) 0 0 0; }
.zk-floating-widget__item:last-child  { border-radius: 0 0 0 var(--zk-radius-md); }

.zk-floating-widget__item:hover {
    background: var(--zk-red);
    color: var(--zk-white);
    border-left-color: var(--zk-red-dark);
    padding-right: 20px;
}

.zk-floating-widget__item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.zk-floating-widget__item--whatsapp:hover { background: #25D366; border-left-color: #128C7E; }
.zk-floating-widget__item--franchise:hover { background: var(--zk-red); }
.zk-floating-widget__item--brosur:hover { background: var(--zk-black); }

/* ============================================================
   HERO SECTION
============================================================ */
.zk-hero {
    background-color: var(--zk-yellow);
    padding-top: var(--zk-space-16);
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.zk-hero__inner {
    display: grid;
    grid-template-columns: 55fr 45fr;
    align-items: flex-end;
    gap: var(--zk-space-10);
    min-height: 480px;
}

.zk-hero__content {
    padding-bottom: var(--zk-space-16);
}

.zk-hero__title {
    font-size: var(--zk-fs-4xl);
    font-weight: var(--zk-fw-black);
    line-height: 1.1;
    color: var(--zk-black);
    margin-bottom: var(--zk-space-3);
}

.zk-hero__title .zk-text-red {
    display: block;
}

.zk-hero__subtitle {
    font-size: var(--zk-fs-base);
    line-height: var(--zk-lh-loose);
    color: var(--zk-text-secondary);
    margin-bottom: var(--zk-space-8);
    max-width: 400px;
}

.zk-hero__actions {
    display: flex;
    align-items: center;
    gap: var(--zk-space-4);
    flex-wrap: wrap;
}

.zk-hero__image-wrap {
    position: relative;
    align-self: flex-end;
}

.zk-hero__image {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.20));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* ============================================================
   STATISTICS SECTION
============================================================ */
.zk-stats {
    background: var(--zk-bg-white);
    padding: var(--zk-space-8) 0;
    position: relative;
    z-index: 2;
}

.zk-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--zk-space-5);
}

.zk-stat-card {
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    padding: var(--zk-space-6) var(--zk-space-5);
    text-align: center;
    box-shadow: var(--zk-shadow-md);
    transition: var(--zk-transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.zk-stat-card:hover {
    box-shadow: var(--zk-shadow-lg);
    transform: translateY(-4px);
}

.zk-stat-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--zk-space-3);
    background: var(--zk-red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zk-stat-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--zk-red);
}

.zk-stat-card__number {
    font-size: clamp(22px, 5vw, 36px);
    font-weight: var(--zk-fw-black);
    color: var(--zk-black);
    line-height: 1.1;
    margin-bottom: var(--zk-space-1);
    word-break: break-word;
}

.zk-stat-card__label {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-muted);
    font-weight: var(--zk-fw-medium);
    line-height: 1.3;
}

/* ============================================================
   TIMELINE SECTION
============================================================ */
.zk-timeline-section {
    padding: var(--zk-space-20) 0;
    background: var(--zk-bg-white);
}

.zk-timeline-section__inner {
    display: grid;
    grid-template-columns: 40fr 60fr;
    gap: var(--zk-space-16);
    align-items: center;
}

.zk-timeline-section__content .zk-section-body {
    margin-bottom: var(--zk-space-8);
}

.zk-timeline-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--zk-space-2);
    margin-bottom: var(--zk-space-8);
}

.zk-timeline-gallery__item {
    aspect-ratio: 1;
    border-radius: var(--zk-radius-md);
    overflow: hidden;
    background: var(--zk-bg-gray);
}

.zk-timeline-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zk-transition);
}

.zk-timeline-gallery__item:hover img {
    transform: scale(1.05);
}

/* Timeline Horizontal */
.zk-timeline-h {
    position: relative;
    display: flex;
    gap: var(--zk-space-4);
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximate;
    -webkit-overflow-scrolling: touch;
}

.zk-timeline-h::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: linear-gradient(to right, var(--zk-yellow) 60%, var(--zk-bg-gray) 100%);
}

.zk-timeline-h__item {
    flex: 0 0 150px;
    text-align: center;
    position: relative;
    padding-top: var(--zk-space-8);
    scroll-snap-align: start;
}

.zk-timeline-h__dot {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--zk-yellow);
    border: 3px solid var(--zk-yellow-dark);
    box-shadow: 0 0 0 3px rgba(247,198,0,0.25);
    z-index: 1;
}

.zk-timeline-h__item:last-child .zk-timeline-h__dot {
    background: var(--zk-red);
    border-color: var(--zk-red-dark);
    box-shadow: 0 0 0 3px rgba(217,31,38,0.2);
}

.zk-timeline-h__year {
    font-size: var(--zk-fs-md);
    font-weight: var(--zk-fw-black);
    color: var(--zk-black);
    margin-bottom: var(--zk-space-1);
}

.zk-timeline-h__label {
    font-size: var(--zk-fs-xs);
    color: var(--zk-text-muted);
    line-height: 1.4;
    padding: 0 4px;
}

/* ============================================================
   MENU SLIDER SECTION
============================================================ */
.zk-menu-section {
    padding: var(--zk-space-20) 0 var(--zk-space-10);
    background: var(--zk-bg-white);
    border-top: 1px solid var(--zk-bg-gray);
}

.zk-menu-section__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: var(--zk-space-6);
    margin-bottom: var(--zk-space-10);
}

.zk-slider-wrapper {
    position: relative;
}

.zk-slider {
    display: flex;
    gap: var(--zk-space-5);
    overflow: hidden;
}

.zk-slider__track {
    display: flex;
    gap: var(--zk-space-5);
    transition: transform 0.4s ease;
    will-change: transform;
}

.zk-menu-card {
    flex: 1 1 calc(20% - var(--zk-space-4));
    max-width: calc(20% - var(--zk-space-4));
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    overflow: hidden;
    box-shadow: var(--zk-shadow-sm);
    transition: var(--zk-transition);
    border: 1px solid var(--zk-bg-gray);
}

.zk-menu-card:hover {
    box-shadow: var(--zk-shadow-lg);
    transform: translateY(-4px);
}

.zk-menu-card__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--zk-bg-gray);
}

.zk-menu-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zk-transition-slow);
}

.zk-menu-card:hover .zk-menu-card__img img {
    transform: scale(1.06);
}

.zk-menu-card__body {
    padding: var(--zk-space-4);
}

.zk-menu-card__name {
    font-size: var(--zk-fs-base);
    font-weight: var(--zk-fw-bold);
    color: var(--zk-black);
    margin-bottom: var(--zk-space-1);
}

.zk-menu-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.zk-menu-card__price {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-muted);
}

.zk-menu-card__price strong {
    color: var(--zk-red);
}

/* Slider Arrows */
.zk-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--zk-white);
    border: 2px solid var(--zk-bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: var(--zk-shadow-md);
    transition: var(--zk-transition);
}

.zk-slider-arrow:hover {
    background: var(--zk-red);
    border-color: var(--zk-red);
    color: var(--zk-white);
}

.zk-slider-arrow svg {
    width: 18px;
    height: 18px;
}

.zk-slider-arrow--prev { left: -22px; }
.zk-slider-arrow--next { right: -22px; }

/* Quality Badges */
.zk-quality-badges {
    display: flex;
    justify-content: center;
    gap: var(--zk-space-8);
    padding: var(--zk-space-8) 0;
    margin-top: var(--zk-space-8);
    border-top: 1px solid var(--zk-bg-gray);
    flex-wrap: wrap;
}

.zk-quality-badge {
    display: flex;
    align-items: center;
    gap: var(--zk-space-2);
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-semi);
    color: var(--zk-text-secondary);
}

.zk-quality-badge svg {
    width: 20px;
    height: 20px;
    color: var(--zk-yellow-dark);
    flex-shrink: 0;
}

/* ============================================================
   OUTLET MAP SECTION
============================================================ */
.zk-outlet-map {
    background: var(--zk-yellow);
    padding: var(--zk-space-20) 0;
}

.zk-outlet-map__inner {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: var(--zk-space-12);
    align-items: center;
}

.zk-outlet-map__content {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-rows: auto 1fr;
    gap: var(--zk-space-6) var(--zk-space-8);
    align-items: start;
}

.zk-outlet-map__text {
    grid-column: 1;
    grid-row: 1 / 3;
}

.zk-outlet-map__text .zk-section-title {
    margin-bottom: var(--zk-space-4);
}

.zk-outlet-map__text .zk-section-body {
    margin-bottom: var(--zk-space-6);
}

.zk-map-svg-wrap {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
}

.zk-map-svg-wrap svg {
    width: 100%;
    height: auto;
}

/* Province Stats */
/* Outlet Finder Widget (search + filter + nearest-outlet) */
.zk-outlet-map__content--finder {
    grid-template-columns: 1fr;
}

.zk-outlet-map__content--finder .zk-outlet-map__text {
    grid-column: 1;
    grid-row: 1;
}

.zk-outlet-finder {
    grid-column: 1;
    grid-row: 2;
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    padding: var(--zk-space-6);
    box-shadow: var(--zk-shadow-md);
}

.zk-outlet-finder__row {
    display: flex;
    gap: var(--zk-space-3);
    flex-wrap: wrap;
    margin-bottom: var(--zk-space-4);
}

.zk-outlet-finder__row .zk-form-select {
    min-width: 160px;
}

.zk-outlet-finder__nearest-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--zk-space-2);
    background: var(--zk-bg-light);
    border: 1.5px dashed #D4D4D4;
    border-radius: var(--zk-radius-md);
    padding: 12px 16px;
    font-size: var(--zk-fs-sm);
    font-weight: 600;
    color: var(--zk-text-primary);
    cursor: pointer;
    transition: var(--zk-transition);
    margin-bottom: var(--zk-space-4);
}

.zk-outlet-finder__nearest-btn:hover {
    background: var(--zk-yellow-light);
    border-color: var(--zk-red);
}

.zk-outlet-finder__nearest-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.zk-outlet-finder__nearest-btn.is-loading {
    opacity: 0.7;
    cursor: wait;
}

.zk-outlet-finder__results {
    min-height: 60px;
}

.zk-outlet-finder__hint {
    color: var(--zk-text-muted);
    font-size: var(--zk-fs-sm);
    text-align: center;
    padding: var(--zk-space-4) 0;
}

.zk-outlet-finder__error {
    color: var(--zk-red);
    font-size: var(--zk-fs-sm);
    text-align: center;
    padding: var(--zk-space-4) 0;
}

.zk-outlet-finder__results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--zk-space-4);
}

.zk-nearest-card {
    border: 1.5px solid var(--zk-red);
    border-radius: var(--zk-radius-md);
    padding: var(--zk-space-4);
    background: var(--zk-yellow-light);
}

.zk-nearest-card__badge {
    display: inline-block;
    background: var(--zk-red);
    color: var(--zk-white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: var(--zk-space-2);
}

.zk-nearest-card__name {
    font-size: var(--zk-fs-lg);
    font-weight: 700;
    margin-bottom: var(--zk-space-1);
}

.zk-nearest-card__address {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-muted);
    margin-bottom: var(--zk-space-3);
}

.zk-nearest-card__distance {
    font-weight: 700;
    color: var(--zk-red);
}

.zk-nearest-list {
    display: flex;
    flex-direction: column;
    gap: var(--zk-space-3);
}

.zk-nearest-card--compact {
    border-color: #E0E0E0;
    background: var(--zk-white);
}

.zk-outlet-finder__more-btn {
    width: 100%;
    margin-top: var(--zk-space-3);
    background: transparent;
    border: 1.5px solid var(--zk-red);
    color: var(--zk-red);
    font-weight: 700;
    font-size: var(--zk-fs-sm);
    padding: 10px 16px;
    border-radius: var(--zk-radius-md);
    cursor: pointer;
    transition: var(--zk-transition);
}

.zk-outlet-finder__more-btn:hover {
    background: var(--zk-red);
    color: var(--zk-white);
}

@media (max-width: 767px) {
    .zk-outlet-finder__row { flex-direction: column; }
    .zk-outlet-finder__row .zk-form-select { min-width: 0; width: 100%; }
    .zk-outlet-finder__results-grid { grid-template-columns: 1fr; }
}

/* Shared image-placeholder gradient (used when no photo uploaded yet) */
.zk-img-placeholder {
    background: linear-gradient(135deg, #F7C600, #E6B800);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zk-img-placeholder--fill {
    width: 100%;
    height: 100%;
}

.zk-province-stats {
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    overflow: hidden;
    box-shadow: var(--zk-shadow-md);
}

.zk-province-stats__title {
    padding: var(--zk-space-4) var(--zk-space-5);
    background: var(--zk-black);
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-bold);
    color: var(--zk-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: grid;
    grid-template-columns: 1fr auto;
}

.zk-province-stats__row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: var(--zk-space-3) var(--zk-space-5);
    border-bottom: 1px solid var(--zk-bg-gray);
    align-items: center;
    transition: var(--zk-transition);
}

.zk-province-stats__row:hover {
    background: var(--zk-bg-light);
}

.zk-province-stats__row:last-child {
    border-bottom: none;
}

.zk-province-stats__row--total {
    background: var(--zk-red-light);
    font-weight: var(--zk-fw-bold);
}

.zk-province-stats__row--total .zk-province-stats__count {
    color: var(--zk-red);
}

.zk-province-stats__name {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-primary);
    font-weight: var(--zk-fw-medium);
}

.zk-province-stats__count {
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-bold);
    color: var(--zk-black);
}

/* ============================================================
   FRANCHISE SECTION
============================================================ */
.zk-franchise-section {
    padding: var(--zk-space-20) 0;
    background: var(--zk-bg-light);
}

.zk-franchise-card {
    background: var(--zk-white);
    border-radius: var(--zk-radius-xl);
    box-shadow: var(--zk-shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--zk-space-6);
}

.zk-franchise-card__col {
    padding: var(--zk-space-10) var(--zk-space-8);
}

.zk-franchise-card__col--middle {
    padding: 0;
}

.zk-franchise-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.zk-franchise-card__eyebrow {
    font-size: var(--zk-fs-xs);
    font-weight: var(--zk-fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zk-red);
    margin-bottom: var(--zk-space-3);
}

.zk-franchise-card__title {
    font-size: var(--zk-fs-2xl);
    font-weight: var(--zk-fw-black);
    line-height: 1.2;
    color: var(--zk-black);
    margin-bottom: var(--zk-space-6);
}

.zk-benefit-list {
    display: flex;
    flex-direction: column;
    gap: var(--zk-space-3);
    margin-bottom: var(--zk-space-8);
}

.zk-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--zk-space-3);
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-secondary);
}

.zk-benefit-item__icon {
    width: 20px;
    height: 20px;
    background: var(--zk-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.zk-benefit-item__icon svg {
    width: 10px;
    height: 10px;
    color: var(--zk-white);
}

/* ROI Section */
.zk-roi {
    display: flex;
    flex-direction: column;
    gap: var(--zk-space-5);
}

.zk-roi__eyebrow {
    font-size: var(--zk-fs-xs);
    font-weight: var(--zk-fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zk-text-muted);
    margin-bottom: var(--zk-space-1);
}

.zk-roi__number {
    font-size: 42px;
    font-weight: var(--zk-fw-black);
    color: var(--zk-black);
    line-height: 1;
    margin-bottom: var(--zk-space-1);
}

.zk-roi__note {
    font-size: var(--zk-fs-xs);
    color: var(--zk-text-muted);
    font-style: italic;
    margin-bottom: var(--zk-space-5);
}

.zk-roi-cards {
    display: flex;
    flex-direction: column;
    gap: var(--zk-space-3);
    margin-bottom: var(--zk-space-6);
}

.zk-roi-card {
    display: flex;
    align-items: center;
    gap: var(--zk-space-3);
    padding: var(--zk-space-4);
    background: var(--zk-bg-light);
    border-radius: var(--zk-radius-md);
    border-left: 3px solid var(--zk-yellow);
}

.zk-roi-card__icon {
    width: 36px;
    height: 36px;
    background: var(--zk-yellow);
    border-radius: var(--zk-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zk-roi-card__icon svg {
    width: 18px;
    height: 18px;
    color: var(--zk-black);
}

.zk-roi-card__label {
    font-size: var(--zk-fs-xs);
    color: var(--zk-text-muted);
    margin-bottom: 2px;
}

.zk-roi-card__value {
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-bold);
    color: var(--zk-black);
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.zk-testimonials {
    padding: var(--zk-space-20) 0;
    background: var(--zk-bg-white);
}

.zk-testimonials__header {
    margin-bottom: var(--zk-space-10);
}

.zk-testimonials__track-wrap {
    position: relative;
    overflow: hidden;
}

.zk-testimonials__track {
    display: flex;
    gap: var(--zk-space-6);
    transition: transform 0.4s ease;
    will-change: transform;
}

.zk-testi-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    padding: var(--zk-space-6);
    box-shadow: var(--zk-shadow-md);
    border: 1px solid var(--zk-bg-gray);
    transition: var(--zk-transition);
}

.zk-testi-card:hover {
    box-shadow: var(--zk-shadow-lg);
    transform: translateY(-3px);
}

.zk-testi-card__header {
    display: flex;
    align-items: center;
    gap: var(--zk-space-4);
    margin-bottom: var(--zk-space-4);
}

.zk-testi-card__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--zk-bg-gray);
    border: 3px solid var(--zk-yellow);
}

.zk-testi-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zk-testi-card__name {
    font-size: var(--zk-fs-base);
    font-weight: var(--zk-fw-bold);
    color: var(--zk-black);
    margin-bottom: 2px;
}

.zk-testi-card__role {
    font-size: var(--zk-fs-xs);
    color: var(--zk-text-muted);
}

.zk-testi-card__quote {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--zk-space-4);
    position: relative;
    padding-left: var(--zk-space-4);
}

.zk-testi-card__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 32px;
    color: var(--zk-yellow);
    font-style: normal;
    line-height: 1;
}

.zk-testi-stars {
    display: flex;
    gap: 3px;
}

.zk-testi-stars svg {
    width: 16px;
    height: 16px;
    color: var(--zk-yellow-dark);
    fill: var(--zk-yellow-dark);
}

/* Slider Dots */
.zk-slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--zk-space-2);
    margin-top: var(--zk-space-8);
}

.zk-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--zk-bg-gray);
    cursor: pointer;
    transition: var(--zk-transition);
    border: none;
    padding: 0;
}

.zk-slider-dot.is-active {
    background: var(--zk-red);
    width: 24px;
    border-radius: var(--zk-radius-full);
}

/* ============================================================
   NEWS SECTION
============================================================ */
.zk-news {
    padding: var(--zk-space-20) 0;
    background: var(--zk-bg-light);
}

.zk-news__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: var(--zk-space-6);
    margin-bottom: var(--zk-space-10);
}

.zk-news-grid--home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--zk-space-5);
}

.zk-news-card {
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    overflow: hidden;
    box-shadow: var(--zk-shadow-sm);
    transition: var(--zk-transition);
    border: 1px solid var(--zk-bg-gray);
    display: flex;
    flex-direction: column;
}

.zk-news-card:hover {
    box-shadow: var(--zk-shadow-lg);
    transform: translateY(-3px);
}

.zk-news-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--zk-bg-gray);
}

.zk-news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zk-transition-slow);
}

.zk-news-card:hover .zk-news-card__img img {
    transform: scale(1.05);
}

.zk-news-card__body {
    padding: var(--zk-space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zk-news-card__date {
    font-size: var(--zk-fs-xs);
    color: var(--zk-text-muted);
    margin-bottom: var(--zk-space-2);
    display: flex;
    align-items: center;
    gap: var(--zk-space-1);
}

.zk-news-card__title {
    font-size: var(--zk-fs-base);
    font-weight: var(--zk-fw-bold);
    color: var(--zk-black);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-bottom: var(--zk-space-3);
}

.zk-news-card__link {
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-bold);
    color: var(--zk-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: var(--zk-space-1);
    transition: var(--zk-transition);
}

.zk-news-card__link:hover {
    gap: var(--zk-space-2);
    color: var(--zk-red-dark);
}

/* ============================================================
   FOOTER
============================================================ */
.zk-footer {
    background: var(--zk-yellow);
    padding: var(--zk-space-16) 0 0;
}

.zk-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr);
    gap: var(--zk-space-6);
    padding-bottom: var(--zk-space-12);
    max-width: 100%;
}

.zk-footer__brand,
.zk-footer__col {
    min-width: 0;
}

.zk-footer__links a,
.zk-footer__contact-item a,
.zk-footer__contact-item address {
    overflow-wrap: break-word;
    word-break: break-word;
}

.zk-footer__brand {
    padding-right: var(--zk-space-6);
}

.zk-footer__logo {
    margin-bottom: var(--zk-space-4);
    display: flex;
    align-items: center;
    gap: var(--zk-space-3);
}

.zk-footer__logo img {
    height: 44px;
    width: auto;
}

.zk-footer__tagline {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-secondary);
    line-height: var(--zk-lh-loose);
    margin-bottom: var(--zk-space-5);
}

.zk-footer__social {
    display: flex;
    gap: var(--zk-space-2);
}

.zk-footer__social a {
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zk-black);
    transition: var(--zk-transition);
}

.zk-footer__social a:hover {
    background: var(--zk-red);
    color: var(--zk-white);
}

.zk-footer__social svg {
    width: 16px;
    height: 16px;
}

.zk-footer__col-title {
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--zk-black);
    margin-bottom: var(--zk-space-5);
    padding-bottom: var(--zk-space-3);
    border-bottom: 2px solid rgba(0,0,0,0.15);
}

.zk-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--zk-space-2);
}

.zk-footer__link {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-secondary);
    transition: var(--zk-transition);
    display: flex;
    align-items: center;
    gap: var(--zk-space-2);
}

.zk-footer__link:hover {
    color: var(--zk-red);
    padding-left: var(--zk-space-2);
}

.zk-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--zk-space-2);
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-secondary);
    margin-bottom: var(--zk-space-3);
}

.zk-footer__contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--zk-red);
}

.zk-footer__bottom {
    border-top: 1px solid rgba(0,0,0,0.12);
    padding: var(--zk-space-5) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--zk-space-3);
}

.zk-footer__copyright {
    font-size: var(--zk-fs-xs);
    color: var(--zk-text-muted);
}

.zk-footer__legal {
    display: flex;
    gap: var(--zk-space-5);
}

.zk-footer__legal a {
    font-size: var(--zk-fs-xs);
    color: var(--zk-text-muted);
    transition: var(--zk-transition);
}

.zk-footer__legal a:hover {
    color: var(--zk-red);
}

/* ============================================================
   PAGE LAYOUTS
============================================================ */
.zk-page-hero {
    background: var(--zk-yellow);
    padding: var(--zk-space-16) 0 var(--zk-space-12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zk-page-hero__eyebrow {
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zk-red);
    margin-bottom: var(--zk-space-3);
}

.zk-page-hero__title {
    font-size: var(--zk-fs-3xl);
    font-weight: var(--zk-fw-black);
    color: var(--zk-black);
    margin-bottom: var(--zk-space-4);
}

.zk-page-hero__subtitle {
    font-size: var(--zk-fs-md);
    color: var(--zk-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   ARCHIVE / GRID PAGES
============================================================ */
.zk-archive {
    padding: var(--zk-space-20) 0;
}

.zk-archive__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--zk-space-6);
}

.zk-archive-filter {
    display: flex;
    gap: var(--zk-space-2);
    flex-wrap: wrap;
    margin-bottom: var(--zk-space-8);
}

.zk-filter-btn {
    padding: 8px 20px;
    border-radius: var(--zk-radius-full);
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-semi);
    background: var(--zk-bg-gray);
    color: var(--zk-text-secondary);
    cursor: pointer;
    transition: var(--zk-transition);
    border: 2px solid transparent;
}

.zk-filter-btn:hover,
.zk-filter-btn.is-active {
    background: var(--zk-red);
    color: var(--zk-white);
    border-color: var(--zk-red);
}

/* ============================================================
   FRANCHISE PAGE
============================================================ */
.zk-franchise-page-section {
    padding: var(--zk-space-20) 0;
}

.zk-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--zk-space-6);
}

.zk-package-card {
    background: var(--zk-white);
    border-radius: var(--zk-radius-xl);
    padding: var(--zk-space-8);
    box-shadow: var(--zk-shadow-md);
    border: 2px solid var(--zk-bg-gray);
    transition: var(--zk-transition);
    position: relative;
    overflow: hidden;
}

.zk-package-card--featured {
    border-color: var(--zk-red);
    box-shadow: var(--zk-shadow-xl);
}

.zk-package-card--featured::before {
    content: 'TERPOPULER';
    position: absolute;
    top: 20px;
    right: -28px;
    background: var(--zk-red);
    color: var(--zk-white);
    font-size: 10px;
    font-weight: var(--zk-fw-bold);
    letter-spacing: 0.08em;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.zk-package-card:hover {
    border-color: var(--zk-yellow);
    box-shadow: var(--zk-shadow-xl);
    transform: translateY(-4px);
}

.zk-package-card__name {
    font-size: var(--zk-fs-xl);
    font-weight: var(--zk-fw-black);
    color: var(--zk-black);
    margin-bottom: var(--zk-space-2);
}

.zk-package-card__price {
    font-size: 32px;
    font-weight: var(--zk-fw-black);
    color: var(--zk-red);
    margin-bottom: var(--zk-space-6);
}

.zk-package-card__price span {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-muted);
    font-weight: var(--zk-fw-normal);
}

.zk-package-features {
    display: flex;
    flex-direction: column;
    gap: var(--zk-space-3);
    margin-bottom: var(--zk-space-8);
}

.zk-package-feature {
    display: flex;
    gap: var(--zk-space-3);
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-secondary);
}

.zk-package-feature svg {
    width: 18px;
    height: 18px;
    color: var(--zk-red);
    flex-shrink: 0;
}

/* ROI Calculator */
.zk-roi-calc {
    background: var(--zk-yellow);
    border-radius: var(--zk-radius-xl);
    padding: var(--zk-space-10) var(--zk-space-12);
    box-shadow: var(--zk-shadow-lg);
}

.zk-roi-calc__title {
    font-size: var(--zk-fs-2xl);
    font-weight: var(--zk-fw-black);
    color: var(--zk-black);
    margin-bottom: var(--zk-space-2);
}

.zk-roi-calc__subtitle {
    color: var(--zk-text-secondary);
    margin-bottom: var(--zk-space-8);
}

.zk-roi-calc__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--zk-space-6) var(--zk-space-10);
    align-items: start;
}

.zk-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--zk-space-2);
}

.zk-form-label {
    font-size: var(--zk-fs-sm);
    font-weight: var(--zk-fw-semi);
    color: var(--zk-text-primary);
}

.zk-form-input,
.zk-form-select {
    padding: 12px 16px;
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: var(--zk-radius-md);
    font-size: var(--zk-fs-base);
    font-family: inherit;
    background: var(--zk-white);
    color: var(--zk-text-primary);
    transition: var(--zk-transition);
}

.zk-form-input:focus,
.zk-form-select:focus {
    border-color: var(--zk-red);
    box-shadow: 0 0 0 3px rgba(217,31,38,0.1);
    outline: none;
}

.zk-roi-result {
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    padding: var(--zk-space-6);
    box-shadow: var(--zk-shadow-md);
}

.zk-roi-result__label {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-muted);
    margin-bottom: var(--zk-space-2);
}

.zk-roi-result__value {
    font-size: 36px;
    font-weight: var(--zk-fw-black);
    color: var(--zk-red);
    margin-bottom: var(--zk-space-1);
}

/* ============================================================
   OUTLET PAGE
============================================================ */
.zk-outlet-page {
    padding: var(--zk-space-16) 0;
}

.zk-outlet-page__inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--zk-space-8);
}

.zk-outlet-sidebar {
    position: sticky;
    top: calc(var(--zk-total-header) + 20px);
    height: fit-content;
}

.zk-outlet-filter-box {
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    padding: var(--zk-space-6);
    box-shadow: var(--zk-shadow-md);
    margin-bottom: var(--zk-space-5);
}

.zk-outlet-filter-box__title {
    font-size: var(--zk-fs-base);
    font-weight: var(--zk-fw-bold);
    color: var(--zk-black);
    margin-bottom: var(--zk-space-4);
    padding-bottom: var(--zk-space-3);
    border-bottom: 2px solid var(--zk-yellow);
}

.zk-outlet-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--zk-space-5);
}

.zk-outlet-card {
    background: var(--zk-white);
    border-radius: var(--zk-radius-lg);
    overflow: hidden;
    box-shadow: var(--zk-shadow-sm);
    border: 1px solid var(--zk-bg-gray);
    transition: var(--zk-transition);
}

.zk-outlet-card:hover {
    box-shadow: var(--zk-shadow-lg);
    transform: translateY(-3px);
    border-color: var(--zk-yellow);
}

.zk-outlet-card__img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--zk-bg-gray);
}

.zk-outlet-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zk-transition-slow);
}

.zk-outlet-card:hover .zk-outlet-card__img img {
    transform: scale(1.05);
}

.zk-outlet-card__body {
    padding: var(--zk-space-4);
}

.zk-outlet-card__name {
    font-size: var(--zk-fs-base);
    font-weight: var(--zk-fw-bold);
    margin-bottom: var(--zk-space-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.zk-outlet-card__address {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-muted);
    margin-bottom: var(--zk-space-3);
    display: flex;
    align-items: flex-start;
    gap: var(--zk-space-1);
}

.zk-outlet-card__address span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zk-outlet-card__address svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--zk-red);
}

/* ============================================================
   FAQ
============================================================ */
.zk-faq {
    max-width: 800px;
    margin: 0 auto;
}

.zk-faq-item {
    border: 1px solid var(--zk-bg-gray);
    border-radius: var(--zk-radius-md);
    margin-bottom: var(--zk-space-3);
    overflow: hidden;
    transition: var(--zk-transition);
}

.zk-faq-item.is-open {
    box-shadow: var(--zk-shadow-md);
    border-color: var(--zk-yellow);
}

.zk-faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--zk-space-5) var(--zk-space-6);
    font-size: var(--zk-fs-base);
    font-weight: var(--zk-fw-semi);
    color: var(--zk-text-primary);
    background: var(--zk-white);
    text-align: left;
    cursor: pointer;
    border: none;
    gap: var(--zk-space-4);
}

.zk-faq-item__icon {
    width: 24px;
    height: 24px;
    background: var(--zk-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--zk-transition);
}

.zk-faq-item__icon svg {
    width: 14px;
    height: 14px;
    color: var(--zk-black);
    transition: var(--zk-transition);
}

.zk-faq-item.is-open .zk-faq-item__icon {
    background: var(--zk-red);
}

.zk-faq-item.is-open .zk-faq-item__icon svg {
    color: var(--zk-white);
    transform: rotate(45deg);
}

.zk-faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.zk-faq-item__content {
    padding: 0 var(--zk-space-6) var(--zk-space-5);
    font-size: var(--zk-fs-base);
    color: var(--zk-text-secondary);
    line-height: var(--zk-lh-loose);
}

/* ============================================================
   CONTACT FORM
============================================================ */
.zk-contact-form {
    background: var(--zk-white);
    border-radius: var(--zk-radius-xl);
    padding: var(--zk-space-10);
    box-shadow: var(--zk-shadow-lg);
}

.zk-contact-form .zk-grid--2 {
    gap: var(--zk-space-5);
    margin-bottom: var(--zk-space-5);
}

.zk-form-textarea {
    padding: 12px 16px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--zk-radius-md);
    font-size: var(--zk-fs-base);
    font-family: inherit;
    background: var(--zk-white);
    color: var(--zk-text-primary);
    width: 100%;
    resize: vertical;
    min-height: 140px;
    transition: var(--zk-transition);
}

.zk-form-textarea:focus {
    border-color: var(--zk-red);
    box-shadow: 0 0 0 3px rgba(217,31,38,0.1);
    outline: none;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.zk-about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: var(--zk-space-3);
    border-radius: var(--zk-radius-xl);
    overflow: hidden;
}

.zk-about-gallery__item {
    overflow: hidden;
    background: var(--zk-bg-gray);
}

.zk-about-gallery__item:first-child {
    grid-row: span 2;
}

.zk-about-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zk-transition-slow);
}

.zk-about-gallery__item:hover img {
    transform: scale(1.05);
}

.zk-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--zk-space-6);
}

.zk-vm-card {
    padding: var(--zk-space-8);
    border-radius: var(--zk-radius-xl);
    position: relative;
    overflow: hidden;
}

.zk-vm-card--vision {
    background: var(--zk-yellow);
}

.zk-vm-card--mission {
    background: var(--zk-red);
}

.zk-vm-card__title {
    font-size: var(--zk-fs-xl);
    font-weight: var(--zk-fw-black);
    margin-bottom: var(--zk-space-5);
}

.zk-vm-card--vision .zk-vm-card__title { color: var(--zk-black); }
.zk-vm-card--mission .zk-vm-card__title { color: var(--zk-white); }

.zk-vm-card__text {
    font-size: var(--zk-fs-base);
    line-height: var(--zk-lh-loose);
}

.zk-vm-card--vision .zk-vm-card__text { color: var(--zk-text-secondary); }
.zk-vm-card--mission .zk-vm-card__text { color: rgba(255,255,255,0.85); }

/* ============================================================
   BREADCRUMB
============================================================ */
.zk-breadcrumb {
    padding: var(--zk-space-3) 0;
    background: var(--zk-bg-light);
    border-bottom: 1px solid var(--zk-bg-gray);
}

.zk-breadcrumb__inner {
    display: flex;
    align-items: center;
    gap: var(--zk-space-2);
    flex-wrap: wrap;
}

.zk-breadcrumb a,
.zk-breadcrumb span {
    font-size: var(--zk-fs-xs);
    color: var(--zk-text-muted);
}

.zk-breadcrumb a:hover {
    color: var(--zk-red);
}

.zk-breadcrumb__sep {
    color: var(--zk-text-light);
    font-size: 10px;
}

.zk-breadcrumb__current {
    color: var(--zk-text-primary) !important;
    font-weight: var(--zk-fw-medium);
}

/* ============================================================
   SEARCH & 404
============================================================ */
.zk-search-page,
.zk-404-page {
    padding: var(--zk-space-24) 0;
    text-align: center;
}

.zk-404-page__code {
    font-size: 120px;
    font-weight: var(--zk-fw-black);
    color: var(--zk-yellow);
    line-height: 1;
    margin-bottom: var(--zk-space-4);
}

.zk-search-form {
    max-width: 480px;
    margin: var(--zk-space-8) auto 0;
    display: flex;
    gap: var(--zk-space-2);
}

.zk-search-form input {
    flex: 1;
    padding: 13px 18px;
    border: 2px solid var(--zk-bg-gray);
    border-radius: var(--zk-radius-md);
    font-size: var(--zk-fs-base);
    font-family: inherit;
    background: var(--zk-white);
    transition: var(--zk-transition);
}

.zk-search-form input:focus {
    border-color: var(--zk-red);
    outline: none;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.zk-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    /* CSS-only failsafe: if JS never adds .is-visible (IntersectionObserver
       failing inside the Customizer preview iframe, JS load error, JS
       disabled, etc.), force the element visible after 1.5s instead of
       leaving it permanently hidden. The JS-driven .is-visible class still
       provides the normal scroll-triggered animation in the common case. */
    animation: zkRevealFailsafe 0s 1.5s forwards;
}

@keyframes zkRevealFailsafe {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zk-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.zk-reveal-delay-1 { transition-delay: 0.1s; }
.zk-reveal-delay-2 { transition-delay: 0.2s; }
.zk-reveal-delay-3 { transition-delay: 0.3s; }
.zk-reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   BACK TO TOP
============================================================ */
.zk-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--zk-red);
    color: var(--zk-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--zk-shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--zk-transition);
    z-index: 990;
    border: none;
}

.zk-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zk-back-top:hover {
    background: var(--zk-red-dark);
    transform: translateY(-3px);
    box-shadow: var(--zk-shadow-lg);
}

.zk-back-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   PRELOADER
============================================================ */
.zk-preloader {
    position: fixed;
    inset: 0;
    background: var(--zk-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    /* CSS-only failsafe: hides itself after 5s even if JS never runs
       (e.g. cached/broken script, JS disabled, slow network). The JS-driven
       .is-done class still takes over earlier in the normal case. */
    animation: zkPreloaderFailsafe 0s 5s forwards;
}

@keyframes zkPreloaderFailsafe {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.zk-preloader.is-done {
    opacity: 0;
    visibility: hidden;
}

.zk-preloader__spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: var(--zk-red);
    border-radius: 50%;
    animation: zkSpin 0.8s linear infinite;
}

@keyframes zkSpin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   ACCESSIBILITY
============================================================ */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

:focus-visible {
    outline: 3px solid var(--zk-red);
    outline-offset: 3px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    z-index: 10000;
    background: var(--zk-red);
    color: var(--zk-white);
    padding: 10px 20px;
    border-radius: var(--zk-radius-sm);
    font-weight: var(--zk-fw-bold);
    transition: top 0.2s;
}

.skip-link:focus {
    top: 10px;
}

/* ============================================================
   WORDPRESS DEFAULT SUPPORT
============================================================ */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: var(--zk-fs-sm);
    color: var(--zk-text-muted);
    text-align: center;
    margin-top: var(--zk-space-2);
}

.alignleft { float: left; margin: 0 var(--zk-space-5) var(--zk-space-5) 0; }
.alignright { float: right; margin: 0 0 var(--zk-space-5) var(--zk-space-5); }
.aligncenter { display: block; margin: 0 auto var(--zk-space-5); }
.alignwide { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); max-width: 100vw; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */

/* 1280px — Large Desktop */
@media (max-width: 1280px) {
    :root { --zk-container: 1100px; }
    .zk-hero__title { font-size: 44px; }
    .zk-menu-card { flex: 0 0 calc(25% - var(--zk-space-4)); }
}

/* 1024px — Tablet Landscape / Small Desktop */
@media (max-width: 1024px) {
    :root {
        --zk-space-20: 64px;
        --zk-fs-4xl: 40px;
        --zk-fs-3xl: 32px;
    }

    .zk-topbar { display: none; }
    .zk-header { top: 0; }
    .zk-nav    { display: none; }
    .zk-hamburger { display: flex; }
    .zk-mobile-nav { display: block; }
    .zk-floating-widget { display: none; }

    .zk-hero__inner { grid-template-columns: 1fr 1fr; gap: var(--zk-space-6); }
    .zk-stats__grid { grid-template-columns: repeat(4,1fr); gap: var(--zk-space-3); }
    .zk-timeline-section__inner { grid-template-columns: 1fr; gap: var(--zk-space-8); }
    .zk-outlet-map__inner { grid-template-columns: 1fr; }
    .zk-outlet-map__content { grid-template-columns: 1fr; }
    .zk-outlet-map__text { grid-row: auto; }
    .zk-map-svg-wrap { grid-column: 1; grid-row: auto; }
    .zk-franchise-card { grid-template-columns: 1fr 1fr; }
    .zk-franchise-card__col--middle { display: none; }
    .zk-news-grid--home { grid-template-columns: repeat(2,1fr); }
    .zk-footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--zk-space-6); }
    .zk-footer__brand { grid-column: 1 / -1; }
    .zk-package-grid { grid-template-columns: 1fr; gap: var(--zk-space-5); }
    .zk-package-card--featured::before { display: none; }
    .zk-outlet-page__inner { grid-template-columns: 1fr; }
    .zk-outlet-sidebar { position: static; }
    .zk-roi-calc__grid { grid-template-columns: 1fr; }
    .zk-archive__grid { grid-template-columns: repeat(3,1fr); }
}

/* 768px — Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --zk-space-16: 48px;
        --zk-space-20: 48px;
    }

    .zk-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .zk-hero__subtitle { margin: 0 auto var(--zk-space-8); }
    .zk-hero__actions { justify-content: center; }
    .zk-hero__image { max-width: 80%; margin: 0 auto; }

    .zk-stats__grid { grid-template-columns: repeat(2,1fr); }
    .zk-timeline-gallery { grid-template-columns: repeat(3,1fr); }
    .zk-timeline-h { flex-wrap: wrap; gap: var(--zk-space-5); }
    .zk-timeline-h::before { display: none; }
    .zk-timeline-h__item { flex: 0 0 45%; text-align: left; padding-top: 0; }
    .zk-timeline-h__dot { display: none; }

    .zk-menu-section__header { grid-template-columns: 1fr; }
    .zk-menu-card { flex: 0 0 calc(50% - var(--zk-space-3)); }

    .zk-franchise-card { grid-template-columns: 1fr; }
    .zk-testimonials__track .zk-testi-card { flex: 0 0 100%; }

    .zk-news-grid--home { grid-template-columns: repeat(2,1fr); }
    .zk-news__header { grid-template-columns: 1fr; }

    .zk-footer__grid { grid-template-columns: 1fr 1fr; }
    .zk-footer__bottom { flex-direction: column; text-align: center; }

    .zk-vision-mission { grid-template-columns: 1fr; }
    .zk-about-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .zk-about-gallery__item:first-child { grid-row: auto; }

    .zk-archive__grid { grid-template-columns: repeat(2,1fr); }
    .zk-outlet-list-grid { grid-template-columns: 1fr; }

    .zk-roi-calc { padding: var(--zk-space-6); }
    .zk-contact-form { padding: var(--zk-space-6); }
}

/* 480px — Large Mobile */
@media (max-width: 480px) {
    :root {
        --zk-fs-4xl:  32px;
        --zk-fs-3xl:  26px;
        --zk-fs-2xl:  22px;
        --zk-fs-xl:   20px;
        --zk-space-8: 24px;
    }

    .zk-container { padding-left: var(--zk-space-4); padding-right: var(--zk-space-4); }

    .zk-hero__title { font-size: 30px; }
    .zk-hero__actions { flex-direction: column; align-items: stretch; }
    .zk-hero__actions .zk-btn { text-align: center; }

    .zk-stats__grid { grid-template-columns: repeat(2,1fr); gap: var(--zk-space-3); }
    .zk-stat-card__number { font-size: 28px; }

    .zk-menu-card { flex: 0 0 calc(80% - var(--zk-space-3)); }

    .zk-news-grid--home { grid-template-columns: 1fr; }
    .zk-footer__grid { grid-template-columns: 1fr; }

    .zk-quality-badges { gap: var(--zk-space-4); flex-direction: column; align-items: center; }

    .zk-archive__grid { grid-template-columns: 1fr; }
    .zk-package-grid { grid-template-columns: 1fr; }
}

/* 375px — Small Mobile */
@media (max-width: 375px) {
    :root { --zk-fs-4xl: 28px; }
    .zk-btn { padding: 11px 20px; font-size: 11px; }
}

/* ============================================================
   KEUNGGULAN SECTION
============================================================ */
.zk-keunggulan {
    background: var(--zk-white);
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.zk-keunggulan__badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 12px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.zk-keunggulan__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--zk-black);
    font-size: 15px;
    font-weight: 700;
}
.zk-keunggulan__icon {
    width: 36px;
    height: 36px;
    background: var(--zk-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.zk-keunggulan__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--zk-black);
}
@media (max-width: 767px) {
    .zk-keunggulan__badges { gap: 20px; padding: 12px 20px; }
    .zk-keunggulan__badge { font-size: 13px; }
}

/* ============================================================
   CTA HOME SECTION
============================================================ */
.zk-cta-home {
    background: var(--zk-yellow);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.zk-cta-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}
.zk-cta-home__inner {
    position: relative;
    text-align: center;
}
.zk-cta-home__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--zk-black);
    margin: 0 0 16px;
}
.zk-cta-home__subtitle {
    font-size: 18px;
    color: rgba(0,0,0,.7);
    max-width: 600px;
    margin: 0 auto 36px;
}
.zk-cta-home__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.zk-btn--outline-white {
    background: transparent;
    border: 2px solid var(--zk-black);
    color: var(--zk-black);
    font-weight: 700;
}
.zk-btn--outline-white:hover {
    background: var(--zk-black);
    color: var(--zk-white);
}
.zk-btn--ghost {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
}
.zk-btn--ghost:hover {
    border-color: var(--zk-black);
    color: var(--zk-black);
}

/* ============================================================
   SINGLE PRODUCT (menu_item)
============================================================ */
.zk-product-hero {
    background: var(--zk-white);
    padding: 60px 0;
}
.zk-product-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.zk-product-hero__image {
    position: relative;
}
.zk-product-hero__img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.zk-product-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.zk-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}
.zk-badge--halal {
    background: #e8f5e9;
    color: #2e7d32;
}
.zk-badge--cat {
    background: var(--zk-yellow);
    color: var(--zk-black);
}
.zk-product-cat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--zk-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.zk-product-hero__title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--zk-black);
    margin: 0 0 16px;
    line-height: 1.2;
}
.zk-product-hero__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}
.zk-product-price-from {
    font-size: 14px;
    color: #666;
}
.zk-product-price-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--zk-red);
}
.zk-product-price-note {
    font-size: var(--zk-fs-base);
    font-weight: 600;
    color: var(--zk-text-muted);
    font-style: italic;
}
.zk-product-specs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--zk-yellow-light);
    border-radius: 12px;
    flex-wrap: wrap;
}
.zk-product-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.zk-product-spec__label {
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}
.zk-product-spec__val {
    font-size: 14px;
    font-weight: 700;
}
.zk-product-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}
.zk-product-info-block {
    background: #f9f9f9;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}
.zk-product-info-block strong {
    display: block;
    margin-bottom: 4px;
    color: var(--zk-black);
}
.zk-product-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.zk-product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.zk-product-gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}
@media (max-width: 767px) {
    .zk-product-hero__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   SINGLE OUTLET
============================================================ */
.zk-outlet-detail-hero {
    padding: 60px 0;
    background: var(--zk-white);
}
.zk-outlet-detail-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.zk-outlet-detail-hero__img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 16/10;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.zk-outlet-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 767px) {
    .zk-outlet-detail-hero__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.zk-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}
.zk-contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 28px;
}
.zk-contact-map {
    margin-top: 32px;
}
.zk-contact-map iframe {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.zk-contact-form-box {
    background: var(--zk-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.06);
}
.zk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.zk-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--zk-black);
    margin-bottom: 6px;
}
.zk-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color .2s;
    box-sizing: border-box;
    background: #fafafa;
    color: var(--zk-black);
}
.zk-form-input:focus {
    outline: none;
    border-color: var(--zk-yellow);
    background: var(--zk-white);
}
.zk-form-textarea {
    resize: vertical;
    min-height: 120px;
}
.zk-form-select {
    cursor: pointer;
    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%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.zk-required { color: var(--zk-red); }
@media (max-width: 767px) {
    .zk-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .zk-form-row { grid-template-columns: 1fr; }
    .zk-contact-form-box { padding: 28px 20px; }
}

/* ============================================================
   BERITA ARCHIVE (home.php)
============================================================ */
.zk-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.zk-filter-tab {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--zk-black);
    color: var(--zk-black);
    text-decoration: none;
    transition: all .2s;
}
.zk-filter-tab:hover,
.zk-filter-tab.is-active {
    background: var(--zk-red);
    border-color: var(--zk-red);
    color: var(--zk-white);
}

/* ============================================================
   SHARE BUTTONS (single.php)
============================================================ */
.zk-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--zk-black);
    border: none;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.zk-share-btn svg {
    width: 16px;
    height: 16px;
}
.zk-share-btn:hover {
    background: var(--zk-red);
    color: var(--zk-white);
}

/* ============================================================
   WHATSAPP BUTTON VARIANT
============================================================ */
.zk-btn--whatsapp {
    background: #25D366;
    color: var(--zk-white);
    border: none;
}
.zk-btn--whatsapp:hover {
    background: #1DA851;
}
.zk-btn--whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
}
