/* ============================================================
   DESI KOTHI ICE CREAM — Main Stylesheet
   Design: Dark theme #141414, accent #F9A526
============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: #141414;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────────────── */
.dk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F9A526;
    color: #000000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 20px;
    padding: 20px 32px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.dk-btn:hover { background: #ffb84d; transform: translateY(-1px); color: #000; }
.dk-btn:active { transform: translateY(0); }

.dk-section-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1.05;
}

/* ================================================================
   NAVBAR
================================================================ */
.dk-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(20, 20, 20, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 0 0 16px 40px;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}
.dk-navbar.scrolled {
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dk-navbar-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 20px 40px;
    max-width: 1440px;
    margin: 0 auto;
    transition: padding 0.35s ease;
}
.dk-navbar.scrolled .dk-navbar-inner { padding: 12px 40px; }

.dk-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.dk-logo img { height: 90px; width: auto; transition: height 0.35s ease; }
.dk-navbar.scrolled .dk-logo img { height: 58px; }
.dk-logo-fallback {
    font-family: 'Luckiest Guy', cursive;
    font-size: 20px;
    color: #F9A526;
    letter-spacing: 0.05em;
}

.dk-nav-pills {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}
.dk-nav-pill {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}
.dk-nav-pill:hover, .dk-nav-pill.active {
    background: #F9A526;
    color: #000;
    border-color: #F9A526;
}

.dk-nav-social {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.dk-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    font-size: 20px;
    transition: all 0.2s;
}
.dk-social-btn:hover { background: #F9A526; color: #000; border-color: #F9A526; }

.dk-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.dk-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.dk-navbar:has(.dk-mobile-menu.open) {
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.dk-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0 24px 20px;
}
.dk-mobile-menu a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dk-mobile-menu.open { display: flex; }

/* ================================================================
   HERO
================================================================ */
.dk-hero {
    position: relative;
    height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #141414;
}

.dk-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.dk-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dk-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,20,20,0.88) 0%, rgba(20,20,20,0.55) 45%, rgba(20,20,20,0.15) 100%);
}

.dk-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.dk-hero-content { display: flex; flex-direction: column; justify-content: center; }

.dk-hero-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(40px, 4.9vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}
.accent { color: #F9A526; }

.dk-hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
    max-width: 467px;
    margin-bottom: 33px;
}

.dk-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.dk-hero-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.dk-hero-link:hover { color: #F9A526; }

.dk-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    /* hidden — hero background already contains the product imagery */
    visibility: hidden;
    pointer-events: none;
}
.dk-hero-image img {
    max-height: 600px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}

.dk-hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
    align-items: center;
}
.dk-indicator {
    height: 8px;
    border-radius: 99px;
    transition: all 0.4s;
    cursor: pointer;
}
.dk-indicator.active { width: 100px; background: #ffffff; }
.dk-indicator:not(.active) { width: 77px; background: rgba(255,255,255,0.2); }

/* ================================================================
   SHARED SECTION WRAPPER
================================================================ */
.dk-section { padding: 80px 0; }
.dk-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}
.dk-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}
.dk-section-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F9A526;
    margin-bottom: 10px;
}

/* Centered divider header — used by Reviews & Instagram sections */
.dk-divider-header { text-align: center; margin-bottom: 24px; }
.dk-divider-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F9A526;
    margin-bottom: 12px;
}
.dk-divider-eyebrow .dk-divider-line { width: 32px; }
.dk-divider-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.dk-divider-title .dk-divider-line { flex: 1 1 200px; max-width: 360px; margin-top: -12px; }
.dk-divider-title .dk-section-title {
    white-space: nowrap;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 0;
}
.dk-divider-line { height: 1px; background: rgba(255,255,255,0.15); }
.dk-divider-lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.dk-divider-lead .bi-star-fill { color: #F9A526; font-size: 14px; }
@media (max-width: 900px) {
    .dk-divider-title .dk-section-title { font-size: 32px; }
}
@media (max-width: 640px) {
    .dk-divider-title .dk-divider-line { display: none; }
    .dk-divider-title .dk-section-title { white-space: normal; font-size: 26px; }
}

/* ================================================================
   CATEGORY SLIDER
================================================================ */
.dk-categories {
    background: #141414;
    padding: 120px 0 80px;
    overflow: hidden;
}

.dk-cat-row-wrap {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.dk-cat-track-wrap { overflow: hidden; }
.dk-cat-track {
    display: flex;
    gap: 16px;
    padding: 4px 80px 16px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.dk-cat-card {
    flex: 0 0 361px;
    height: 517px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}
.dk-cat-card:hover { transform: translateY(-8px); }
.dk-cat-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.dk-cat-card:hover img { transform: scale(1.07); }

.dk-cat-name {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    font-family: 'Rubik Dirt', cursive;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    line-height: normal;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.dk-cat-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(204,204,204,0.8);
    background: #fff;
    color: #141414;
    font-size: 24px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.dk-cat-arrow:hover { background: #F9A526; border-color: #F9A526; }
.dk-cat-arrow-prev { left: 16px; }
.dk-cat-arrow-next { right: 16px; }

.dk-cat-cta {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

/* placeholder when no image */
.dk-cat-placeholder {
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 40px;
}
.dk-cat-placeholder i { font-size: 48px; color: #F9A526; opacity: 0.4; }
.dk-cat-placeholder span {
    font-family: 'Rubik Dirt', cursive;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

/* shared slider nav */
.dk-slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
}
.dk-slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.25);
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.dk-slider-btn:hover { background: #F9A526; border-color: #F9A526; color: #000; }
.dk-slider-dots { display: flex; gap: 8px; align-items: center; }
.dk-dot {
    height: 8px; border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s;
}
.dk-dot.active { width: 32px; background: #fff; }
.dk-dot:not(.active) { width: 8px; background: rgba(255,255,255,0.2); }

/* ================================================================
   FEATURED PRODUCTS
================================================================ */
.dk-products { background: #141414; padding: 80px 0; overflow: hidden; position: relative; }
/* Figma spec: 80px gap between the heading and whatever comes next
   (filter row on the catalogue page, straight to cards on the homepage). */
.dk-products .dk-divider-header { margin-bottom: 80px; }

.dk-cat-filter-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 23px;
    margin-bottom: 80px;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.dk-cat-filter-row::-webkit-scrollbar { height: 5px; }
.dk-cat-filter-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 99px; }
.dk-cat-filter-row::-webkit-scrollbar-track { background: transparent; }
.dk-cat-filter-pill { flex-shrink: 0; }
.dk-cat-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.dk-cat-filter-pill:hover { background: rgba(255,255,255,0.1); }
.dk-cat-filter-pill.active { background: #F9A522; }
.dk-cat-filter-pill.active:hover { background: #F9A522; }
.dk-cat-filter-label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}
.dk-cat-filter-pill.active .dk-cat-filter-label { color: #000; }
@media (max-width: 640px) {
    .dk-cat-filter-row { gap: 12px; }
    .dk-cat-filter-label { font-size: 15px; }
}

/* Product Catalogue — wrapping grid + pagination (replaces the carousel
   for a full "browse all products" page). Reuses the exact same
   .dk-featured-card component as the homepage carousel. */
#catalogueResults {
    transition: opacity 0.25s ease, transform 0.25s ease;
}
#catalogueResults.dk-fade-out {
    opacity: 0;
    transform: translateY(12px);
}
.dk-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 96px;
}
.dk-featured-grid .dk-featured-card { width: auto; flex: none; }
.dk-featured-grid .dk-featured-photo-frame { width: 80%; }

.dk-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 64px;
}
.dk-pagination-num,
.dk-pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.dk-pagination-num:hover,
.dk-pagination-arrow:hover { background: rgba(255,255,255,0.12); }
.dk-pagination-num.active { background: #F9A522; color: #000; }
.dk-pagination-arrow.disabled { opacity: 0.3; pointer-events: none; }

@media (max-width: 1024px) {
    .dk-featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .dk-featured-grid { grid-template-columns: 1fr; }
}

/* decorative outline stencil icons imported from Figma */
.dk-stencil-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.dk-stencil { position: absolute; opacity: 1; z-index: 1; }
.dk-products .dk-stencil-cone     { width: 90px;  left: 6%;  bottom: 6%; }
.dk-products .dk-stencil-sundae   { width: 90px;  left: 27%; bottom: 2%; }
.dk-products .dk-stencil-bucket   { width: 150px; right: 22%; bottom: 0%; }
.dk-products .dk-stencil-popsicle { width: 80px;  right: 6%; bottom: 8%; }
.dk-products .dk-container,
.dk-products .dk-cat-row-wrap,
.dk-products .dk-cat-cta { position: relative; z-index: 2; }

@media (max-width: 900px) {
    .dk-stencil-bg { display: none; }
}

.dk-products-track-wrap { overflow-x: hidden; overflow-y: visible; }
.dk-products-track {
    display: flex;
    gap: 24px;
    padding: 90px 80px 16px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.dk-product-card {
    flex: 0 0 280px;
    background: rgba(255,255,255,0.04);
    border-radius: 40px;
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s;
    cursor: pointer;
}
.dk-product-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
}

.dk-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
}
.dk-product-img img { width: 100%; height: 100%; object-fit: cover; }
.dk-product-img i { font-size: 56px; color: rgba(255,255,255,0.12); }

.dk-product-category {
    font-family: 'Rubik Dirt', cursive;
    font-size: 11px;
    color: #F9A526;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.dk-product-name {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    line-height: 1.25;
}
.dk-product-sizes { display: flex; gap: 6px; flex-wrap: wrap; }
.dk-size-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 99px;
    padding: 3px 10px;
    letter-spacing: 0.04em;
}

.dk-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
}
.dk-product-price {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #F9A526;
}
.dk-product-add {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #F9A526;
    border: none;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.dk-product-add:hover { background: #ffb84d; transform: scale(1.1); }

/* Featured Products card — homepage-only style, matches approved Figma.
   Image floats above the card top edge (~20% overlap) via absolute position + z-index. */
.dk-featured-card {
    flex: 0 0 308px;
    position: relative;
    transition: transform 0.3s;
    cursor: pointer;
}
.dk-featured-card:hover { transform: translateY(-6px); }
.dk-featured-card:hover .dk-featured-body { background: rgba(255,255,255,0.08); }

/* "More Flavours" carousel (Product Details page) — same rounded/bordered
   card language as the hero flavor swatches, plus a lift + image zoom on
   hover for extra polish, and an orange border to match the swatch style. */
.dk-featured-card-flavor .dk-featured-img { top: -40px; }
.dk-featured-card-flavor .dk-featured-photo-frame { width: 200px; }
.dk-featured-card-flavor .dk-featured-img img { transition: transform 0.35s ease, filter 0.2s; }
.dk-featured-card-flavor:hover .dk-featured-img img { transform: scale(1.06); }
.dk-featured-card-flavor .dk-featured-body {
    border-radius: 20px;
    border: 2px solid transparent;
    padding: 200px 16px 24px;
    transition: border-color 0.2s, background 0.2s;
}
.dk-featured-card-flavor:hover .dk-featured-body {
    background: rgba(255,255,255,0.04);
    border-color: #F9A522;
}
.dk-featured-card-flavor .dk-featured-name { font-size: 16px; }

.dk-featured-img {
    position: absolute;
    top: -56px;
    left: 0; right: 0;
    z-index: 2;
    display: flex; align-items: flex-start; justify-content: center;
    pointer-events: none;
}
/* Frame keeps every card image contained to the same footprint so it
   can't overlap the text below — transparent, no panel behind it,
   so cutout photos show directly with no added background. */
.dk-featured-photo-frame {
    width: 246px;
    max-width: 80%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dk-featured-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 16px 24px rgba(0,0,0,0.45));
}
.dk-featured-img i { font-size: 48px; color: rgba(255,255,255,0.15); }

.dk-featured-body {
    position: relative;
    z-index: 1;
    height: 100%;
    background: rgba(255,255,255,0.04);
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 250px 32px 32px;
    width: 100%;
    transition: background 0.3s;
    box-sizing: border-box;
}
.dk-featured-name {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.dk-featured-sizes { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.dk-featured-sizes span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 99px;
    padding: 8px 16px;
    white-space: nowrap;
}
.dk-featured-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================================================================
   ABOUT — Our Story section
================================================================ */
.dk-story-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}
.dk-story-media { position: relative; }
.dk-story-photo {
    aspect-ratio: 4 / 5;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}
.dk-story-photo img { width: 100%; height: 100%; object-fit: cover; }
.dk-story-quote {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #F9A526;
    color: #141414;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    max-width: 200px;
}
.dk-story-content .dk-section-sub { margin-bottom: 8px; }
.dk-story-content .dk-section-title { margin-bottom: 20px; }
.dk-story-prose { margin-bottom: 8px; }
@media (max-width: 900px) {
    .dk-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .dk-story-photo { aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
    /* Was switching to a static full-width block below the photo, which
       roughly doubled the media block's height. Keep it as a compact
       overlay (like desktop) so the section stays a normal photo height. */
    .dk-story-quote { font-size: 14px; padding: 14px 18px; max-width: 160px; }
    .dk-story-content { text-align: center; }
}

.dk-about-img-placeholder {
    width: 100%; height: 100%;
    min-height: 460px;
    background: rgba(249,165,38,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 100px;
}

/* Secondary/outline button — pairs with .dk-btn on dark sections */
.dk-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 20px;
    padding: 19px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.dk-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }

/* About page — Made Right (editorial promise list) */
.dk-promise-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
    margin-top: 48px;
}
.dk-promise-intro { position: sticky; top: 120px; }
.dk-promise-photo {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}
.dk-promise-photo img { width: 100%; display: block; }
@media (max-width: 900px) {
    .dk-promise-photo { max-width: 360px; }
}
.dk-promise-list { display: flex; flex-direction: column; }
.dk-promise-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: padding-left 0.25s ease;
}
.dk-promise-row:first-child { padding-top: 0; }
.dk-promise-row:last-child { border-bottom: none; }
.dk-promise-row:hover { padding-left: 8px; }
.dk-promise-icon {
    flex: none;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(249,165,38,0.12);
    display: flex; align-items: center; justify-content: center;
}
.dk-promise-icon img { width: 32px; height: 32px; }
.dk-promise-text h3 { font-family: 'Clash Display', sans-serif; font-size: 22px; color: #fff; margin-bottom: 7px; }
.dk-promise-text p { font-family: 'DM Sans', sans-serif; font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.65; }
@media (max-width: 900px) {
    .dk-promise-layout { grid-template-columns: 1fr; gap: 32px; }
    .dk-promise-intro { position: static; }
}

/* About page — Mission & Vision */
.dk-mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.dk-mv-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 48px;
    transition: border-color 0.25s ease;
}
.dk-mv-card:hover { border-color: rgba(249,165,38,0.4); }
.dk-mv-card i { font-size: 36px; color: #F9A526; margin-bottom: 20px; display: block; }
.dk-mv-card h3 { font-family: 'Luckiest Guy', cursive; font-size: 26px; font-weight: 400; color: #fff; margin-bottom: 16px; }
.dk-mv-card p { font-family: 'DM Sans', sans-serif; font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* About page — Our Values (accent-border cards, mirrors the Contact page franchise cards) */
.dk-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dk-value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 4px solid #F9A526;
    border-radius: 16px;
    padding: 32px;
}
.dk-value-card i { font-size: 28px; color: #F9A526; margin-bottom: 16px; display: block; }
.dk-value-card h4 { font-family: 'Clash Display', sans-serif; font-size: 18px; color: #fff; margin-bottom: 10px; }
.dk-value-card p { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.dk-franchise-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
    .dk-values-grid { grid-template-columns: 1fr; }
    .dk-mv-grid { grid-template-columns: 1fr; }
}

/* Homepage About Us teaser — full-bleed photo with floating card, matches approved Figma (about.php keeps its own 2-col layout above) */
.dk-about-teaser {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}
.dk-about-teaser-bg { position: absolute; inset: 0; z-index: 0; }
.dk-about-teaser-bg img { width: 100%; height: 100%; object-fit: cover; }
.dk-about-teaser > .dk-container { position: relative; z-index: 1; width: 100%; }
.dk-about-teaser-card {
    background: #141414;
    width: 437px;
    max-width: 100%;
    padding: 64px;
    border-radius: 0 0 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.dk-about-teaser-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 40px;
    font-weight: 400;
    color: #fff;
}
.dk-about-teaser-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.6;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 992px) {
    .dk-about-teaser { min-height: 640px; }
    .dk-about-teaser-card { width: 100%; padding: 40px; }
}
@media (max-width: 640px) {
    /* On mobile the full-width card pinned to the top of the fixed-height
       overlay covers almost the whole photo, leaving only a sliver of
       neck/background visible (and pushing the title up under the fixed
       navbar). Stack image-then-card instead so the full photo shows. */
    .dk-about-teaser { display: block; min-height: 0; overflow: visible; }
    .dk-about-teaser-bg { position: relative; inset: auto; height: 320px; }
    .dk-about-teaser-bg img { object-position: 70% center; }
    .dk-about-teaser > .dk-container { width: 100%; }
    .dk-about-teaser-card { width: 100%; border-radius: 0 0 24px 24px; }
}

/* ================================================================
   REVIEWS
================================================================ */
.dk-reviews { background: #141414; padding: 80px 0; overflow: hidden; }
/* Figma spec (node 2002:12859 -> 2002:12870): 80px gap between the header
   block (eyebrow/title/rating line) and the review card grid below it. */
.dk-reviews .dk-divider-header { margin-bottom: 80px; }

/* Reviews — 3-col masonry (2 cards per column), matches approved Figma; used on both Home and About */
.dk-reviews-grid {
    column-count: 3;
    column-gap: 20px;
}
.dk-review-tile {
    break-inside: avoid;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}
.dk-review-tile-head { display: flex; gap: 15px; align-items: center; }
.dk-review-tile-avatar {
    position: relative;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #A11D56;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500; font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}
.dk-review-tile-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.dk-review-tile-avatar .dk-review-tile-badge {
    position: absolute;
    right: -2px; bottom: -2px;
    z-index: 2;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    overflow: visible;
}
.dk-review-tile-badge img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.dk-review-tile-meta { display: flex; flex-direction: column; gap: 5px; }
.dk-review-tile-name {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500; font-size: 20px; color: #fff;
}
.dk-review-tile-time {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500; font-size: 16px; color: rgba(255,255,255,0.7);
}
.dk-review-tile-stars { display: flex; gap: 1px; }
.dk-review-tile-stars i { color: #F9A526; font-size: 30px; }
.dk-review-tile-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
@media (max-width: 992px) { .dk-reviews-grid { column-count: 2; } }
@media (max-width: 640px) {
    /* Swipeable slider instead of a long vertical stack — one review
       per screen, swipe for more, no scrolling through the whole list. */
    .dk-reviews-grid {
        column-count: initial;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .dk-reviews-grid::-webkit-scrollbar { display: none; }
    .dk-review-tile { flex: 0 0 100%; scroll-snap-align: start; margin-bottom: 0; }
}

/* ================================================================
   PROMO BANNER
================================================================ */
.dk-promo {
    background: #141414;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
/* scalloped wave shape, exported from Figma (fill #F9A522) */
.dk-promo-wave {
    position: absolute;
    inset: 0;
    background-image: url('../images/promo/wave.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
/* creamy texture, masked to the same wave shape at low opacity */
.dk-promo-texture {
    position: absolute;
    inset: 0;
    background-image: url('../images/promo/texture.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.21;
    -webkit-mask-image: url('../images/promo/wave.svg');
    mask-image: url('../images/promo/wave.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.dk-promo-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

/* decorative outline icons imported from Figma (node 2002:12318) —
   reuses the site's white stencil SVGs, inverted for the light gold background */
.dk-stencil-bg-promo .dk-stencil { filter: invert(1); }
.dk-stencil-bg-promo .dk-stencil-promo-cone     { width: 67px;  left: 11.9%; top: 13.6%; }
.dk-stencil-bg-promo .dk-stencil-promo-popsicle { width: 81px;  right: 10.1%; top: 13.2%; }
.dk-stencil-bg-promo .dk-stencil-promo-bucket   { width: 146px; left: 4.3%;  bottom: 16.4%; }
.dk-stencil-bg-promo .dk-stencil-promo-sundae   { width: 86px;  right: 8%;   bottom: 15.6%; }

.dk-promo-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(32px, 3.5vw, 40px);
    font-weight: 400;
    color: #141414;
    letter-spacing: 0.02em;
    line-height: 1.05;
    text-transform: uppercase;
}
.dk-promo-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(20,20,20,0.75);
    line-height: 1.5;
    margin-top: 20px;
}
.dk-promo-desc + .dk-promo-desc { margin-top: 12px; }

.dk-promo-more-btn { display: none; }

.dk-promo-cta {
    margin-top: 28px;
    background: #141414;
    color: #fff;
}
.dk-promo-cta:hover { background: #2b2b2b; color: #fff; }

/* ================================================================
   INSTAGRAM FEED
================================================================ */
.dk-instagram { background: #141414; padding: 120px 0; overflow: hidden; position: relative; }
.dk-instagram .dk-container,
.dk-instagram .dk-insta-row-wrap { position: relative; z-index: 2; }

/* Figma node 2002:12331 — exact spacing/type overrides for this section only */
.dk-instagram .dk-divider-header { position: relative; margin-bottom: 64px; }
.dk-instagram .dk-divider-eyebrow { color: #fff; font-size: 14px; letter-spacing: 2.2px; gap: 12px; margin-bottom: 16px; }
.dk-instagram .dk-divider-eyebrow .dk-divider-line { background: rgba(255,255,255,0.4); }
.dk-instagram .dk-divider-title { gap: 40px; }
.dk-instagram .dk-divider-title .dk-divider-line { max-width: none; }
.dk-instagram .dk-divider-lead { font-size: 18px; color: rgba(255,255,255,0.5); line-height: 1.5; max-width: 900px; }

/* decorative icons, positioned relative to the header block (matches Figma: centered on the header, not the section) */
.dk-stencil-bg-insta { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.dk-stencil-bg-insta .dk-stencil-insta-left  { top: 50%; left: 0;  transform: translateY(-50%) scaleX(-1); width: 81px; }
.dk-stencil-bg-insta .dk-stencil-insta-right { top: 50%; right: 0; transform: translateY(-50%); width: 146px; }

@media (max-width: 900px) {
    .dk-stencil-bg-insta { display: none; }
}

.dk-insta-row-wrap { position: relative; max-width: 1440px; margin: 0 auto; }

.dk-insta-track-wrap { overflow: hidden; }
.dk-insta-track {
    display: flex;
    gap: 16px;
    padding: 4px 80px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.dk-insta-item {
    flex: 0 0 331px;
    aspect-ratio: 9 / 16;
    border-radius: 19px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 900px) {
    .dk-insta-item { flex-basis: 200px; }
}
.dk-insta-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.dk-insta-item:hover img { transform: scale(1.06); }
.dk-insta-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.dk-insta-item:hover .dk-insta-overlay { background: rgba(0,0,0,0.45); }
.dk-insta-play {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    padding-left: 4px;
}
.dk-insta-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
}
.dk-insta-placeholder i { font-size: 28px; color: rgba(255,255,255,0.15); }
.dk-insta-label {
    position: absolute;
    bottom: 12px; left: 12px; right: 12px;
    font-family: 'Luckiest Guy', cursive;
    font-size: 18px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    line-height: 1.1;
}

/* ================================================================
   FOOTER
================================================================ */
.dk-footer {
    background: #141414;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px 100px 0 0;
    padding: 120px 0;
    margin-top: 4px;
}

.dk-footer-inner {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 64px;
    margin-bottom: 40px;
}
.dk-footer-inner > div:first-child { flex: 0 0 381px; max-width: 381px; }
.dk-footer-inner > div:not(:first-child) { flex: 1 1 0; min-width: 160px; }

.dk-footer-brand-logo img { width: 153.913px; height: 90px; margin-bottom: 0; }
.dk-footer-brand-name {
    font-family: 'Luckiest Guy', cursive;
    font-size: 24px;
    color: #F9A526;
    margin-bottom: 12px;
}
.dk-footer-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    max-width: 381px;
    margin: 32px 0;
}
.dk-footer-social { display: flex; gap: 16px; }

.dk-footer-col-title {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: #F9A522;
    margin-bottom: 32px;
}

.dk-footer-links { display: flex; flex-direction: column; gap: 16px; }
.dk-footer-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    line-height: 19.5px;
}
.dk-footer-links a:hover { color: #F9A526; }

.dk-footer-bottom {
    border-top: 1px solid rgba(204,204,204,0.2);
    padding-top: 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.dk-footer-bottom-left p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #f5f0e8;
    margin: 0;
}
.dk-footer-bottom-left .accent { font-weight: 700; color: #F9A522; }
.dk-footer-bottom-left p.dk-footer-credit {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin: 8px 0 0;
}
.dk-footer-credit a { color: rgba(255,255,255,0.5); text-decoration: underline; text-underline-offset: 2px; }
.dk-footer-credit a:hover { color: #F9A526; }
.dk-footer-legal-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.dk-footer-legal-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.dk-footer-legal-links a:hover { color: #F9A526; }
.dk-footer-badges { height: 77px; width: auto; }
@media (max-width: 640px) {
    .dk-footer-badges { height: 48px; }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1200px) {
    .dk-container { padding: 0 40px; }
    .dk-hero-inner { padding: 0 40px; }
    .dk-cat-track { padding-left: 40px; padding-right: 40px; }
    .dk-footer-inner > div:first-child { flex-basis: 100%; max-width: 100%; }
    .dk-footer-inner > div:not(:first-child) { flex: 1 1 220px; }
}

@media (max-width: 992px) {
    .dk-navbar-inner { padding: 16px 24px; height: auto; min-height: 80px; gap: 20px; }
    .dk-logo img { height: 56px; }
    .dk-nav-pills, .dk-nav-social { display: none; }
    .dk-hamburger { display: flex; }
    .dk-hero-inner { grid-template-columns: 1fr; padding: 40px 24px 80px; height: 100%; }
    .dk-hero-image { display: none; }
    .dk-hero { height: 600px; padding-top: 80px; }
    /* Text spans the full width once the image column collapses to 1fr —
       the desktop gradient only darkens the left ~45%, leaving the busy
       product photo showing (and clashing) behind the rest of the text. */
    .dk-hero-bg::after { background: rgba(20, 20, 20, 0.8); }
    .dk-footer { border-radius: 48px 48px 0 0; padding: 64px 0; }
    .dk-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 640px) {
    .dk-container { padding: 0 20px; }
    .dk-section { padding: 56px 0; }
    .dk-categories { padding-top: 56px; }
    .dk-cat-track { padding: 4px 20px 16px; }
    .dk-cat-card { flex: 0 0 100%; height: auto; aspect-ratio: 361 / 517; }
    .dk-cat-arrow { width: 40px; height: 40px; font-size: 18px; }
    .dk-products-track { padding: 90px 20px 16px; }
    .dk-featured-card { flex: 0 0 100%; }
    /* "More Flavours You'll Love" (product-details page) — 2 per row instead
       of the full-width single-card carousel used elsewhere. */
    #relatedTrack { gap: 12px; }
    #relatedTrack .dk-featured-card { flex: 0 0 calc(50% - 6px); }
    /* Made Right USP list — swipeable slider instead of a long vertical
       scroll through all 6 promises. */
    .dk-promise-list {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
    }
    .dk-promise-list::-webkit-scrollbar { display: none; }
    .dk-promise-row {
        flex: 0 0 100%;
        scroll-snap-align: start;
        border-bottom: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px 4px;
    }
    .dk-insta-track { padding: 4px 20px; }
    .dk-insta-item { flex: 0 0 100%; }
    .dk-footer-inner { row-gap: 28px; text-align: center; }
    .dk-footer-inner > div:not(:first-child) { flex: 1 1 100%; }
    .dk-footer-inner > div { display: flex; flex-direction: column; align-items: center; }
    .dk-footer-social { justify-content: center; }
    .dk-footer-links { align-items: center; }
    .dk-footer { border-radius: 32px 32px 0 0; padding: 48px 0 32px; }
    .dk-footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    .dk-footer-bottom-left { display: flex; flex-direction: column; align-items: center; }
    .dk-footer-legal-links { justify-content: center; }
    .dk-hero-indicators { bottom: 20px; }
    .dk-hero-inner { padding: 32px 20px 64px; }
    .dk-promo-desc { font-size: 20px; }
    .dk-promo-desc-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .dk-promo-desc-2.open {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .dk-promo-more-btn {
        display: block;
        margin: 12px auto 20px;
        background: none;
        border: none;
        padding: 0;
        color: #141414;
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 3px;
        cursor: pointer;
    }
    /* "From the Streets of Gujarat" story text — clamp it with a Read More
       toggle instead of the full multi-paragraph block up front. */
    .dk-story-prose {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .dk-story-prose.open {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .dk-story-more-btn { color: #F9A526; margin: 4px auto 20px; }
    /* Decorative stencil icons were hidden outright below 900px because
       their desktop pixel sizes (80-150px) overwhelmed a narrow viewport —
       show them again at mobile-appropriate sizes instead. They sit behind
       the actual content (z-index + pointer-events:none), so this is purely
       visual, no overlap with readable/interactive elements. */
    .dk-stencil-bg { display: block; }
    .dk-products .dk-stencil-cone     { width: 40px; }
    .dk-products .dk-stencil-sundae   { width: 40px; }
    .dk-products .dk-stencil-bucket   { width: 65px; }
    .dk-products .dk-stencil-popsicle { width: 35px; }
    .dk-stencil-bg-promo .dk-stencil-promo-cone     { width: 30px; }
    .dk-stencil-bg-promo .dk-stencil-promo-popsicle { width: 36px; }
    .dk-stencil-bg-promo .dk-stencil-promo-bucket   { width: 65px; }
    .dk-stencil-bg-promo .dk-stencil-promo-sundae   { width: 38px; }
    .dk-stencil-bg-insta { display: block; }
    .dk-stencil-bg-insta .dk-stencil-insta-left  { width: 36px; }
    .dk-stencil-bg-insta .dk-stencil-insta-right { width: 65px; }
}

/* ================================================================
   FAQ ACCORDION (Product Details page, Figma node 2002:12883)
================================================================ */
.dk-faq { background: #141414; padding: 120px 0; }
.dk-faq-list { max-width: 800px; margin: 0 auto; }
.dk-faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid #333;
    border-radius: 12px;
    margin-top: 15px;
    transition: border-color 0.45s ease;
}
.dk-faq-list .dk-faq-item:first-child { margin-top: 0; }
.dk-faq-item[open] { border-color: #F9A522; }
.dk-faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 17.6px;
    color: #fff;
    transition: color 0.45s ease;
}
.dk-faq-summary::-webkit-details-marker { display: none; }
.dk-faq-item[open] .dk-faq-summary { color: #F9A522; }
.dk-faq-icon { position: relative; width: 32px; height: 32px; flex-shrink: 0; }
.dk-faq-icon img {
    position: absolute;
    inset: 0;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dk-faq-icon-minus { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.dk-faq-icon-plus { opacity: 1; transform: rotate(0deg) scale(1); }
.dk-faq-item[open] .dk-faq-icon-plus { opacity: 0; transform: rotate(90deg) scale(0.6); }
.dk-faq-item[open] .dk-faq-icon-minus { opacity: 1; transform: rotate(0deg) scale(1); }

/* CSS Grid auto-height transition — the standard technique for animating
   to/from an unknown content height (max-height requires guessing a fixed
   value and animates non-uniformly; grid-template-rows: 0fr -> 1fr tracks
   the real content size and transitions it smoothly and linearly). */
.dk-faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.dk-faq-item[open] .dk-faq-answer-wrap { grid-template-rows: 1fr; }
.dk-faq-answer-inner { overflow: hidden; min-height: 0; }
.dk-faq-answer {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;
    padding: 0 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.dk-faq-item[open] .dk-faq-answer { opacity: 1; transition-delay: 0.15s; }
.dk-faq-item[open] .dk-faq-answer { opacity: 1; transform: translateY(0); }

/* ================================================================
   INNER PAGES (About, Menu, Catalogue, Events, Contact, Dealer,
   Gallery, Terms, Privacy, 404)
================================================================ */
.dk-page-hero {
    padding: 180px 0 64px;
    background: #141414;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dk-page-hero .dk-section-sub { display: block; }
.dk-page-hero .dk-container { position: relative; z-index: 2; }
.dk-page-hero .dk-stencil-cone     { width: 90px;  left: 6%;  bottom: 6%; }
.dk-page-hero .dk-stencil-sundae   { width: 90px;  left: 27%; bottom: 2%; }
.dk-page-hero .dk-stencil-bucket   { width: 150px; right: 22%; bottom: 0%; }
.dk-page-hero .dk-stencil-popsicle { width: 80px;  right: 6%; bottom: 8%; }
.dk-page-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(36px, 5vw, 64px);
    color: #fff;
    line-height: 1.05;
    margin-top: 10px;
}

.dk-page-lead {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255,255,255,0.6);
    max-width: 640px;
    margin: 16px auto 0;
    font-size: 16px;
}
.dk-breadcrumb {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.03em;
}
.dk-breadcrumb a:hover { color: #F9A526; }
.dk-breadcrumb span { color: #F9A526; }

.dk-prose {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 820px;
}
.dk-prose-center { max-width: 1000px; }
.dk-prose h2 {
    font-family: 'Clash Display', sans-serif;
    color: #fff;
    font-size: 24px;
    margin: 32px 0 12px;
}
.dk-prose p { margin-bottom: 16px; }
.dk-prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.dk-prose li { margin-bottom: 8px; }
.dk-prose-center { margin-left: auto; margin-right: auto; }

/* Legal pages (Privacy Policy, Terms & Conditions) — orange/white card treatment */
.dk-prose-lead {
    font-family: 'DM Sans', sans-serif;
    color: #f5f0e8;
    font-size: 18px;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 0 36px;
}
.dk-legal-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(249,165,38,0.3);
    border-radius: 14px;
    padding: 28px 32px 28px 36px;
    margin-bottom: 20px;
    max-width: 1000px;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
}
.dk-legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: #F9A526;
}
.dk-legal-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(249,165,38,0.55);
}
.dk-legal-card h2 {
    font-family: 'Clash Display', sans-serif;
    color: #F9A526;
    font-size: 22px;
    margin: 0 0 12px;
}
.dk-legal-card p {
    font-family: 'DM Sans', sans-serif;
    color: #f5f0e8;
    line-height: 1.8;
    margin: 0;
}
.dk-legal-card p a { color: #F9A526; text-decoration: underline; text-underline-offset: 2px; }
.dk-legal-card p a:hover { color: #fff; }

/* Category grid (Store Menu page) */
.dk-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.dk-category-grid .dk-cat-card { height: 220px; }

/* Product grid (Catalogue page) */
.dk-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.dk-filter-pill {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
}
.dk-filter-pill:hover { border-color: #F9A526; color: #fff; }
.dk-filter-pill.active { background: #F9A526; border-color: #F9A526; color: #000; }

.dk-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.dk-product-grid .dk-product-card { width: 100%; }
.dk-product-grid a.dk-product-card { display: flex; }

.dk-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
}

/* ================================================================
   PRODUCT DETAILS PAGE (Figma node 2002:12685)
================================================================ */
.dk-pdp-highlight {
    display: flex;
    gap: 40px;
    align-items: stretch;
    padding: 40px 80px 80px;
}
.dk-pdp-highlight-card {
    flex: 1 1 0;
    min-width: 0;
    background: #F9A522;
    border-radius: 40px;
    padding: 100px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.dk-pdp-highlight-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(32px, 3.5vw, 56px);
    text-transform: uppercase;
    color: #141414;
    line-height: 1.05;
}
.dk-pdp-highlight-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #141414;
}
.dk-pdp-highlight-img {
    flex: 0 0 511px;
    max-width: 40%;
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
}
.dk-pdp-highlight-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.dk-pdp-highlight-img i { font-size: 64px; color: rgba(255,255,255,0.12); }
@media (max-width: 900px) {
    .dk-pdp-highlight { flex-direction: column; padding: 24px 20px 48px; }
    .dk-pdp-highlight-img { max-width: 100%; height: 280px; }
}

.dk-pdp-hero { display: flex; gap: 48px; align-items: flex-start; }
.dk-pdp-gallery { flex: 1 1 0; min-width: 0; }
.dk-pdp-main-img {
    position: relative;
    aspect-ratio: 616 / 574;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
}
.dk-pdp-main-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.dk-pdp-main-img i { font-size: 96px; color: rgba(255,255,255,0.12); }
.dk-pdp-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: #F9A522;
    border: 1px solid #F39200;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 9px 21px;
    border-radius: 50px;
}

.dk-pdp-info { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 40px; }
.dk-pdp-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(32px, 4vw, 50px);
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 12px;
}
.dk-pdp-rating { display: flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 16px; }
.dk-pdp-rating .bi-star-fill { color: #F39200; font-size: 14px; }
.dk-pdp-rating span { color: #fff; }

.dk-pdp-size-pills { display: flex; gap: 16px; margin-top: 16px; }
.dk-pdp-size-pill {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 99px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.dk-pdp-size-pill:hover { border-color: #F9A522; }
.dk-pdp-size-pill.active { background: #F9A522; border-color: #000; color: #000; }

.dk-pdp-usp-grid {
    display: flex; flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.dk-pdp-usp {
    display: flex; align-items: center; gap: 20px;
    flex: 1 1 260px;
}
.dk-pdp-usp-icon {
    width: 40px; height: 40px;
    border: 1px solid #F9A522;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dk-pdp-usp-icon img { width: 17px; height: 17px; }
.dk-pdp-usp-label { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 16px; color: #fff; }

.dk-pdp-flavors-block { margin-bottom: 24px; }
.dk-pdp-flavors-label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}
.dk-pdp-flavors-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
/* Reuses the exact same .dk-featured-card / .dk-featured-card-flavor component
   as the "More Flavours You'll Love" carousel — just scaled to fit this
   narrower hero column instead of the full 308px carousel card. */
.dk-pdp-flavors-grid .dk-featured-card-flavor { flex: 1 1 100px; }
.dk-pdp-flavors-grid .dk-featured-body { padding: 78px 8px 16px; }
.dk-pdp-flavors-grid .dk-featured-img { top: -16px; }
.dk-pdp-flavors-grid .dk-featured-photo-frame { width: 90px; }
.dk-pdp-flavors-grid .dk-featured-name { font-size: 14px; }

@media (max-width: 900px) {
    .dk-pdp-hero { flex-direction: column; }
    .dk-pdp-usp-grid { flex-direction: column; }
    .dk-pdp-usp { flex: 1 1 auto; }
}
@media (max-width: 640px) {
    /* flex:1 1 100px lets 3 fit per row on wider phones — pin it to
       exactly 2 per row instead. */
    .dk-pdp-flavors-grid .dk-featured-card-flavor { flex: 0 0 calc(50% - 6px); }
    /* Each card's photo floats 16px above its own card top edge — with only
       a 12px row gap, the 2nd row's photo overlapped the 1st row's cards. */
    .dk-pdp-flavors-grid { row-gap: 32px; }
}

/* Events */
.dk-events-list { display: flex; flex-direction: column; gap: 20px; }
.dk-event-card {
    display: grid;
    grid-template-columns: 180px 140px 1fr;
    gap: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 28px;
    padding: 20px;
    align-items: center;
}
.dk-event-image {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
}
.dk-event-image-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.15);
    font-size: 40px;
}
.dk-event-date {
    background: rgba(249,165,38,0.12);
    border-radius: 20px;
    padding: 16px 8px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}
.dk-event-date .day { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 700; color: #F9A526; display: block; }
.dk-event-date .month { font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.dk-event-date .to { font-size: 11px; color: rgba(255,255,255,0.35); margin: 2px 0; display: block; }
.dk-event-title { font-family: 'Clash Display', sans-serif; font-size: 20px; color: #fff; margin-bottom: 6px; }
.dk-event-meta { font-size: 13px; color: rgba(255,255,255,0.5); display: flex; gap: 16px; flex-wrap: wrap; }

/* Gallery */
.dk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.dk-gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
}
.dk-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.dk-gallery-item:hover img { transform: scale(1.08); }
.dk-gallery-item i { font-size: 40px; color: rgba(255,255,255,0.12); }

/* Forms (Contact / Dealer Inquiry) */
.dk-contact-hero { text-align: left; padding-bottom: 0; }
.dk-contact-hero .dk-page-lead { margin: 16px 0 0; }
.dk-contact-hero-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 56px;
    align-items: center;
    padding: 32px 0 64px;
}
.dk-contact-hero-content { display: flex; flex-direction: column; }
.dk-contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.dk-contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.dk-contact-info-item > i { font-size: 24px; color: #F9A526; margin-top: 4px; }
.dk-contact-info-label { display: block; font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.dk-contact-info-item a { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 18px; color: #fff; }
.dk-contact-info-item a:hover { color: #F9A526; }
.dk-contact-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 40px;
}
.dk-form { display: flex; flex-direction: column; gap: 18px; }
.dk-form-group { display: flex; flex-direction: column; gap: 8px; }
.dk-form-group label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.03em;
}
.dk-form-group input,
.dk-form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 14px 18px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    resize: vertical;
}
.dk-form-group input:focus,
.dk-form-group textarea:focus { outline: none; border-color: #F9A526; }
.dk-form-error { color: #ff6b6b; font-size: 12px; }
.dk-form-alert {
    padding: 14px 20px;
    border-radius: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
}
.dk-form-alert.success { background: rgba(76, 217, 100, 0.12); color: #4cd964; border: 1px solid rgba(76,217,100,0.3); }
.dk-form-alert.error { background: rgba(255,107,107,0.12); color: #ff6b6b; border: 1px solid rgba(255,107,107,0.3); }

.dk-map-embed {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    min-height: 420px;
    height: 100%;
}
.dk-map-embed iframe { width: 100%; height: 100%; min-height: 420px; display: block; border: 0; }
.dk-contact-map + .dk-divider-header { margin-top: 56px; }
.dk-map-placeholder {
    width: 100%; height: 100%; min-height: 420px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; color: rgba(255,255,255,0.12);
}

.dk-branch-section { margin-top: 56px; }

.dk-branch-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.dk-franchise-card { border-left: 4px solid #F9A526; }
/* The mini map preview is non-interactive — dragging/zooming it would
   fight the slider's own drag-to-scroll. "View on Map" / the card
   click already open the real, interactive map in a new tab. */
.dk-branch-photo { height: 160px; overflow: hidden; background: rgba(255,255,255,0.03); pointer-events: none; }
.dk-branch-photo iframe { width: 100%; height: 100%; border: 0; display: block; }
.dk-branch-card-body { padding: 20px 24px; }
.dk-branch-city { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 17px; color: #F9A526; margin-bottom: 6px; }
.dk-branch-city-sub { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.4); }
.dk-outlet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.dk-branch-detail { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.dk-branch-detail a:hover { color: #F9A526; }
.dk-branch-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #F9A526;
}
.dk-branch-map-link:hover i { transform: translateX(3px); }
.dk-branch-map-link i { transition: transform 0.2s ease; font-size: 12px; }

/* Clickable "open in Google Maps" cards — pin button top-right,
   whole card also clickable except the mailto link (see main.js). */
.dk-map-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.dk-map-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249,165,38,0.4);
    box-shadow: 0 12px 28px rgba(249,165,38,0.12);
}

.dk-franchise-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 48px;
}
.dk-franchise-cta-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    max-width: 520px;
}
@media (max-width: 768px) {
    .dk-franchise-cta { flex-direction: column; align-items: flex-start; padding: 32px; }
    /* align-items:flex-start above lets children size to their own content
       width instead of stretching — the button's white-space:nowrap text
       then overflows past the card's right edge. Force it to the card width. */
    .dk-franchise-cta-actions { width: 100%; }
    .dk-franchise-cta-actions .dk-btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
}

/* 404 */
.dk-404 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 24px 80px;
}
.dk-404-code {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(80px, 14vw, 180px);
    color: #F9A526;
    line-height: 1;
}

@media (max-width: 992px) {
    .dk-category-grid { grid-template-columns: repeat(2, 1fr); }
    .dk-product-grid { grid-template-columns: repeat(2, 1fr); }
    .dk-product-detail { grid-template-columns: 1fr; gap: 32px; }
    .dk-contact-hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 24px 0 40px; }
    .dk-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .dk-page-hero { padding: 140px 0 48px; }
}

@media (max-width: 640px) {
    .dk-category-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .dk-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .dk-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .dk-event-card { grid-template-columns: 1fr; text-align: center; padding: 16px; }
    .dk-event-image, .dk-event-image-placeholder { width: 100%; height: auto; aspect-ratio: 16 / 10; }
    .dk-event-meta { justify-content: center; }
    .dk-outlet-grid { grid-template-columns: 1fr; }
}
