/*
  Teekr - customer-facing CSS (CMS + read-only menu pages).

  This file intentionally avoids Metro UI and is written as modern CSS3
  (flexbox/grid, responsive-first).
*/

:root {
  --tk-bg: #0b0f14;
  --tk-surface: #ffffff;
  --tk-surface-2: #f6f7f9;
  --tk-text: #111827;
  --tk-muted: #6b7280;
  --tk-border: #e5e7eb;
  --tk-brand: #f97316; /* orange */
  --tk-brand-2: #fb923c;
  --tk-danger: #dc2626;
  --tk-success: #16a34a;
  --tk-warning: #d97706;
  --tk-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --tk-radius: 14px;
  --tk-radius-sm: 10px;
}

/* ------------------------------------------------------------------ */
/* Base (scoped to CMS/menu pages to avoid touching legacy storefront) */
/* ------------------------------------------------------------------ */
.teekr-fe {
  color: var(--tk-text);
  /* Do not force a white page background via `.teekr-fe`. */
  background: transparent;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

.teekr-fe * {
  box-sizing: border-box;
}

.teekr-fe a {
  color: inherit;
}

.teekr-fe img {
  max-width: 100%;
  height: auto;
}

.teekr-fe .tk-img {
  border-radius: 14px;
}

.teekr-fe .tk-container,
.tk-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.teekr-fe .tk-main {
  padding: 18px 0 34px;
}

.teekr-fe .tk-card {
  padding: 18px;
}

.teekr-fe .tk-surface {
  background: var(--tk-surface);
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  box-shadow: var(--tk-shadow);
}

.teekr-fe .tk-muted {
  color: var(--tk-muted);
}

.teekr-fe .tk-h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  margin: 0 0 8px;
}

.teekr-fe .tk-h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0 0 8px;
}

.teekr-fe .tk-lead {
  font-size: 16px;
  color: var(--tk-muted);
  margin: 0 0 12px;
}

.teekr-fe h1 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 10px;
  line-height: 1.15;
}

.teekr-fe h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 18px 0 10px;
  line-height: 1.2;
}

.teekr-fe p {
  margin: 0 0 12px;
}

.teekr-fe ul,
.teekr-fe ol {
  padding-left: 18px;
}

.teekr-fe hr {
  border: 0;
  border-top: 1px solid var(--tk-border);
  margin: 16px 0;
}

/* ------------------------------------------------------------------ */
/* Header */
/* ------------------------------------------------------------------ */
.teekr-fe .tk-header,
.tk-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tk-border);
}

.teekr-fe .tk-header-inner,
.tk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.teekr-fe .tk-topnav,
.tk-topnav {
  flex-wrap: wrap;
}

.teekr-fe .tk-topnav-left,
.teekr-fe .tk-topnav-right,
.tk-topnav-left,
.tk-topnav-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.teekr-fe .tk-badge,
.tk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--tk-border);
  background: var(--tk-surface-2);
  color: var(--tk-muted);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

.teekr-fe .tk-badge-open,
.tk-badge-open {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.35);
  color: #16a34a;
}

.teekr-fe .tk-header .tk-nav-link,
.tk-header .tk-nav-link,
.teekr-fe .tk-header .tk-btn,
.tk-header .tk-btn {
  display: inline-flex !important;
}

.teekr-fe .tk-header .tk-nav-links,
.tk-header .tk-nav-links {
  display: flex !important;
}

.teekr-fe .tk-header .tk-header-inner,
.tk-header .tk-header-inner {
  display: flex !important;
}

.teekr-fe .tk-header .tk-nav,
.tk-header .tk-nav {
  display: flex !important;
}

/* Force the top nav layout to be identical across pages, even when legacy CSS is present (index.php). */
.teekr-fe #teekrTopNav .tk-header-inner,
#teekrTopNav .tk-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.teekr-fe #teekrTopNav .tk-nav,
#teekrTopNav .tk-nav {
  display: flex !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
}

.teekr-fe #teekrTopNav .tk-nav-links,
#teekrTopNav .tk-nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.teekr-fe #teekrTopNav .tk-topnav-left,
.teekr-fe #teekrTopNav .tk-topnav-right,
#teekrTopNav .tk-topnav-left,
#teekrTopNav .tk-topnav-right {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.teekr-fe #teekrTopNav .tk-nav-link,
#teekrTopNav .tk-nav-link {
  padding: 8px 12px !important;
  border-radius: 999px !important;
}

.teekr-fe #teekrTopNav .tk-topnav-right .tk-btn-primary,
#teekrTopNav .tk-topnav-right .tk-btn-primary {
  padding: 10px 16px !important;
  border-radius: 999px !important;
}

/* ------------------------------------------------------------------ */
/* Homepage hero banner (CMS hero section) */
/* ------------------------------------------------------------------ */
.teekr-section[data-section="hero"] {
  position: relative;
  background-image: url("../img/about/food1.jpg") !important;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 64px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teekr-section[data-section="hero"]::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Match legacy "washed" hero: keep the food image but lighten it so black text reads. */
  background: rgba(255, 255, 255, 0.58);
}

.teekr-section[data-section="hero"] > * {
  position: relative;
}

/* Hard reset: some older DB hero HTML used `tk-surface tk-card` which looked like a white box.
   Force the hero content to be centered text over the banner image (no card). */
.teekr-section[data-section="hero"] .tk-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  max-width: 100% !important;
}

.teekr-section[data-section="hero"] .tk-surface,
.teekr-section[data-section="hero"] .tk-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  text-align: center !important;
  padding: 10px 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.teekr-section[data-section="hero"] .tk-hero {
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
}

.teekr-section[data-section="hero"] .tk-h1,
.teekr-section[data-section="hero"] .tk-lead,
.teekr-section[data-section="hero"] .tk-muted,
.teekr-section[data-section="hero"] .tk-note {
  color: #111827;
  text-shadow: none;
}

.teekr-section[data-section="hero"] .tk-lead {
  color: rgba(17, 24, 39, 0.85);
}

.teekr-section[data-section="hero"] .tk-actions {
  justify-content: center;
}

.teekr-section[data-section="hero"] .tk-btn {
  border-color: rgba(17, 24, 39, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: #111827;
}

.teekr-section[data-section="hero"] .tk-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

.teekr-section[data-section="hero"] .tk-btn-primary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.14);
  color: #f97316;
  font-weight: 900;
}

.teekr-section[data-section="hero"] .tk-btn-primary:hover {
  background: #fff;
}

.teekr-fe .tk-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 12px;
  background: #f97316;
  color: #fff;
  margin: 0 0 10px;
}

.teekr-fe .tk-hero-sub {
  font-size: 16px;
  margin-top: 6px;
}

.teekr-fe .tk-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  color: #f97316;
  text-decoration: none;
}

.teekr-fe .tk-hero-cta:hover {
  background: #fff;
}

.teekr-fe .tk-cart-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.teekr-fe .tk-cart-icon::before {
  content: "";
  position: absolute;
  inset: 2px 3px 6px 3px;
  border: 2px solid currentColor;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  transform: skewX(-6deg);
}

.teekr-fe .tk-cart-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 0;
  width: 14px;
  height: 6px;
  background:
    radial-gradient(circle at 3px 3px, currentColor 2px, transparent 2.2px),
    radial-gradient(circle at 11px 3px, currentColor 2px, transparent 2.2px);
}

.teekr-fe .tk-points-banner {
  background: #e6e6e6;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  padding: 18px 0;
}

.teekr-fe .tk-points-title {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  margin: 0 0 10px;
}

.teekr-fe .tk-points-title .tk-burst {
  display: inline-block;
  margin-left: 6px;
  width: 18px;
  height: 18px;
  background: #f97316;
  clip-path: polygon(50% 0%, 62% 20%, 85% 15%, 80% 38%, 100% 50%, 80% 62%, 85% 85%, 62% 80%, 50% 100%, 38% 80%, 15% 85%, 20% 62%, 0% 50%, 20% 38%, 15% 15%, 38% 20%);
  vertical-align: middle;
}

.teekr-fe .tk-points-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
  list-style: none;
}

.teekr-fe .tk-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
  text-align: left;
  margin: 8px 0;
  color: #111827;
}

.teekr-fe .tk-points-ico {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
  flex: 0 0 18px;
  margin-top: 2px;
}

.teekr-fe .tk-points-foot {
  margin-top: 12px;
  text-align: center;
  color: rgba(17, 24, 39, 0.85);
}

.teekr-fe .tk-points-foot a {
  color: #f97316;
  font-weight: 900;
  text-decoration: none;
}

.teekr-fe .tk-points-foot a:hover {
  text-decoration: underline;
}

.teekr-fe .tk-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 14px;
}

.teekr-fe .tk-section-head .tk-h2 {
  margin: 0;
}

.teekr-fe .tk-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

@media (max-width: 860px) {
  .teekr-fe .tk-grid-2 {
    grid-template-columns: 1fr;
  }
  .teekr-fe .tk-grid-3 {
    grid-template-columns: 1fr;
  }
}

.teekr-fe .tk-deal-title {
  font-weight: 900;
  font-size: 18px;
  margin: 0 0 6px;
}

.teekr-fe .tk-deal-price {
  font-weight: 900;
  color: var(--tk-text);
}

.teekr-fe .tk-deal-includes {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--tk-muted);
}

.teekr-fe .tk-deal-includes li {
  margin: 4px 0;
}

.teekr-fe .tk-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .teekr-fe .tk-reviews-grid {
    grid-template-columns: 1fr;
  }
}

.teekr-fe .tk-review-name {
  font-weight: 900;
}

.teekr-fe .tk-stars {
  display: inline-flex;
  gap: 2px;
  vertical-align: middle;
}

.teekr-fe .tk-star {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.teekr-fe .tk-stars {
  color: #f59e0b;
}

.teekr-fe .tk-review-body {
  margin-top: 10px;
  color: var(--tk-muted);
}

.teekr-fe .tk-points {
  padding: 12px 0;
}

.teekr-fe .tk-points ul {
  margin: 12px auto 0;
  padding-left: 18px;
  max-width: 820px;
  color: var(--tk-muted);
}

.teekr-fe .tk-points li {
  margin: 6px 0;
}

.teekr-fe .tk-nav,
.tk-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.teekr-fe .tk-nav-links,
.tk-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.teekr-fe .tk-nav-link,
.tk-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  color: var(--tk-text);
  border: 1px solid transparent;
}

.teekr-fe .tk-nav-link:hover,
.tk-nav-link:hover {
  background: var(--tk-surface-2);
}

.teekr-fe .tk-nav-link[aria-current="page"],
.tk-nav-link[aria-current="page"] {
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.10);
}

.teekr-fe .tk-nav-more,
.tk-nav-more {
  position: relative;
}

.teekr-fe .tk-nav-more summary,
.tk-nav-more summary {
  list-style: none;
  cursor: pointer;
}

.teekr-fe .tk-nav-more summary::-webkit-details-marker,
.tk-nav-more summary::-webkit-details-marker {
  display: none;
}

.teekr-fe .tk-nav-more-panel,
.tk-nav-more-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 210px;
  background: var(--tk-surface);
  border: 1px solid var(--tk-border);
  border-radius: 14px;
  box-shadow: var(--tk-shadow);
  padding: 8px;
  display: grid;
  gap: 4px;
  z-index: 20;
}

.teekr-fe .tk-nav-more:not([open]) .tk-nav-more-panel,
.tk-nav-more:not([open]) .tk-nav-more-panel {
  display: none;
}

@media (max-width: 860px) {
  .teekr-fe .tk-nav,
  .tk-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .teekr-fe .tk-nav-links,
  .tk-nav-links {
    justify-content: flex-start;
  }

  .teekr-fe #teekrTopNav .tk-nav,
  #teekrTopNav .tk-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start !important;
  }

  .teekr-fe #teekrTopNav .tk-nav-links,
  #teekrTopNav .tk-nav-links {
    justify-content: flex-start !important;
  }
}

.teekr-fe .tk-brand,
.tk-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.teekr-fe .tk-logo,
.tk-logo {
  width: auto;
  height: 46px;
  border-radius: 10px;
}

/* ------------------------------------------------------------------ */
/* Top-nav hard reset (index.php includes heavy legacy CSS) */
/* ------------------------------------------------------------------ */
#teekrTopNav,
#teekrTopNav * {
  box-sizing: border-box !important;
}

#teekrTopNav a {
  text-decoration: none !important;
  color: inherit !important;
}

#teekrTopNav .tk-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 14px 0 !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

#teekrTopNav .tk-topnav-left,
#teekrTopNav .tk-topnav-right {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 0 0 auto !important;
}

#teekrTopNav .tk-nav {
  display: flex !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
}

#teekrTopNav .tk-nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

#teekrTopNav .tk-nav-link {
  display: inline-flex !important;
  align-items: center !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  border: 1px solid transparent !important;
}

#teekrTopNav .tk-nav-link:hover {
  background: var(--tk-surface-2) !important;
}

#teekrTopNav .tk-nav-link[aria-current="page"] {
  border-color: rgba(249, 115, 22, 0.35) !important;
  background: rgba(249, 115, 22, 0.10) !important;
}

#teekrTopNav .tk-nav-more summary {
  display: inline-flex !important;
  align-items: center !important;
}

#teekrTopNav .tk-nav-more-panel {
  z-index: 9999 !important;
}

#teekrTopNav .tk-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  border: 1px solid var(--tk-border) !important;
  background: var(--tk-surface) !important;
  font-weight: 700 !important;
}

#teekrTopNav .tk-btn-primary {
  background: var(--tk-brand) !important;
  border-color: var(--tk-brand) !important;
  color: #fff !important;
}

@media (max-width: 860px) {
  #teekrTopNav .tk-nav {
    order: 3 !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }

  #teekrTopNav .tk-nav-links {
    justify-content: flex-start !important;
  }
}

/* ------------------------------------------------------------------ */
/* Buttons */
/* ------------------------------------------------------------------ */
.teekr-fe .tk-btn,
.tk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--tk-border);
  background: var(--tk-surface);
  color: var(--tk-text);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.06s ease, background 0.12s ease, border-color 0.12s ease;
  user-select: none;
}

.teekr-fe .tk-btn:hover,
.tk-btn:hover {
  background: var(--tk-surface-2);
}

.teekr-fe .tk-btn:active,
.tk-btn:active {
  transform: translateY(1px);
}

.teekr-fe .tk-btn-primary,
.tk-btn-primary {
  background: var(--tk-brand);
  border-color: var(--tk-brand);
  color: #fff;
}

.teekr-fe .tk-btn-primary:hover,
.tk-btn-primary:hover {
  background: var(--tk-brand-2);
  border-color: var(--tk-brand-2);
}

.teekr-fe .tk-btn-link {
  border: 0;
  background: transparent;
  padding: 6px 8px;
}

/* ------------------------------------------------------------------ */
/* Forms */
/* ------------------------------------------------------------------ */
.teekr-fe .tk-form {
  display: grid;
  gap: 12px;
}

.teekr-fe .tk-field label {
  display: block;
  font-weight: 600;
  margin: 0 0 6px;
}

.teekr-fe input[type="text"],
.teekr-fe input[type="tel"],
.teekr-fe input[type="email"],
.teekr-fe textarea,
.teekr-fe select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--tk-border);
  background: #fff;
  outline: none;
}

.teekr-fe input:focus,
.teekr-fe textarea:focus,
.teekr-fe select:focus {
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}

.teekr-fe .tk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 720px) {
  .teekr-fe .tk-form-row {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------ */
/* Alerts */
/* ------------------------------------------------------------------ */
.teekr-fe .tk-alert {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--tk-border);
  background: var(--tk-surface-2);
}

.teekr-fe .tk-alert-success {
  border-color: rgba(22, 163, 74, 0.35);
  background: rgba(22, 163, 74, 0.08);
}

.teekr-fe .tk-alert-danger {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.08);
}

.teekr-fe .tk-alert-warning {
  border-color: rgba(217, 119, 6, 0.35);
  background: rgba(217, 119, 6, 0.08);
}

/* ------------------------------------------------------------------ */
/* FAQ accordion (no JS; uses <details>) */
/* ------------------------------------------------------------------ */
.teekr-fe .tk-faq {
  display: grid;
  gap: 10px;
}

.teekr-fe .tk-faq details {
  border: 1px solid var(--tk-border);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
}

.teekr-fe .tk-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.teekr-fe .tk-faq summary::-webkit-details-marker {
  display: none;
}

.teekr-fe .tk-faq details[open] {
  box-shadow: var(--tk-shadow);
}

.teekr-fe .tk-faq .tk-faq-answer {
  margin-top: 10px;
  color: var(--tk-muted);
}

/* ------------------------------------------------------------------ */
/* /menu (read-only) */
/* ------------------------------------------------------------------ */
.teekr-fe .tk-menu-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  padding: 18px 0 34px;
}

@media (max-width: 980px) {
  .teekr-fe .tk-menu-layout {
    grid-template-columns: 1fr;
  }
}

.teekr-fe .tk-menu-nav {
  position: sticky;
  top: 86px;
  align-self: start;
  padding: 14px;
}

@media (max-width: 980px) {
  .teekr-fe .tk-menu-nav {
    position: static;
  }
}

.teekr-fe .tk-menu-nav a {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  color: var(--tk-text);
}

.teekr-fe .tk-menu-nav a:hover {
  background: var(--tk-surface-2);
  border-color: var(--tk-border);
}

.teekr-fe .tk-menu-title {
  margin-bottom: 10px;
}

.teekr-fe .tk-menu-section {
  padding: 16px;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  background: #fff;
  margin-bottom: 16px;
}

.teekr-fe .tk-menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 820px) {
  .teekr-fe .tk-menu-items {
    grid-template-columns: 1fr;
  }
}

.teekr-fe .tk-menu-item {
  border: 1px solid var(--tk-border);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.teekr-fe .tk-menu-item-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
}

.teekr-fe .tk-menu-item-desc {
  color: var(--tk-muted);
  margin-top: 6px;
}

.teekr-fe .tk-actions {
  margin-top: 10px;
}

.teekr-fe .tk-note {
  margin-top: 10px;
}

.teekr-fe .tk-price {
  color: var(--tk-text);
  font-weight: 800;
  white-space: nowrap;
}

/* ------------------------------------------------------------------ */
/* Legacy storefront helpers (still used on index.php) */
/* ------------------------------------------------------------------ */
.price-item {
  border-radius: 10px;
  border: 1px solid var(--tk-border);
}

.price-item-price {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
  cursor: pointer;
}

/* ------------------------------------------------------------------ */
/* Footer (used across customer pages) */
/* ------------------------------------------------------------------ */
.footer {
  background: #0b0f14;
  color: #fff;
  padding: 36px 16px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 14px;
}

.footer-column {
  flex: 1 1 240px;
  margin: 8px 0;
}

.footer-column h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-tagline {
  margin: 8px 0;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}
