/* ════════════════════════════════════════════════════════════════════════════
   TINYBOX — Shared Design System
   shadcn/ui design tokens + Tinybox brand + component classes
   ════════════════════════════════════════════════════════════════════════════ */

/* ── shadcn/ui design tokens ──────────────────────────────────────────────── */
:root {
  --background: 0 0% 100%;
  --foreground: 222 84% 5%;
  --card: 0 0% 100%;
  --card-foreground: 222 84% 5%;
  --popover: 0 0% 100%;
  --popover-foreground: 222 84% 5%;
  --primary: 38 90% 56%; /* Tinybox orange */
  --primary-foreground: 0 0% 100%;
  --secondary: 220 14% 96%;
  --secondary-foreground: 222 47% 11%;
  --muted: 220 14% 96%;
  --muted-foreground: 215 16% 47%;
  --accent: 220 14% 96%;
  --accent-foreground: 222 47% 11%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 210 40% 98%;
  --border: 214 32% 91%;
  --input: 214 32% 91%;
  --ring: 38 90% 56%;
  --radius: 0.5rem;

  /* ── Tinybox brand tokens ────────────────────────────────────────────── */
  --tb-primary: #f5a623;
  --tb-primary-dk: #df8f10;
  --tb-navy: #1a2f6b;
  --tb-blue: #2563eb;
  --tb-blue-lt: #eef2ff;
  --tb-gold: #f5c415;
  --tb-soft: #f8f9fb;
  --tb-text: #111827;
  --tb-muted: #6b7280;
  --tb-border: #e5e7eb;
  --tb-rose: #e8748a;
  --tb-berry: #7c3a5e;
  --tb-nav-link: #2563eb;
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: hidden;
}
body.scroll-locked {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
nav a {
  color: var(--tb-nav-link);
  transition: color 0.15s;
}
nav a:hover {
  color: var(--tb-navy);
}

/* ── shadcn/ui Button ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition:
    color 0.15s,
    background 0.15s,
    opacity 0.15s;
  font-family: inherit;
  outline: none;
}
.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-default {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  height: 40px;
  padding: 0 16px;
}
.btn-default:hover {
  background: hsl(var(--primary) / 0.9);
}
.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  height: 40px;
  padding: 0 16px;
}
.btn-outline:hover {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}
.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
  height: 40px;
  padding: 0 16px;
}
.btn-ghost:hover {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}
/* Button sizes */
.btn-sm {
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  border-radius: calc(var(--radius) - 2px);
}
.btn-icon {
  height: 36px;
  width: 36px;
  padding: 0;
}
.btn-full {
  width: 100%;
}

/* Legacy Tinybox button aliases */
.btn-primary {
  background: var(--tb-primary);
  color: white;
  height: 40px;
  padding: 0 16px;
}
.btn-primary:hover {
  background: var(--tb-primary-dk);
}

/* ── shadcn/ui Badge ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 9999px;
  border: 1px solid transparent;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  transition:
    color 0.15s,
    background 0.15s;
}
.badge-default {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.badge-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border-color: hsl(var(--border));
}
.badge-destructive {
  background: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
}
/* ── shadcn/ui Card ───────────────────────────────────────────────────────── */
.card {
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.05);
}
/* ── shadcn/ui Separator ──────────────────────────────────────────────────── */
.separator {
  flex-shrink: 0;
  background: hsl(var(--border));
  height: 1px;
  width: 100%;
}

/* ── shadcn/ui Checkbox (custom) ──────────────────────────────────────────── */
.sc-cb {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sc-cb input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}
.sc-cb-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid hsl(var(--border));
  background: hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    border-color 0.15s;
  pointer-events: none;
}
.sc-cb input:checked ~ .sc-cb-box {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
}
.sc-cb input:focus-visible ~ .sc-cb-box {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}
.sc-cb-check {
  display: none;
  color: white;
  flex-shrink: 0;
}
.sc-cb input:checked ~ .sc-cb-box .sc-cb-check {
  display: block;
}
.sc-cb-label {
  font-size: 13px;
  color: hsl(var(--foreground));
  flex: 1;
  line-height: 1.4;
}

input[type="range"].sr-range {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  pointer-events: all;
}
/* ── Filter accordion ─────────────────────────────────────────────────────── */
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-navy) !important;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.15s;
}
.accordion-trigger[aria-expanded="true"] {
  color: var(--tb-navy) !important;
}
.accordion-trigger .icon-md-muted,
.accordion-trigger .icon-md-blue {
  color: var(--tb-navy) !important;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-content.open {
  max-height: 1000px;
  padding-bottom: 14px;
  transition: max-height 0.3s ease-in;
}

/* ── Tag nested filter ────────────────────────────────────────────────────── */
.sc-cb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.tag-parent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.tag-parent-row .sc-cb-wrap {
  flex: 1;
}
.tag-expand-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.tag-expand-btn:hover {
  color: hsl(var(--foreground));
}
.tag-expand-btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.tag-expand-btn[aria-expanded="true"] i {
  transform: rotate(90deg);
}

/* ── View toggle ──────────────────────────────────────────────────────────── */
.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--border));
  background: transparent;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  transition: 0.15s;
}
.view-btn.active {
  background: var(--tb-blue-lt);
  border-color: var(--tb-blue);
  color: var(--tb-blue);
}

/* ── Pagination ───────────────────────────────────────────────────────────── */
.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 36px;
  padding: 0 4px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--border));
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: white;
  transition: 0.15s;
  color: var(--tb-blue);
}
.page-btn.active {
  background: var(--tb-blue);
  border-color: var(--tb-blue);
  color: white;
}
.page-btn:hover:not(.active) {
  background: var(--tb-blue-lt);
}
.page-btn-ghost {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tb-blue);
  padding: 0;
  font-family: inherit;
}

/* ── Image placeholders ───────────────────────────────────────────────────── */
.imgph {
  background: linear-gradient(135deg, #f0ede8 0%, #e3dcd5 100%);
}

/* ── Step number badge (Tinybox) ──────────────────────────────────────────── */
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--tb-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.step-connector {
  position: relative;
  z-index: 2;
  width: 0;
  flex-shrink: 0;
}
.step-connector::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tb-gold);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 16px;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed var(--tb-blue);
  opacity: 0.5;
  z-index: 0;
}
.steps-row::after {
  display: none;
}
.steps-row > div {
  position: relative;
  z-index: 1;
}

/* ── Section heading (Tinybox) ────────────────────────────────────────────── */
.sec-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--tb-navy);
  margin-bottom: 40px;
}
.sec-head {
  font-size: 22px;
  font-weight: 700;
  color: var(--tb-navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec-head span {
  color: var(--tb-gold);
  font-size: 16px;
}

/* ── Service card arrow button (Tinybox) ──────────────────────────────────── */
.btn-svc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--tb-primary);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  color: var(--tb-blue);
}
.btn-svc-arrow:hover,
.btn-svc-arrow:active {
  background: var(--tb-primary);
  color: white;
}
.svc-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.svc-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}
.svc-card-link:hover .btn-svc-arrow {
  background: var(--tb-primary);
  color: white;
}
.home-svc-scroll {
  overflow-x: auto;
  padding-bottom: 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.home-svc-scroll::-webkit-scrollbar {
  display: none;
}
.home-svc-arrow {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(15, 23, 42, 0.5);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.home-svc-arrow[hidden],
.home-svc-arrow.swiper-button-disabled {
  display: none;
}
.home-svc-arrow-left {
  left: -30px;
}
.home-svc-arrow-right {
  right: -30px;
}
@media (max-width: 1023px) {
  .home-svc-row {
    padding: 0 15px;
  }
  .home-svc-arrow-left {
    left: -15px;
  }
  .home-svc-arrow-right {
    right: -15px;
  }
}
.home-svc-arrow {
  transition: color 0.15s, transform 0.15s;
}
.home-svc-arrow:hover {
  color: rgba(15, 23, 42, 0.85);
  transform: translateY(-50%) scale(1.15);
}
.home-svc-grid {
  --home-svc-gap: 16px;
  --home-svc-size: 220px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--home-svc-gap);
  width: 100%;
}
.home-svc-grid > * {
  flex: 1 0 var(--home-svc-size);
  width: var(--home-svc-size);
  max-width: none;
  display: flex;
  flex-direction: column;
}
.home-svc-grid > * > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-svc-grid > * > div:last-child > div:last-child {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.home-svc-grid .btn-svc-arrow {
  align-self: flex-end;
}
@media (min-width: 768px) {
  .home-svc-grid {
    --home-svc-size: 240px;
  }
}
@media (min-width: 1024px) {
  .home-svc-grid {
    --home-svc-size: 230px;
  }
}
@media (min-width: 1280px) {
  .home-svc-grid {
    --home-svc-size: 220px;
  }
}
.home-svc-swiper-active .home-svc-scroll {
  overflow: hidden;
}
.home-svc-swiper-active .home-svc-grid {
  width: auto;
  min-width: 0;
  justify-content: flex-start;
  gap: 0;
}
.home-svc-swiper-active .swiper-slide {
  width: var(--home-svc-size);
}
.home-feat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.home-feat-grid > * {
  flex: 0 0 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .home-feat-grid > * {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (min-width: 1024px) {
  .home-feat-grid > * {
    flex: 0 0 calc((100% - 72px) / 4);
  }
}

/* ── Product tabs (Tinybox) ───────────────────────────────────────────────── */
.prod-tab {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--tb-blue);
  background: transparent;
}
.prod-tab.active {
  font-weight: 700;
  color: white;
  background: var(--tb-primary);
}
.prod-tab:not(.active):hover {
  background: var(--tb-blue-lt);
}

/* ── Product Detail page ──────────────────────────────────────────────────── */
/* Thumbnail buttons */
.thumb-btn {
  width: 100%;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: hsl(var(--muted));
  transition: border-color 0.15s;
  padding: 0;
  display: block;
}
.swiper-slide-thumb-active .thumb-btn {
  border-color: var(--tb-blue);
}
.thumb-btn:hover {
  border-color: hsl(var(--border));
}
.swiper-slide-thumb-active .thumb-btn:hover {
  border-color: var(--tb-blue);
}
.thumb-swiper-wrap {
  position: relative;
  margin-top: 10px;
  padding: 0 32px;
  height: 72px;
}
.thumb-swiper {
  overflow: hidden;
  height: 72px;
}
.thumb-swiper .swiper-slide {
  width: 72px;
  height: 72px;
}
.thumb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  font-size: 13px;
  color: hsl(var(--foreground));
  transition: background 0.15s, transform 0.15s;
}
.thumb-arrow:hover {
  background: hsl(var(--muted));
  transform: translateY(-50%) scale(1.12);
}
.thumb-arrow.swiper-button-disabled {
  display: none;
}
.thumb-swiper-prev {
  left: -4px;
}
.thumb-swiper-next {
  right: -4px;
}

/* Size chips */
.size-chip {
  height: 34px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1.5px solid hsl(var(--border));
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: white;
  color: hsl(var(--foreground));
  transition: 0.15s;
  font-family: inherit;
}
.size-chip.active {
  border-color: var(--tb-blue);
  color: var(--tb-blue);
  background: var(--tb-blue-lt);
}
.size-chip:hover:not(.active) {
  border-color: var(--tb-blue);
}
.size-chip.variant-sold-out {
  opacity: 0.4;
  text-decoration: line-through;
}
.size-chip.variant-sold-out.active {
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
  background: white;
}
.variant-img-chip {
  width: 56px;
  height: 56px;
  padding: 2px;
  border-radius: 8px;
  border: 2px solid hsl(var(--border));
  cursor: pointer;
  background: white;
  overflow: hidden;
  transition: 0.15s;
  flex-shrink: 0;
}
.variant-img-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.variant-img-chip.active {
  border-color: var(--tb-blue);
}
.variant-img-chip:hover:not(.active) {
  border-color: var(--tb-blue);
}

/* Location chips */
.loc-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1.5px solid hsl(var(--border));
  font-size: 13px;
  font-weight: 500;
  cursor: default;
  background: white;
  color: hsl(var(--foreground));
  font-family: inherit;
}

/* Quantity stepper */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid hsl(var(--border));
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--tb-navy);
  transition: background 0.15s;
  font-family: inherit;
  line-height: 1;
}
.qty-btn:hover {
  background: hsl(var(--muted));
}
.qty-val {
  min-width: 42px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--tb-navy);
  border-left: 1.5px solid hsl(var(--border));
  border-right: 1.5px solid hsl(var(--border));
}

/* Product detail tabs */
.pd-tab {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  transition: 0.15s;
  white-space: nowrap;
}
.pd-tab.active {
  color: var(--tb-blue);
  border-bottom-color: var(--tb-blue);
  font-weight: 600;
}
.pd-tab:hover:not(.active) {
  color: var(--tb-navy);
}

/* FAQ accordion */
.faq-row {
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tb-blue);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 16px;
}
.faq-body {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  padding: 0 20px 16px;
  display: none;
}
.faq-body.open {
  display: block;
}
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--tb-blue);
}
.faq-icon.open {
  transform: rotate(180deg);
}

/* ── Related Products Swiper ──────────────────────────────────────────────── */
.rel-swiper {
  overflow: hidden;
}
.rel-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
}
.rel-arrow {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid hsl(var(--border));
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--tb-navy);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s,
    transform 0.15s;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.rel-swiper-wrap:hover .rel-arrow {
  opacity: 1;
  pointer-events: auto;
}
.rel-arrow:hover {
  border-color: var(--tb-blue);
  color: var(--tb-blue);
  box-shadow: 0 2px 8px rgba(0, 60, 180, 0.1);
  transform: translateY(-50%) scale(1.1);
}
.rel-arrow.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none;
}
.rel-swiper-prev {
  left: -26px;
}
.rel-swiper-next {
  right: -26px;
}
@media (max-width: 767px) {
  .rel-swiper-wrap {
    padding: 0 15px;
  }
  .rel-swiper-prev {
    left: -15px;
  }
  .rel-swiper-next {
    right: -15px;
  }
  .rel-swiper-wrap .rel-arrow {
    opacity: 1;
    pointer-events: auto;
  }
  .rel-swiper-wrap .rel-arrow.swiper-button-disabled {
    opacity: 0 !important;
  }
}
.rel-arrow i {
  width: 18px;
  height: 18px;
}

/* Mini trust strip (below CTAs) */
.mini-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 8px 0;
  margin: 0;
  border-top: 1px solid hsl(var(--border));
}
.mini-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0;
}
.mini-trust-item div {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mini-trust-item p {
  margin: 0;
  line-height: 1.2;
}
/* Location card */
.loc-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid hsl(var(--border));
  background: white;
  flex: 1;
}
.attr-sep {
  width: 1px;
  height: 16px;
  background: hsl(var(--border));
  flex-shrink: 0;
}
.attr-label {
  font-size: 13px;
  color: var(--tb-navy);
  font-weight: 500;
  min-width: 110px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   BLOG / ARTICLE
   ══════════════════════════════════════════════════════════════════════════ */
.nav-logo-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}
.nav-active {
  color: var(--tb-navy) !important;
}
.article-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--tb-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.article-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--tb-navy);
  line-height: 1.22;
  margin-bottom: 14px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid hsl(var(--border));
}
.article-h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--tb-navy);
  margin-top: 28px;
  margin-bottom: 10px;
}
.article-body {
  font-size: 15px;
  line-height: 1.8;
  color: hsl(var(--foreground));
}
.article-body h1 {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.25;
  margin: 0.67em 0;
  color: var(--tb-navy);
}
.article-body h2 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.3;
  margin: 1em 0 0.5em;
  color: var(--tb-navy);
}
.article-body h3 {
  font-size: 1.17em;
  font-weight: 700;
  line-height: 1.4;
  margin: 1em 0 0.4em;
  color: var(--tb-navy);
}
.article-body h4,
.article-body h5,
.article-body h6 {
  font-weight: 700;
  margin: 0.8em 0 0.4em;
}
.article-body p {
  margin: 0 0 1em;
}
.article-body ul {
  list-style: disc;
  padding-left: 1.75em;
  margin: 0 0 1em;
}
.article-body ol {
  list-style: decimal;
  padding-left: 1.75em;
  margin: 0 0 1em;
}
.article-body li {
  margin: 0.3em 0;
}
.article-body ul ul,
.article-body ol ol,
.article-body ul ol,
.article-body ol ul {
  margin: 0.3em 0 0.3em 1em;
}
.article-body strong,
.article-body b {
  font-weight: 700;
}
.article-body em,
.article-body i {
  font-style: italic;
}
.article-body u {
  text-decoration: underline;
}
.article-body s {
  text-decoration: line-through;
}
.article-body a {
  color: var(--tb-blue);
  text-decoration: underline;
}
.article-body blockquote {
  border-left: 3px solid hsl(var(--border));
  padding: 4px 0 4px 16px;
  margin: 1.2em 0;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 16px 0;
  display: inline-block;
}
.article-body figure {
  margin: 1.5em 0;
}
.article-body figcaption {
  text-align: center;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  margin-top: 8px;
}
.article-body table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
}
.article-body table tbody,
.article-body table thead,
.article-body table tfoot {
  width: 100%;
  display: table;
}
@media (max-width: 768px) {
  .article-body table {
    width: 100% !important;
  }
}
.article-body th,
.article-body td {
  border: 1px solid hsl(var(--border));
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}
.article-body th {
  font-weight: 700;
  background: hsl(var(--muted));
}
.article-body hr {
  border: none;
  border-top: 1px solid hsl(var(--border));
  margin: 2em 0;
}
.article-body pre {
  background: hsl(var(--muted));
  padding: 1em;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1em 0;
  font-size: 13px;
}
.article-body code {
  background: hsl(var(--muted));
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.88em;
}
.article-body pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
}
.article-body iframe {
  max-width: 100%;
  width: 100% !important;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  display: block;
}
.article-tags-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid hsl(var(--border));
}
.blog-sidebar-banner-link:hover .blog-sidebar-banner-img {
  opacity: 0.88;
}
.related-article-card:hover .related-article-img {
  opacity: 0.85;
}
.related-article-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tb-navy);
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 6px;
}
.related-article-meta {
  font-size: 11.5px;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0 32px;
}
.bc-hero--no-image {
  grid-template-columns: 1fr;
  max-width: 640px;
}
.bc-hero-title {
  font-size: 55px;
  font-weight: 700;
  color: var(--tb-navy);
  line-height: 1.08;
  margin-bottom: 14px;
}
.bc-hero-desc {
  color: var(--tb-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.bc-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.blog-main-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 14px;
  padding: 18px;
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  margin-bottom: 20px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.blog-main-tab {
  min-height: 56px;
  min-width: 160px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.18s;
  font-family: inherit;
  text-align: center;
  flex: 0 0 auto;
}
.blog-main-tab.active {
  color: var(--tb-blue);
  border-color: #9db7ff;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.05);
}
.blog-main-tab:hover {
  background: #f8faff;
  color: var(--tb-blue);
}

.blog-main-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-main-section-title {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--tb-navy);
  letter-spacing: -0.03em;
  position: relative;
  padding-left: 18px;
}
.blog-main-section-title::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 14px;
  color: var(--tb-gold);
}

.blog-main-featured-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 24px;
}
.blog-main-featured-card,
.blog-main-side-card,
.blog-main-sidebar-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}
.blog-main-featured-card,
.blog-main-side-card,
.blog-main-article-card,
.blog-main-sidebar-item {
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    border-color 0.18s;
}
.blog-main-featured-card:hover,
.blog-main-side-card:hover,
.blog-main-sidebar-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: #c7d6ff;
}
.blog-main-featured-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  height: 100%;
}
.blog-main-featured-image {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
}
.blog-main-featured-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px 24px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.6) 28%,
    rgba(0, 0, 0, 0.84)
  );
  border-radius: 0 0 22px 22px;
}
.blog-main-featured-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.blog-main-featured-excerpt {
  display: none;
}
.blog-main-featured-body .blog-main-meta {
  color: rgba(255, 255, 255, 0.75);
}
.blog-main-featured-card .blog-main-chip-overlay {
  top: 14px;
  left: 14px;
  bottom: auto;
}

.blog-main-featured-primary {
  aspect-ratio: 3 / 2;
}
.blog-main-featured-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.blog-main-side-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 2;
}
.blog-main-side-image {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
}
.blog-main-side-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px 14px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.62) 35%,
    rgba(0, 0, 0, 0.82)
  );
  border-radius: 0 0 16px 16px;
}
.blog-main-side-title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.blog-main-side-excerpt {
  display: none;
}
.blog-main-side-body .blog-main-meta {
  color: rgba(255, 255, 255, 0.75);
}
.blog-main-side-card .blog-main-chip-overlay {
  top: 10px;
  left: 10px;
  bottom: auto;
  font-size: 11px;
  min-height: 26px;
  padding: 0 8px;
}

.blog-main-chip-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--tb-blue);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.blog-main-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}
.imgph-blog-featured {
  background: linear-gradient(135deg, #eadfd3 0%, #d4bdab 100%);
}
.imgph-blog {
  background: linear-gradient(135deg, #f1f5f9 0%, #dbeafe 100%);
}

.blog-main-sidebar-card {
  padding: 18px;
}
.blog-main-sidebar-title {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--tb-navy);
  margin-bottom: 14px;
}
.blog-main-sidebar-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid hsl(var(--border));
  border-radius: 0;
}
.blog-main-sidebar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-main-sidebar-thumb {
  width: 56px;
  height: 56px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: hsl(var(--muted));
  flex-shrink: 0;
}
.blog-main-sidebar-copy h4 {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--tb-navy);
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-main-sidebar-copy p {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
}
.blog-main-sidebar-item:hover .blog-main-sidebar-copy h4 {
  color: var(--tb-blue);
}

.blog-main-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
}

.blog-main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.blog-main-article-card {
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: white;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}
.blog-main-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.blog-main-article-card:hover .blog-main-article-image img {
  transform: scale(1.04);
}
.blog-main-article-card:hover .blog-main-article-title {
  color: var(--tb-blue);
}
.blog-main-article-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-main-article-image img {
  transition: transform 0.3s ease;
}
.blog-main-article-card .blog-main-chip-overlay {
  bottom: 8px;
  left: 8px;
  min-height: auto;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  color: var(--tb-navy);
  box-shadow: none;
}
.blog-main-article-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-main-article-title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--tb-navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
.blog-main-article-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
  flex: 1;
}
.blog-main-article-body .blog-main-meta {
  margin-top: auto;
  font-size: 11.5px;
}
.blog-main-meta-sep {
  color: hsl(var(--border));
}

.blog-main-right-rail {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 84px;
}
.blog-main-nav-item {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--tb-navy);
  border-bottom: 1px solid hsl(var(--border));
  text-decoration: none;
  transition: color 0.15s;
}
.blog-main-nav-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-main-nav-item:hover,
.blog-main-nav-item.active {
  color: var(--tb-blue);
}

.blog-main-advisor-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: var(--tb-blue);
  border-radius: 14px;
  color: white;
}
.blog-main-advisor-card::after {
  content: "✦";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.blog-main-advisor-title {
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  line-height: 1.3;
}
.blog-main-advisor-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 14px;
}
.blog-main-advisor-staff {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.blog-main-advisor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.blog-main-advisor-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 18px;
  background: white;
  color: var(--tb-blue);
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.blog-main-advisor-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--tb-blue);
}

.blog-main-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 22px;
  background: linear-gradient(90deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid #dde9ff;
}
.blog-main-cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tb-blue);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}
.blog-main-cta-copy h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--tb-navy);
  margin-bottom: 6px;
}
.blog-main-cta-copy h3 span {
  color: var(--tb-gold);
  font-size: 16px;
}
.blog-main-cta-copy p {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.blog-main-cta-btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
}
.blog-main-pagination {
  justify-content: center;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.empty-state {
  border: 1px solid hsl(var(--border));
  border-radius: 22px;
  padding: 44px 24px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.empty-icon {
  font-size: 34px;
  color: var(--tb-blue);
  margin-bottom: 12px;
  display: inline-block;
}
.empty-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--tb-navy);
  margin-bottom: 8px;
}
.empty-desc {
  font-size: 14px;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  max-width: 520px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════════════ */
.price-section-card {
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.price-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--tb-blue);
  margin-bottom: 20px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table thead th {
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-blue);
  padding: 10px 0;
  border-bottom: 2px solid hsl(var(--border));
}
.price-table thead th:last-child {
  text-align: right;
}
.price-table tbody td {
  font-size: 13.5px;
  padding: 11px 0;
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}
.price-table tbody td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--tb-navy);
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.note-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.note-box-li {
  font-size: 13px;
  color: hsl(var(--foreground));
  line-height: 1.65;
  padding-left: 14px;
  position: relative;
}
.note-box-li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--tb-blue);
}


/* ══════════════════════════════════════════════════════════════════════════
   BOOKING
   ══════════════════════════════════════════════════════════════════════════ */
.booking-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-trust-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tb-blue);
  flex-shrink: 0;
}
.booking-trust-icon i {
  font-size: 32px;
  line-height: 1;
}
.booking-trust-icon img {
  width: 32px;
  height: 32px;
}
.booking-trust-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--tb-navy);
}
.contact-hero-badge-icon {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
}
.contact-hero-badge-icon .contact-hero-icon {
  display: block;
  font-size: 32px;
  line-height: 1;
}
.contact-hero-badge-icon .contact-hero-setting-icon {
  width: 80px;
  height: 80px;
}
.booking-trust-sub {
  font-size: 11.5px;
  color: hsl(var(--muted-foreground));
}
.booking-form-card {
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 28px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.svc-card {
  border: 1.5px solid hsl(var(--border));
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.15s;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.svc-card.active {
  border-color: var(--tb-blue);
  background: var(--tb-blue-lt);
}
.svc-card:hover:not(.active) {
  border-color: #93c5fd;
}
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tb-blue);
}
.svc-card.active .svc-icon {
  border-color: var(--tb-blue);
  background: white;
}
.svc-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--tb-navy);
  line-height: 1.3;
}
.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-navy);
  margin-bottom: 8px;
  display: block;
}
.booking-select {
  width: 100%;
  height: 44px;
  border: 1.5px solid hsl(var(--border));
  border-radius: 8px;
  padding: 0 36px 0 40px;
  font-size: 13.5px;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.booking-select:focus {
  border-color: var(--tb-blue);
}
.booking-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid hsl(var(--border));
  border-radius: 8px;
  padding: 0 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  outline: none;
  transition: border-color 0.15s;
}
.booking-input:focus {
  border-color: var(--tb-blue);
}
.booking-select-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
  pointer-events: none;
}
.booking-select-chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: hsl(var(--muted-foreground));
}
.booking-textarea {
  width: 100%;
  border: 1.5px solid hsl(var(--border));
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: hsl(var(--foreground));
  resize: none;
  outline: none;
  line-height: 1.65;
}
.booking-textarea:focus {
  border-color: var(--tb-blue);
}
.booking-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}
.char-count {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  text-align: right;
  margin-top: 4px;
}
.booking-summary-card {
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  padding: 24px;
  background: white;
  position: sticky;
  top: 76px;
}
.summary-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tb-navy);
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid hsl(var(--border));
}
.summary-row:last-of-type {
  border-bottom: none;
}
.summary-key {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2px;
}
.summary-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-blue);
}
.summary-val-sub {
  font-size: 11.5px;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
}
.hotline-label {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hotline-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--tb-navy);
  margin-bottom: 2px;
}
.hotline-note {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-top: 10px;
  line-height: 1.55;
}

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.article-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}
.article-layout-grid > article {
  min-width: 0;
}
.price-hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  overflow: hidden;
}
.price-hero-text {
  padding: 48px 48px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
/* ══════════════════════════════════════════════════════════════════════════
   SHARED FORM COMPONENTS
   ══════════════════════════════════════════════════════════════════════════ */
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-navy);
  margin-bottom: 8px;
  display: block;
}
.form-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
  pointer-events: none;
}
.form-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid hsl(var(--border));
  border-radius: 8px;
  padding: 0 14px 0 40px;
  font-size: 13.5px;
  font-family: inherit;
  color: hsl(var(--foreground));
  outline: none;
  background: white;
}
.form-input:focus {
  border-color: var(--tb-blue);
}
.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}
.form-textarea-icon {
  position: absolute;
  left: 12px;
  top: 13px;
  color: hsl(var(--muted-foreground));
  pointer-events: none;
}
.form-textarea {
  width: 100%;
  border: 1.5px solid hsl(var(--border));
  border-radius: 8px;
  padding: 8px 14px 8px 40px;
  font-size: 13.5px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  line-height: 1.65;
  color: hsl(var(--foreground));
  background: white;
}
.form-textarea:focus {
  border-color: var(--tb-blue);
}
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}
.form-select {
  width: 100%;
  height: 44px;
  border: 1.5px solid hsl(var(--border));
  border-radius: 8px;
  padding: 0 36px 0 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: white;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.form-select:focus {
  border-color: var(--tb-blue);
}
.form-select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: hsl(var(--muted-foreground));
}
.privacy-notice {
  background: var(--tb-blue-lt);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: hsl(var(--foreground));
  line-height: 1.6;
  margin-top: 16px;
}
/* ══════════════════════════════════════════════════════════════════════════
   CHECKOUT / ORDER PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: start;
}
.order-layout-3col {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  gap: 24px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.order-form-card {
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 28px;
}
.order-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tb-blue);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid hsl(var(--border));
}
.order-summary-card {
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 76px;
}
.order-summary-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tb-navy);
  margin-bottom: 4px;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid hsl(var(--border));
  position: relative;
}
.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted));
  overflow: hidden;
}
.cart-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--tb-blue);
  margin-bottom: 2px;
  line-height: 1.35;
}
.cart-item-meta {
  font-size: 11.5px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 8px;
  line-height: 1.5;
}
.cart-item-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--tb-navy);
}
.cart-remove-btn {
  position: absolute;
  top: 14px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  padding: 0;
  line-height: 1;
}
.cart-remove-btn:hover {
  color: var(--tb-navy);
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid hsl(var(--border));
  border-radius: 6px;
  overflow: hidden;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--tb-navy);
  font-family: inherit;
  transition: background 0.15s;
}
.cart-qty-btn:hover {
  background: hsl(var(--muted));
}
.cart-qty-val {
  min-width: 32px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-navy);
  border-left: 1.5px solid hsl(var(--border));
  border-right: 1.5px solid hsl(var(--border));
}
.price-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 7px 0;
}
.total-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 2px solid hsl(var(--border));
  margin-top: 4px;
}
.total-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--tb-navy);
}
.total-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--tb-blue);
}
.cod-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 14px 0;
}
.cod-icon {
  flex-shrink: 0;
  color: #d97706;
}
.cod-title {
  font-size: 13px;
  font-weight: 600;
  color: #92400e;
}
.cod-sub {
  font-size: 11.5px;
  color: #b45309;
}
.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-top: 10px;
}

/* ── Checkout v2 fields ───────────────────────────────────────────────────── */
.checkout-select {
  width: 100%;
  height: 42px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  padding: 0 36px 0 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.15s;
}
.checkout-select:focus {
  border-color: var(--tb-blue);
}
.checkout-select:disabled {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  cursor: not-allowed;
}
.checkout-select-chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: hsl(var(--muted-foreground));
}
.checkout-input {
  width: 100%;
  height: 42px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  padding: 0 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  outline: none;
  transition: border-color 0.15s;
}
.checkout-input:focus {
  border-color: var(--tb-blue);
}
.checkout-input-muted {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  cursor: default;
}
.checkout-textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  outline: none;
  resize: vertical;
  transition: border-color 0.15s;
}
.checkout-textarea:focus {
  border-color: var(--tb-blue);
}
.checkout-phone-wrap {
  display: flex;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  overflow: hidden;
}
.checkout-flag-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  background: hsl(var(--muted));
  border-right: 1px solid hsl(var(--border));
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
.checkout-phone-input {
  flex: 1;
  border: none;
  padding: 0 12px;
  height: 42px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  background: transparent;
}
.checkout-radio-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid hsl(var(--border));
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.checkout-radio-row:hover {
  border-color: var(--tb-blue);
}
.checkout-radio-selected {
  border-color: var(--tb-blue);
  background: #f0f6ff;
}
.checkout-radio-input {
  width: 16px;
  height: 16px;
  accent-color: var(--tb-blue);
  flex-shrink: 0;
  cursor: pointer;
}
.checkout-radio-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tb-navy);
}
.checkout-radio-sub {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-top: 2px;
}
.checkout-radio-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--tb-navy);
  flex-shrink: 0;
}
.checkout-pay-icon {
  color: var(--tb-blue);
  flex-shrink: 0;
}
.co-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid hsl(var(--border));
}
.co-item-qty {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsl(var(--muted-foreground));
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.co-item-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted));
}
.co-item-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tb-navy);
  line-height: 1.4;
}
.co-item-meta {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  margin-top: 2px;
}
.co-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--tb-navy);
  flex-shrink: 0;
}
.co-coupon-row {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid hsl(var(--border));
}
.co-coupon-input {
  flex: 1;
  height: 38px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  padding: 0 12px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}
.co-coupon-input:focus {
  border-color: var(--tb-blue);
}
.co-coupon-btn {
  height: 38px;
  padding: 0 14px;
  background: var(--tb-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.co-coupon-btn:hover {
  background: var(--tb-navy);
}
.co-total-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}
.co-grand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
  margin-top: 6px;
  border-top: 1.5px solid hsl(var(--border));
}
.co-grand-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--tb-navy);
}
.co-grand-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--tb-blue);
}
.nav-cart-wrap {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--tb-primary);
  color: white;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
.contact-form-card {
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 28px;
}
.contact-form-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tb-blue);
  margin-bottom: 20px;
}
.contact-info-card {
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 76px;
}
.contact-info-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tb-navy);
  margin-bottom: 4px;
}
.ci-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid hsl(var(--border));
}
.ci-row:last-of-type {
  border-bottom: none;
}
.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tb-blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tb-blue);
  flex-shrink: 0;
}
.ci-label {
  font-size: 11.5px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3px;
}
.ci-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--tb-navy);
  line-height: 1.25;
}
.ci-value a[href^="tel:"],
.ci-value a[href^="mailto:"] {
  color: var(--tb-blue);
  cursor: pointer;
}
.ci-sub {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-top: 2px;
}
.ci-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tb-blue);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.ci-link:hover {
  text-decoration: underline;
}
.map-placeholder {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: #e8f0fe;
  position: relative;
  margin-top: 4px;
}
.map-placeholder iframe,
.map-placeholder .gmap_iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   HORIZONTAL TRUST BAR (4 cols)
   ══════════════════════════════════════════════════════════════════════════ */
.trust-bar-h {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 24px;
}
.bk-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 24px;
}
.trust-bar-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px 20px;
  border: none;
  background: none;
}
.trust-bar-item:first-child {
  padding-left: 24px;
}
.trust-bar-item:last-child {
  border-right: none;
  padding-right: 24px;
}
.trust-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tb-blue);
  flex-shrink: 0;
}
.contact-trust-bar-icon {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
}
.contact-trust-bar-icon .contact-trust-bar-glyph {
  display: block;
  font-size: 36px;
  line-height: 1;
}
.contact-trust-bar-icon .contact-trust-bar-setting-icon {
  width: 80px;
  height: 80px;
}
.trust-bar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--tb-blue);
  margin-bottom: 4px;
}
.trust-bar-desc {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
}

/* ── Shared nav bar ──────────────────────────────────────────────────────── */
.nav-logo {
  font-size: 20px;
  color: var(--tb-navy);
  font-weight: 900;
}
.nav-logo-sup {
  font-size: 11px;
  color: var(--tb-primary);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr min(360px, 35%);
  gap: 28px;
  align-items: start;
}
.cart-layout > * {
  min-width: 0;
}
.cart-list-card {
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  overflow: hidden;
}
.cart-list-head {
  display: grid;
  grid-template-columns:
    1fr minmax(70px, 90px) minmax(90px, 110px) minmax(70px, 90px)
    32px;
  gap: 0;
  padding: 12px 20px;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--muted));
  min-width: 0;
}
.cart-list-head > * {
  min-width: 0;
}
.cart-list-head-cell {
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cart-list-head-cell.right {
  text-align: right;
}
.cart-row {
  display: grid;
  grid-template-columns:
    1fr minmax(70px, 90px) minmax(90px, 110px) minmax(70px, 90px)
    32px;
  gap: 0;
  padding: 16px 20px;
  border-bottom: 1px solid hsl(var(--border));
  align-items: center;
  min-width: 0;
}
.cart-row > * {
  min-width: 0;
}
.cart-row:last-of-type {
  border-bottom: none;
}
.cart-row-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted));
  overflow: hidden;
  flex-shrink: 0;
}
.cart-row-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--tb-blue);
  line-height: 1.35;
  margin-bottom: 3px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}
.cart-row-meta {
  font-size: 11.5px;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}
.cart-row-unit {
  font-size: 13.5px;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-align: right;
}
.cart-row-total {
  font-size: 14px;
  font-weight: 700;
  color: var(--tb-navy);
  text-align: right;
}
.cart-row-remove {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s;
}
.cart-remove:hover {
  color: #ef4444;
}
.cart-summary-card {
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 76px;
  overflow: hidden;
  min-width: 0;
  word-break: break-word;
}
.cart-summary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tb-navy);
  margin-bottom: 20px;
}
.continue-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-blue);
  margin-top: 16px;
  padding: 10px 0;
}
.continue-link:hover {
  text-decoration: underline;
}
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tb-primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════════════════════════════════
   GLOBAL UTILITY CLASSES  (replaces most inline styles)
   ══════════════════════════════════════════════════════════════════════════ */
/* Text sizes + color combos */
/* Nav CTA button */
.btn-nav-cta {
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px hsl(var(--primary) / 0.35);
}
.btn-nav-cta .ph {
  transition: transform 0.18s ease;
}
.btn-nav-cta:hover .ph {
  transform: rotate(-8deg) scale(1.15);
}

/* ══════════════════════════════════════════════════════════════════════════
   ICON SIZE UTILITIES
   ══════════════════════════════════════════════════════════════════════════ */
.icon-xs {
  font-size: 12px;
  line-height: 1;
}
.icon-sm {
  font-size: 13px;
  line-height: 1;
}
.icon-md {
  font-size: 14px;
  line-height: 1;
}
.icon-15 {
  font-size: 15px;
  line-height: 1;
}
.icon-base {
  font-size: 16px;
  line-height: 1;
}
.icon-lg {
  font-size: 18px;
  line-height: 1;
}
.icon-xl {
  font-size: 20px;
  line-height: 1;
}
.icon-2xl {
  font-size: 24px;
  line-height: 1;
}
.icon-xs-s {
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

/* Setting image fallback (admin uploads image instead of icon name) */
.setting-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Icon + color combos */
.icon-sm-blue {
  font-size: 13px;
  line-height: 1;
  color: var(--tb-blue);
}
.icon-md-blue {
  font-size: 14px;
  line-height: 1;
  color: var(--tb-blue);
}
.icon-md-muted {
  font-size: 14px;
  line-height: 1;
  color: hsl(var(--muted-foreground));
}

/* ══════════════════════════════════════════════════════════════════════════
   TEXT UTILITIES  (font-size + color combos)
   ══════════════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════════════
   REMAINING UTILITY CLASSES  (pass 3)
   ══════════════════════════════════════════════════════════════════════════ */
.icon-32 {
  font-size: 32px;
  line-height: 1;
}
.icon-9 {
  font-size: 9px;
  line-height: 1;
}
.icon-w56 {
  width: 56px;
  height: 56px;
  color: var(--tb-blue);
}
.icon-feature {
  font-size: 30px;
  line-height: 1;
}
.icon-w56-64 {
  width: 56px;
  height: 64px;
}
.fab-navy {
  width: 48px;
  height: 48px;
  background: var(--tb-navy);
  border: none;
  cursor: pointer;
}
.badge-tiny {
  font-size: 10px;
  gap: 3px;
  padding: 2px 8px;
}
.bg-blue-lt2 {
  background: var(--tb-blue-lt);
}
.border-t-tb {
  border-top: 1px solid var(--tb-border);
}
/* ── Heading size utilities ──────────────────────────────── */
/* ══════════════════════════════════════════════════════════════════════════
   FINAL UTILITY SWEEP  – all remaining one-off inline styles
   ══════════════════════════════════════════════════════════════════════════ */

/* Tinybox hero */
.hero-grid {
  display: grid;
  grid-template-columns: 2.2fr 3fr;
  gap: 48px;
}
.hero-p {
  color: var(--tb-muted);
  font-size: 13px;
  max-width: 320px;
}
.btn-hero {
  padding: 10px 18px;
  font-size: 13px;
}
.btn-hero-outline {
  padding: 10px 18px;
  font-size: 13px;
  gap: 6px;
  color: var(--tb-blue);
}
.hero-img-h {
  height: 380px;
}
.hero-img-left {
  width: 56%;
  flex-shrink: 0;
  position: relative;
}
.badge-shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  max-width: 80%;
}
.icon-15-blue-s {
  font-size: 15px;
  line-height: 1;
  color: var(--tb-blue);
  flex-shrink: 0;
}
.badge-text {
  color: var(--tb-navy);
  font-size: 11px;
  line-height: 1.3;
}
.tag-primary {
  background: var(--tb-primary);
  color: white;
  font-size: 10.5px;
}
.star-gold-18 {
  color: var(--tb-gold);
  font-size: 18px;
  margin-left: 4px;
}
.icon-sm-white {
  font-size: 13px;
  line-height: 1;
  color: white;
}
.btn-lg-cta {
  padding: 12px 26px;
  font-size: 15px;
  border-radius: 10px;
}
.home-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.9fr) minmax(
      250px,
      0.95fr
    );
  align-items: flex-end;
  gap: 24px;
  overflow: hidden;
  border-radius: 28px;
  padding: 0 34px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 215, 64, 0.18),
      transparent 28%
    ),
    linear-gradient(90deg, #0f56d9 0%, #1c63eb 54%, #2b6cf0 100%);
  box-shadow: 0 24px 60px rgba(15, 55, 140, 0.16);
}
.home-cta-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-bottom: 30px;
}
.home-cta-text-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 470px;
}
.home-cta-title {
  margin: 0;
  font-family: "Ephesis", cursive;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
}
.home-cta-text {
  margin: 0;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.home-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-bottom: 30px;
}
.home-cta-button {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(9, 34, 95, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.home-cta-button .ph {
  transition: transform 0.18s ease;
}
.home-cta-button-primary {
  background: var(--tb-gold);
  color: var(--tb-navy);
}
.home-cta-button-primary:hover {
  background: #f7cf38;
  transform: scale(1.04);
  box-shadow: 0 20px 36px rgba(9, 34, 95, 0.26), 0 4px 14px rgba(247, 193, 20, 0.4);
}
.home-cta-button-primary:hover .ph {
  transform: translateX(3px);
}
.home-cta-button:active {
  transform: scale(0.95);
}
.home-cta-button-secondary {
  background: #fff;
  color: #1750c9;
}
.home-cta-button-secondary:hover {
  background: #f3f6ff;
}
.home-cta-media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
  pointer-events: none;
}
.home-cta-image {
  display: block;
  width: min(100%, 453px);
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 32px rgba(10, 30, 87, 0.22));
}
.home-cta-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-cta-star {
  position: absolute;
  color: rgba(255, 211, 76, 0.72);
  text-shadow: 0 0 12px rgba(255, 211, 76, 0.18);
}
.home-cta-star-one {
  top: 20px;
  left: 55%;
  font-size: 14px;
}
.home-cta-star-two {
  top: 44px;
  right: 22%;
  font-size: 12px;
}
.home-cta-star-three {
  top: 86px;
  right: 9%;
  font-size: 14px;
}
.home-cta-star-four {
  bottom: 112px;
  right: 31%;
  font-size: 10px;
}
@media (max-width: 1024px) {
  .home-cta-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(200px, 0.9fr) minmax(
        210px,
        0.8fr
      );
    padding: 26px 28px 0;
    gap: 18px;
  }
  .home-cta-content {
    padding-bottom: 26px;
  }
  .home-cta-title {
    font-size: clamp(21px, 2.5vw, 28px);
  }
  .home-cta-text {
    font-size: 12px;
    line-height: 1.55;
  }
  .home-cta-button {
    min-height: 48px;
    padding: 0 18px;
  }
  .home-cta-image {
    width: min(100%, 360px);
  }
  .home-cta-star-one {
    left: 48%;
  }
}
@media (max-width: 767px) {
  .home-cta-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .home-cta-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 24px 22px 0;
    gap: 16px;
  }
  .home-cta-content {
    padding-bottom: 0;
  }
  .home-cta-title {
    font-size: 22px;
  }
  .home-cta-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .home-cta-actions {
    padding-bottom: 0;
  }
  .home-cta-button {
    min-height: 48px;
    padding: 0 18px;
  }
  .home-cta-media {
    justify-content: center;
  }
  .home-cta-image {
    width: min(100%, 320px);
  }
  .home-cta-star-one {
    top: 18px;
    left: auto;
    right: 22px;
  }
  .home-cta-star-two {
    top: 52px;
    right: 62px;
  }
  .home-cta-star-three {
    top: auto;
    bottom: 128px;
    right: 20px;
  }
  .home-cta-star-four {
    display: none;
  }
}
/* Product Listing */
.sidebar-sticky {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 68px;
}
/* Product category row — keeps tile size stable and scrolls when overflowing */
.product-cat-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.product-cat-scroll::-webkit-scrollbar {
  display: none;
}
.product-cat-arrow {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(15, 23, 42, 0.5);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.product-cat-arrow[hidden] {
  display: none;
}
.product-cat-arrow-left {
  left: -30px;
}
.product-cat-arrow-right {
  right: -30px;
}
@media (max-width: 1023px) {
  .product-cat-row {
    padding: 0 15px;
  }
  .product-cat-arrow-left {
    left: -15px;
  }
  .product-cat-arrow-right {
    right: -15px;
  }
}
.product-cat-arrow {
  transition: color 0.15s, transform 0.15s;
}
.product-cat-arrow:hover {
  color: rgba(15, 23, 42, 0.85);
  transform: translateY(-50%) scale(1.15);
}
.product-cat-arrow.swiper-button-disabled {
  display: none;
}
.product-cat-arrow:focus-visible {
  outline: 2px solid rgba(245, 166, 35, 0.7);
  outline-offset: 2px;
}
.product-cat-grid {
  --product-cat-gap: 8px;
  --product-cat-size: 128px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: var(--product-cat-gap);
  width: max-content;
  min-width: 100%;
  margin-inline: auto;
}
.product-cat-grid > div {
  flex: 0 0 var(--product-cat-size);
  width: var(--product-cat-size);
  max-width: none;
}
@media (min-width: 640px) {
  .product-cat-grid {
    --product-cat-gap: 12px;
    --product-cat-size: 189px;
  }
  .product-img-wrap .product-label {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .product-cat-grid {
    --product-cat-size: 171px;
  }
}
@media (min-width: 1024px) {
  .product-cat-grid {
    --product-cat-size: 185px;
  }
}
@media (min-width: 1280px) {
  .product-cat-grid {
    --product-cat-size: 165px;
  }
}
.product-cat-swiper-active .product-cat-scroll {
  overflow: hidden;
}
.product-cat-swiper-active .product-cat-grid {
  width: auto;
  min-width: 0;
  justify-content: flex-start;
  gap: 0;
}
.product-cat-swiper-active .swiper-slide {
  width: var(--product-cat-size);
}

/* ── Home New Products Swiper ─────────────────────────────────────────────── */
.home-np-scroll {
  overflow-x: auto;
  padding: 6px 2px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.home-np-scroll::-webkit-scrollbar {
  display: none;
}
.home-np-grid {
  --home-np-gap: 12px;
  --home-np-size: 180px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--home-np-gap);
  width: 100%;
}
.home-np-grid > * {
  flex: 0 0 var(--home-np-size);
  width: var(--home-np-size);
  display: flex;
  flex-direction: column;
}
.home-np-grid > * .product-card {
  flex: 1;
}
@media (min-width: 480px) {
  .home-np-grid { --home-np-size: 190px; }
}
@media (min-width: 768px) {
  .home-np-grid { --home-np-size: 210px; }
}
@media (min-width: 1024px) {
  .home-np-grid { --home-np-size: 220px; }
}
.home-np-arrow {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(15, 23, 42, 0.5);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  transition: color 0.15s, transform 0.15s;
}
.home-np-arrow[hidden] {
  display: none;
}
.home-np-arrow:hover {
  color: rgba(15, 23, 42, 0.85);
  transform: translateY(-50%) scale(1.15);
}
.home-np-arrow-left { left: -30px; }
.home-np-arrow-right { right: -30px; }
@media (max-width: 1023px) {
  .home-np-row { padding: 0 15px; }
  .home-np-arrow-left { left: -15px; }
  .home-np-arrow-right { right: -15px; }
}

.advisory-props-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}
.advisory-title {
  min-width: 0;
}
.advisory-desktop-spacer {
  display: none;
}
@media (min-width: 768px) {
  .studio-img-grid {
    height: 300px;
  }
  .advisory-title {
    max-width: unset;
  }
}
@media (min-width: 1024px) {
  .advisory-grid-desktop {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 20px;
  }
  .advisory-props-grid {
    gap: 12px;
  }
  .advisory-desktop-spacer {
    display: block;
  }
}
.card-float {
  background: white;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.btn-chat-pill {
  background: var(--tb-blue);
  color: white;
  font-size: 12px;
  border-radius: 999px;
  padding: 9px 14px;
  height: auto;
  justify-content: space-between;
}
.btn-circle-ghost {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.input-52 {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  height: 52px;
}
.collection-toolbar-controls {
  min-width: 0;
}
.advisory-bg {
  background: hsl(214 100% 97%);
  border: 1px solid hsl(213 94% 87%);
}
.btn-plain-muted {
  border: none;
  background: none;
  cursor: default;
  color: hsl(var(--muted-foreground));
}
/* Product Detail */
.prod-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
}
.prod-img-col {
  min-width: 0;
  max-width: 560px;
  width: 100%;
}
.main-img-wrap {
  aspect-ratio: 1;
  width: 100%;
  border: 1px solid hsl(var(--border));
  position: relative;
  background: linear-gradient(135deg, #f0ede8, #e3dcd5);
  transition: background 0.25s ease;
  overflow: hidden;
}
.main-swiper {
  position: absolute;
  inset: 0;
}
.main-swiper .swiper-slide {
  height: 100%;
}
.main-img-overlay {
  width: 65%;
  height: 65%;
  opacity: 0.18;
  background: radial-gradient(circle, #aaa 0%, transparent 70%);
  position: absolute;
}
.badge-round {
  font-size: 12px;
  border-radius: 6px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
}
.btn-add-cart {
  height: 48px;
  font-size: 14px;
  border-radius: 10px;
  gap: 8px;
}
.btn-book {
  height: 48px;
  font-size: 14px;
  border-radius: 10px;
  gap: 8px;
  border-color: var(--tb-blue);
  color: var(--tb-blue);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  background: #f0f6ff;
  border: 1px solid #d6e8fa;
  border-radius: 12px;
  padding: 14px 24px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 16px;
}
.trust-bar-item:first-child {
  padding-left: 8px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: #c8daf5;
  flex-shrink: 0;
}
.trust-icon-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tb-blue);
}
.trust-icon-box i {
  font-size: 28px;
  line-height: 1;
}
.trust-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--tb-navy);
  margin: 0 0 1px;
  line-height: 1.3;
}
.trust-sub {
  font-size: 11px;
  color: #7a92b0;
  margin: 0;
  line-height: 1.4;
}
.scrollbar-none {
  scrollbar-width: none;
}
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
/* Pricing */
.btn-price-primary {
  border-radius: 8px;
  padding: 10px 20px;
}
.btn-price-outline {
  border-radius: 8px;
  padding: 10px 20px;
  border-color: var(--tb-blue);
  color: var(--tb-blue);
}
.btn-outline-blue {
  color: var(--tb-blue);
  border-color: var(--tb-blue);
}
.pricing-half-col {
  flex: 0 0 50%;
  max-width: 50%;
}
.checkout-agree-cb {
  width: 16px;
  height: 16px;
  accent-color: var(--tb-blue);
  flex-shrink: 0;
  cursor: pointer;
}
.order-title-flush {
  margin-bottom: 0 !important;
  border: none !important;
  padding: 0 !important;
}
.hero-price-img {
  min-height: 300px;
}
.ear-diagram-col {
  width: 340px;
}
/* Booking / Contact */
.hero-studio-img {
  height: 280px;
  background: linear-gradient(135deg, #e8edf5, #c8d4e8);
}
.btn-confirm {
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  height: auto;
}
.trust-bar-double {
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}
.hero-studio-warm {
  height: 280px;
  background: linear-gradient(135deg, #f0ede8, #ddd6cc);
}
/* Cart */
.text-center-force {
  text-align: center;
}
.hotline-sep {
  border-top: 1px solid hsl(var(--border));
  padding-top: 16px;
}
.btn-apply {
  border-radius: 8px;
  flex-shrink: 0;
  height: 40px;
  padding: 0 16px;
  white-space: nowrap;
  font-size: 13px;
}


/* ══════════════════════════════════════════════════════════════════════════
   SEMANTIC COMPONENT CLASSES  (replaces repeated Tailwind combos)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Navigation ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
}

.header-topbar {
  border-bottom: 1px solid hsl(var(--border));
}
.header-topbar-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--tb-navy);
  border-radius: 8px;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
  text-decoration: none;
}
.header-icon-btn:hover {
  background: hsl(var(--accent));
  color: var(--tb-blue);
  transform: translateY(-1px);
}
.header-icon-btn:active {
  transform: translateY(0);
}
.header-icon-btn--active {
  color: var(--tb-blue);
}
.nav-cart-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--tb-navy);
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
  text-decoration: none;
}
.nav-cart-wrap a:hover {
  background: hsl(var(--accent));
  color: var(--tb-blue);
  transform: translateY(-1px);
}
.nav-cart-wrap a:active {
  transform: translateY(0);
}
.header-account-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  z-index: 100;
  padding: 8px;
}
.header-account-dropdown.open {
  display: block;
  animation: dropdownIn 0.15s ease;
}
@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.account-dropdown-info {
  padding: 8px 10px 10px;
}
.account-dropdown-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tb-navy);
}
.account-dropdown-email {
  display: block;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-top: 2px;
}
.account-dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--tb-navy);
  text-decoration: none;
  transition: background 0.12s;
}
.account-dropdown-link:hover {
  background: hsl(var(--muted));
}
.account-dropdown-link--danger {
  color: hsl(var(--destructive));
}
.account-dropdown-link--danger:hover {
  background: hsl(var(--destructive) / 0.08);
}

/* Search fullpage overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.search-overlay-body {
  position: relative;
  width: calc(100% - 40px);
  max-width: 640px;
  margin: 0 auto;
  transform: translateY(-16px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-overlay.open .search-overlay-body {
  transform: translateY(0);
}
.search-overlay-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  padding: 8px;
  line-height: 1;
  transition: color 0.15s;
}
.search-overlay-close:hover {
  color: #fff;
}
.search-overlay-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.search-overlay-form {
  display: block;
}
.search-overlay-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px 20px;
  gap: 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.search-overlay-input-wrap:focus-within {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.42);
}
.search-overlay-icon {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.search-overlay-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.01em;
}
.search-overlay-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.search-overlay-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  color: var(--tb-navy);
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.search-overlay-submit:hover {
  opacity: 0.82;
}

/* Search suggestions */
.search-suggest {
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}
.search-suggest:not(:empty) {
  display: block;
}
.search-suggest-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.search-suggest-item:last-child {
  border-bottom: none;
}
.search-suggest-item:hover,
.search-suggest-item.active {
  background: rgba(255, 255, 255, 0.1);
}
.search-suggest-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
}
.search-suggest-thumb-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px;
}
.search-suggest-info {
  flex: 1;
  min-width: 0;
}
.search-suggest-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggest-price {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}
.search-suggest-empty {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.search-suggest-loading {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.search-suggest-viewall {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.15s,
    background 0.15s;
  text-align: center;
}
.search-suggest-viewall:hover {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
}
.search-suggest-viewall strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  min-width: 0;
}
.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 10px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-item-trigger,
.nav-submenu-item-trigger {
  display: flex;
  align-items: stretch;
}
.nav-toggle-btn,
.nav-submenu-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 5px;
  border: none;
  background: transparent;
  color: var(--tb-blue);
  cursor: pointer;
}
.nav-toggle-btn:hover,
.nav-submenu-toggle-btn:hover {
  color: var(--tb-navy);
}
.nav-toggle-btn {
  min-height: 38px;
}
.nav-submenu-toggle-btn {
  min-height: 40px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 5px;
  color: var(--tb-blue);
}
.nav-link:hover {
  color: var(--tb-navy);
}
.nav-link span,
.nav-submenu-link span {
  display: inline-block;
}
.nav-link-caret {
  font-size: 12px;
  transition: transform 0.18s ease;
}
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 8px;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 110;
}
.nav-submenu-item {
  display: flex;
  flex-direction: column;
}
.nav-submenu-caret {
  font-size: 12px;
  opacity: 0.72;
  transition: transform 0.18s ease;
}
.nav-submenu-nested {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
  padding: 4px 0 0 12px;
  border-left: 1px solid hsl(var(--border));
  gap: 2px;
}
.nav-submenu-nested-link {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 0;
  color: var(--tb-blue);
  white-space: normal;
  font-size: 13px;
}
.nav-submenu-nested-link:hover,
.nav-submenu-nested-link--active {
  color: var(--tb-navy);
}
.nav-item--has-children:hover .nav-submenu,
.nav-item--has-children:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-item:last-child .nav-submenu,
.nav-item:nth-last-child(2) .nav-submenu {
  left: auto;
  right: 0;
}
.nav-item--has-children:hover .nav-link-caret,
.nav-item--has-children:focus-within .nav-link-caret {
  transform: rotate(180deg);
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .nav-submenu-item--has-children .nav-submenu-nested {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 0.28s ease,
      opacity 0.28s ease,
      padding-top 0.28s ease;
  }
  .nav-submenu-item--has-children:hover .nav-submenu-nested,
  .nav-submenu-item--has-children:focus-within .nav-submenu-nested {
    max-height: min(70vh, 720px);
    padding-top: 4px;
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
  }
  .nav-submenu-item--has-children:hover .nav-submenu-caret,
  .nav-submenu-item--has-children:focus-within .nav-submenu-caret {
    transform: rotate(90deg);
  }
}
@media (min-width: 1024px) and (hover: none),
  (min-width: 1024px) and (pointer: coarse) {
  .nav-links {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .nav-item--has-children {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-item--has-children .nav-link {
    justify-content: space-between;
    width: 100%;
  }
  .nav-item--has-children .nav-submenu {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 6px 0 0 12px;
    border: none;
    border-left: 1px solid hsl(var(--border));
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    gap: 2px;
  }
  .nav-item--has-children .nav-submenu-link {
    min-height: 0;
    padding: 8px 0;
    white-space: normal;
  }
  .nav-item--has-children .nav-submenu-link:hover,
  .nav-item--has-children .nav-submenu-link--active {
    background: transparent;
    color: var(--tb-navy);
  }
}
.nav-submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 12px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--tb-blue);
  white-space: nowrap;
}
.nav-submenu-link:hover,
.nav-submenu-link--active {
  background: hsl(var(--accent));
  color: var(--tb-navy);
}
.nav-active {
  color: var(--tb-navy) !important;
}
.nav-active span {
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.nav-active span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: var(--tb-primary);
  border-radius: 999px;
}
.header-desktop-cart {
  display: flex;
}
.header-desktop-cart {
  margin-right: 6px;
}
.header-mobile-cart {
  display: none;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 12px;
}
.footer-logo-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
}
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--tb-blue);
}
.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  cursor: pointer;
}
.contact-info-card .contact-social-link {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent !important;
  overflow: hidden;
}
.contact-info-card .contact-social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--tb-blue-lt);
  color: var(--tb-blue);
  transition: background 0.15s;
}
.footer-social-icon:hover {
  background: var(--tb-blue);
  color: white;
}

/* ── Footer dynamic columns ──────────────────────────────────────────────── */
.footer-dynamic {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: 40px;
}
.footer-cols-1 {
  grid-template-columns: 1fr;
}
.footer-cols-2 {
  grid-template-columns: minmax(180px, 1.5fr) 1fr;
}
.footer-cols-3 {
  grid-template-columns: minmax(180px, 1.5fr) repeat(2, 1fr);
}
.footer-cols-4 {
  grid-template-columns: minmax(180px, 1.5fr) repeat(3, 1fr);
}
.footer-cols-5 {
  grid-template-columns: minmax(180px, 1.5fr) repeat(4, 1fr);
}

/* ── Product cards ───────────────────────────────────────────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: white;
  overflow: hidden;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    transform 0.15s;
}
.product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.product-card > a {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat-link {
  display: block;
}
.product-img-wrap {
  border-radius: 12px;
  aspect-ratio: 1;
  border: 1px solid var(--tb-border);
  position: relative;
  overflow: hidden;
  background: #0f172a;
}
.product-img-wrap::before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  top: 58%;
  bottom: -36%;
  background: linear-gradient(
    135deg,
    rgba(245, 196, 21, 0.18) 0%,
    rgba(245, 166, 35, 0.84) 45%,
    rgba(223, 143, 16, 0.94) 100%
  );
  transform: translateY(110%) rotate(-10deg);
  transform-origin: center;
  transition:
    transform 320ms ease,
    opacity 320ms ease;
  opacity: 0.94;
  z-index: 1;
}
.product-img-wrap img,
.product-img-wrap .imgph {
  transition:
    transform 320ms ease,
    filter 320ms ease;
}
.product-img-wrap .product-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 12px 10px;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.34) 0%,
    rgba(15, 23, 42, 0.18) 42%,
    rgba(15, 23, 42, 0.04) 78%,
    transparent 100%
  );
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(15, 23, 42, 0.22);
  transition:
    transform 320ms ease,
    bottom 320ms ease,
    padding 320ms ease,
    font-size 320ms ease,
    background 320ms ease,
    max-width 320ms ease,
    left 320ms ease,
    right 320ms ease,
    width 320ms ease;
  z-index: 2;
}
.product-cat-link:hover .product-img-wrap::before,
.product-cat-link:focus-visible .product-img-wrap::before,
.product-cat-link:focus-within .product-img-wrap::before {
  transform: translateY(0) rotate(-10deg);
}
.product-cat-link:hover .product-img-wrap img,
.product-cat-link:hover .product-img-wrap .imgph,
.product-cat-link:focus-visible .product-img-wrap img,
.product-cat-link:focus-visible .product-img-wrap .imgph,
.product-cat-link:focus-within .product-img-wrap img,
.product-cat-link:focus-within .product-img-wrap .imgph {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.product-cat-link:hover .product-label,
.product-cat-link:focus-visible .product-label,
.product-cat-link:focus-within .product-label {
  left: 12px;
  right: 12px;
  bottom: 50%;
  max-width: none;
  width: auto;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.42);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  font-size: 13px;
  transform: translateY(50%);
}
.product-img {
  background: hsl(var(--muted));
  aspect-ratio: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .p-3 {
  display: flex;
  flex-direction: column;
}
.product-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
  color: var(--tb-navy);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.3em * 3);
}
.product-meta {
  font-size: 12px;
  margin-bottom: 0;
  color: hsl(var(--muted-foreground));
}
.product-card-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.product-card-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1.5px solid var(--tb-primary);
  background: transparent;
  color: var(--tb-blue);
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.product-card-buy-btn:hover {
  background: var(--tb-primary);
  color: white;
  border-color: var(--tb-primary);
}

/* ── Product card: list view ─────────────────────────────────────────────── */
#productGrid.list-view {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#productGrid.list-view .product-card {
  flex-direction: row;
  height: auto;
}
#productGrid.list-view .product-card > a {
  flex-direction: row;
  flex: 1;
  min-width: 0;
}
#productGrid.list-view .product-card .product-img {
  width: 120px;
  min-width: 120px;
  aspect-ratio: 1;
  flex-shrink: 0;
}
#productGrid.list-view .product-card .relative {
  width: 120px;
  min-width: 120px;
  flex-shrink: 0;
}
#productGrid.list-view .product-card .p-3 {
  flex: 1;
  justify-content: center;
  padding: 12px;
}
#productGrid.list-view .product-card .product-name {
  font-size: 13px;
  margin-bottom: 4px;
}
#productGrid.list-view .product-card-buy-row {
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 12px 12px 0;
  gap: 10px;
  margin-top: 0;
  min-width: 90px;
}

/* ── Links ───────────────────────────────────────────────────────────────── */
.link-blue {
  font-size: 12px;
  color: var(--tb-blue);
}
.link-blue:hover {
  text-decoration: underline;
}
.link-muted {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}
.link-muted:hover {
  text-decoration: underline;
}
.filter-tag-link {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}
.filter-tag-link:hover {
  color: var(--tb-navy);
  text-decoration: underline;
}
.filter-tag-link.active {
  color: var(--tb-blue);
  font-weight: 600;
}

/* ── Page title semantic classes ─────────────────────────────────────────── */
.page-title {
  font-weight: 700;
  color: var(--tb-navy);
  line-height: 1.1;
}
.page-title-hero {
  font-size: 55px;
  line-height: 1.08;
}
.hero-title-subheading {
  margin-top: 6px;
  font-family: "Ephesis", cursive;
  font-size: clamp(48px, 5.8vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--tb-blue);
}
.page-title-xl {
  font-size: 46px;
  margin-bottom: 16px;
}
.page-title-lg {
  font-size: 44px;
  margin-bottom: 16px;
}
.page-title-md {
  font-size: 42px;
  margin-bottom: 12px;
}
.page-title-sm {
  font-size: 40px;
  margin-bottom: 16px;
}
.page-title-xs {
  font-size: 36px;
}
.page-title-detail {
  font-size: 32px;
  margin-bottom: 8px;
}
.section-h2-cta {
  font-weight: 800;
  line-height: 1.2;
  color: var(--tb-navy);
  margin-bottom: 16px;
  font-size: 32px;
}

/* ══════════════════════════════════════════════════════════════════════════
   ANIMATIONS  (Tinybox landing page)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Base hidden state ───────────────────────────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--anim-delay, 0s);
}
/* ── Visible state ───────────────────────────────────────────────────────── */
.anim.in {
  opacity: 1;
  transform: none;
}

/* ── Hero: animate on load ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-anim-1 {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.hero-anim-3 {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero-anim-4 {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}
.hero-img-anim {
  animation: fadeIn 0.9s ease 0.5s both;
}
.hero-badge-anim {
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

/* ── Reduced motion: disable all ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .anim,
  .hero-anim-1,
  .hero-anim-3,
  .hero-anim-4,
  .hero-img-anim,
  .hero-badge-anim {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .product-img-wrap::before,
  .product-img-wrap img,
  .product-img-wrap .imgph,
  .product-img-wrap .product-label {
    animation: none !important;
    transition: none !important;
    filter: none !important;
  }
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hamburger: hidden on desktop ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
}
.mobile-filter-toggle {
  display: none;
}
.mobile-filter-overlay {
  display: none;
}

/* ── Mobile filter drawer ─────────────────────────────────────────────────── */
.mobile-drawer-header {
  display: none;
}
.mobile-drawer-footer {
  display: none;
}
.mobile-drawer-handle {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: hsl(var(--border));
  margin: 10px auto 6px;
}
.mobile-drawer-body {
  overflow-y: auto;
}

@media (max-width: 1200px) {
  /* Cart: shrink summary panel + hide unit price col */
  .cart-layout {
    grid-template-columns: 1fr 300px;
    gap: 20px;
  }
  .cart-list-head .cart-list-head-cell:nth-child(2),
  .cart-row > div:nth-child(2) {
    display: none;
  }
  .cart-list-head,
  .cart-row {
    grid-template-columns: 1fr minmax(90px, 110px) minmax(70px, 90px) 32px !important;
  }
}

/* ── Nav hamburger + tablet: show below 1024px ──────────────────────────── */
@media (max-width: 1023px) {
  .header-topbar-inner {
    padding: 10px 16px;
    gap: 10px;
  }
  .nav-logo-wrap {
    flex: 1;
  }
  .nav-logo-image {
    max-width: 168px;
    max-height: 32px;
  }
  .header-topbar-right {
    flex-shrink: 0;
    gap: 4px;
  }
  .btn-nav-cta {
    display: none;
  }
  .header-desktop-cart {
    display: none;
  }
  .header-mobile-cart {
    display: flex !important;
  }
  .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--tb-navy);
    margin-left: 4px;
  }
  .nav-links {
    flex: none;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 0;
  }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    overflow-anchor: none;
    background: #fff;
    padding: 16px 20px calc(24px + env(safe-area-inset-bottom));
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 1200;
    gap: 0;
    animation: navSlideDown 0.22s cubic-bezier(0.4, 0, 0.2, 1) both;
  }
  .nav-links.open .nav-item,
  .nav-links.open .nav-item--has-children {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open .nav-item-trigger,
  .nav-links.open .nav-submenu-item-trigger {
    width: 100%;
  }
  .nav-links.open .nav-link {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.3;
    padding: 7px 0;
    min-height: 0;
    color: var(--tb-blue);
    justify-content: flex-start;
  }
  .nav-links.open .nav-toggle-btn,
  .nav-links.open .nav-submenu-toggle-btn {
    position: relative;
    z-index: 1;
    padding-right: 0;
    padding-left: 12px;
  }
  .nav-links.open .nav-item--has-children > .nav-submenu {
    display: none;
    position: static;
    min-width: 0;
    margin: 0 0 6px;
    padding: 2px 0 0 12px;
    border: none;
    border-left: 1px solid hsl(var(--border));
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    gap: 0;
  }
  .nav-links.open .nav-item--has-children.is-open > .nav-submenu {
    display: flex;
  }
  .nav-links.open .nav-submenu-link {
    flex: 1;
    min-width: 0;
    min-height: 0;
    line-height: 1.3;
    padding: 6px 0;
    white-space: normal;
  }
  .nav-links.open
    .nav-item--has-children.is-open
    > .nav-item-trigger
    .nav-link-caret {
    transform: rotate(180deg);
  }
  .nav-links.open .nav-submenu-item--has-children > .nav-submenu-nested {
    display: none;
    margin-left: 12px;
    padding: 2px 0 0 10px;
    background: #fff;
    gap: 0;
  }
  .nav-links.open
    .nav-submenu-item--has-children.is-open
    > .nav-submenu-nested {
    display: flex;
  }
  .nav-links.open
    .nav-submenu-item--has-children.is-open
    > .nav-submenu-item-trigger
    .nav-submenu-caret {
    transform: rotate(90deg);
  }
  .nav-links.open .nav-submenu-nested-link {
    min-height: 0;
    line-height: 1.3;
    padding: 5px 0;
  }
  .nav-links.open .nav-submenu-link:hover,
  .nav-links.open .nav-submenu-link--active,
  .nav-links.open .nav-submenu-nested-link:hover,
  .nav-links.open .nav-submenu-nested-link--active {
    background: transparent;
    color: var(--tb-navy);
  }

  /* ── Titanium banner: stack on intermediate sizes ───────────────────── */
  .advisory-bg {
    flex-direction: column !important;
  }
  .advisory-title {
    max-width: 100% !important;
  }
  .advisory-props-grid {
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-dynamic {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
  }

  /* ── Blog article: collapse to single column on tablet ────────────────── */
  .article-layout-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .article-layout-grid aside {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE  (< 768px)
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* ── Global spacing ───────────────────────────────────────────────────── */
  .max-w-7xl {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* ── Trust bar ────────────────────────────────────────────────────────── */
  .trust-bar-h,
  .bk-info-grid {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 0;
  }
  .trust-bar-inner {
    flex-direction: column;
    gap: 16px;
    padding: 16px !important;
  }
  .trust-bar-item {
    padding: 14px 12px;
  }

  /* ── Footer ───────────────────────────────────────────────────────────── */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-dynamic {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px;
  }
  .footer-dynamic > div:first-child {
    grid-column: auto;
  }

  /* ── Product listing sort bar ────────────────────────────────────────── */
  .input-52 {
    height: auto !important;
    padding: 10px 16px;
  }
  .collection-toolbar {
    align-items: stretch !important;
  }
  .collection-toolbar-controls {
    width: 100%;
    min-width: 0;
  }
  .collection-toolbar-controls .form-select-wrap {
    flex: 1 1 auto;
    min-width: 0 !important;
  }
  .collection-toolbar-controls .form-select {
    min-width: 0;
  }
  .collection-view-toggle {
    flex-shrink: 0;
  }
  /* ── Booking ──────────────────────────────────────────────────────────── */
  .booking-main-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .svc-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .hero-studio-img {
    display: none;
  }
  .studio-img-grid {
    grid-template-columns: 1fr;
  }
  .studio-img-grid img {
    height: 140px;
  }
  .booking-summary-card {
    position: static !important;
  }
  .flex.gap-8:has(.booking-trust-badge) {
    flex-direction: column;
    gap: 12px;
  }

  .steps-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .steps-row::before,
  .steps-row::after {
    display: none;
  }
  .step-connector {
    display: none;
  }
  .steps-row > .flex-1 {
    flex: none;
    max-width: 100%;
  }

  /* ── Tinybox hero ─────────────────────────────────────────────────────── */
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }
  .hero-img-h {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .hero-img-left,
  .hero-image-stack {
    width: 100%;
  }
  .hero-image-card-main {
    aspect-ratio: 4 / 5;
  }
  .hero-image-card-secondary {
    aspect-ratio: 16 / 10;
  }
  .hero-images {
    display: none;
  }

  /* Hero mobile swiper */
  .hero-mobile-swiper {
    position: relative;
  }
  .hero-swiper {
    width: 100%;
  }
  .hero-mobile-slide-img {
    width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: 16px;
    overflow: hidden;
  }
  .hero-swiper-pagination {
    bottom: 52px;
  }
  .hero-swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
  }
  .hero-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
  }
  .hero-mobile-badge {
    display: inline-flex;
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
  }

  /* ── Blog article layout ──────────────────────────────────────────────── */
  .article-layout-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .article-layout-grid aside {
    display: none;
  }
  .article-title {
    font-size: 22px;
  }
  .article-body {
    font-size: 14px;
  }
  .bc-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px;
  }
  .bc-hero-img-wrap {
    display: none;
  }
  .bc-hero-title {
    font-size: 28px;
  }
  .blog-main-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    gap: 10px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .blog-main-tab {
    min-height: 48px;
    min-width: max-content;
    font-size: 13px;
    padding: 0 14px;
  }
  .blog-main-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-main-section-title {
    font-size: 28px;
  }
  .blog-main-featured-layout,
  .blog-main-content-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .blog-main-featured-secondary {
    grid-template-columns: 1fr 1fr !important;
  }
  .blog-main-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .blog-main-right-rail {
    position: static;
  }
  .blog-main-cta {
    grid-template-columns: minmax(0, 1fr) !important;
    text-align: center;
  }
  .blog-main-cta-icon {
    margin: 0 auto;
  }
  .blog-main-cta-btn {
    width: 100%;
  }

  /* ── Pricing hero ─────────────────────────────────────────────────────── */
  .price-hero-section {
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: auto;
  }
  .price-hero-text {
    padding: 32px 0;
  }
  .hero-price-img {
    display: none;
  }

  /* ── Product listing: sidebar → bottom drawer ─────────────────────── */
  .listing-layout {
    flex-direction: column;
  }
  .collection-toolbar-controls {
    flex-wrap: nowrap;
  }
  .sidebar-sticky {
    width: 100% !important;
    position: static !important;
  }
  .aside-mobile-hidden {
    display: block !important;
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    max-height: 85vh;
    overflow-y: auto;
    background: white;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.18);
    z-index: 200;
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .aside-mobile-hidden.open {
    transform: translateY(0) !important;
  }
  .mobile-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 199;
  }
  .mobile-filter-overlay.open {
    display: block;
  }
  .mobile-filter-toggle {
    display: flex !important;
  }
  .mobile-drawer-header {
    display: block;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
  }
  .mobile-drawer-footer {
    display: flex;
    position: sticky;
    bottom: 0;
    background: white;
    padding: 12px 20px 16px;
    border-top: 1px solid hsl(var(--border));
    gap: 10px;
  }
  .mobile-drawer-footer .btn-outline {
    color: var(--tb-navy);
    border-color: var(--tb-navy);
  }
  .mobile-drawer-footer .btn-primary {
    background: var(--tb-blue);
    color: white;
  }
  .mobile-drawer-body {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 12px 20px 8px;
  }

  /* ── Product detail ───────────────────────────────────────────────────── */
  .prod-detail-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px;
  }
  .mini-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pd-tab {
    padding: 10px 14px;
    font-size: 13px;
  }
  .loc-grid {
    flex-wrap: wrap;
  }
  .loc-card {
    flex: 0 0 calc(50% - 8px);
  }

  /* ── Contact ──────────────────────────────────────────────────────────── */
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  /* ── Pricing ──────────────────────────────────────────────────────────── */
  .pricing-layout {
    flex-direction: column;
  }
  .pricing-half-col {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .ear-diagram-col {
    width: 100% !important;
    max-width: 360px;
    margin: 0 auto;
  }
  /* ── Cart table → card on mobile ─────────────────────────────────────── */
  .cart-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .cart-summary-card,
  .order-summary-card,
  .booking-summary-card {
    position: static !important;
  }
  .cart-list-head {
    display: none;
  }
  .cart-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
    position: relative;
  }
  .cart-row > div:first-child {
    flex: 1 1 100%;
    padding-right: 36px;
  }
  .cart-row-unit {
    display: none;
  }
  .cart-row .flex-center {
    flex: 0 0 auto;
    margin-top: 4px;
  }
  .cart-row-total {
    flex: 1;
    text-align: right;
    font-weight: 700;
    color: var(--tb-navy);
    line-height: 2.2;
    margin-top: 4px;
  }
  .cart-row-remove {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  /* ── Checkout layout ──────────────────────────────────────────────────── */
  .order-layout,
  .order-layout-3col {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .checkout-layout {
    flex-direction: column;
  }

  /* ── Typography scale-down ────────────────────────────────────────────── */
  .page-title-hero {
    font-size: 36px !important;
  }
  .page-title-xl {
    font-size: 30px !important;
  }
  .page-title-lg {
    font-size: 28px !important;
  }
  .page-title-md {
    font-size: 26px !important;
  }
  .page-title-sm {
    font-size: 24px !important;
  }
  .page-title-xs {
    font-size: 22px !important;
  }
  .sec-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .sec-head {
    font-size: 18px;
  }

  /* ── Misc ─────────────────────────────────────────────────────────────── */
  .order-form-card,
  .order-summary-card {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .bc-hero {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .blog-main-featured-layout,
  .blog-main-content-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .blog-main-featured-secondary {
    grid-template-columns: 1fr 1fr !important;
  }
  .blog-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-main-right-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-main-advisor-card {
    grid-column: 1 / -1;
  }
  .blog-main-cta {
    grid-template-columns: auto 1fr;
  }
  .blog-main-cta-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* ── Very small screens (< 480px) ───────────────────────────────────────── */
@media (max-width: 479px) {
  .trust-bar-h,
  .bk-info-grid {
    grid-template-columns: 1fr;
  }
  .grid.grid-cols-4,
  .grid.grid-cols-3 {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* ── Animation delay utilities (replaces inline --anim-delay) ─────────── */
.anim-d-0 {
  --anim-delay: 0s;
}
.anim-d-1 {
  --anim-delay: 0.06s;
}
.anim-d-2 {
  --anim-delay: 0.12s;
}
.anim-d-3 {
  --anim-delay: 0.18s;
}
.anim-d-4 {
  --anim-delay: 0.24s;
}
.anim-d-5 {
  --anim-delay: 0.3s;
}
/* Coupon panel */
.coupon-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 400;
}
.coupon-overlay.active {
  display: block;
}

.coupon-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 420px;
  background: var(--color-surface, #fff);
  z-index: 401;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.coupon-panel.active {
  transform: translateX(0);
}

.coupon-panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-border, #e5e7eb);
  flex-shrink: 0;
}
.coupon-panel-title {
  font-weight: 600;
  font-size: 1rem;
}
.coupon-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text, #111);
  padding: 0.25rem;
  display: flex;
  align-items: center;
}

.coupon-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coupon-card {
  border: 1.5px dashed var(--color-border, #e5e7eb);
  border-radius: 0.75rem;
  padding: 1rem;
}
.coupon-desc {
  font-size: 0.875rem;
  color: var(--color-muted, #6b7280);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.coupon-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.coupon-code {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--color-accent, #b8860b);
  background: var(--color-accent-subtle, #fdf8e7);
  padding: 0.3rem 0.75rem;
  border-radius: 0.4rem;
  border: 1px dashed currentColor;
}
.coupon-copy-btn {
  background: none;
  border: 1.5px solid var(--color-accent, #b8860b);
  color: var(--color-accent, #b8860b);
  border-radius: 0.4rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}
.coupon-copy-btn:hover {
  background: var(--color-accent, #b8860b);
  color: #fff;
}

.coupon-panel-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--color-border, #e5e7eb);
  flex-shrink: 0;
}

.coupon-open-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: 1.5px solid var(--color-border, #e5e7eb);
  border-radius: 0.5rem;
  padding: 0.6rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text, #111);
  cursor: pointer;
  transition: border-color 0.15s;
}
.coupon-open-btn:hover {
  border-color: var(--color-accent, #b8860b);
}

/* Floating action buttons */
#fab-wrap {
  display: none;
}

@keyframes fab-in {
  from {
    opacity: 0;
    transform: translateX(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (min-width: 768px) {
  #fab-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
  }
  #fab-wrap .fab-btn,
  #fab-wrap button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    background: var(--tb-navy);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fab-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition:
      background 0.15s,
      transform 0.15s,
      box-shadow 0.15s;
  }
  #fab-wrap .fab-btn:nth-of-type(1) {
    animation-delay: 0.1s;
  }
  #fab-wrap .fab-btn:nth-of-type(2) {
    animation-delay: 0.2s;
  }
  #fab-wrap .fab-btn:nth-of-type(3) {
    animation-delay: 0.3s;
  }
  #fab-wrap .fab-btn:hover,
  #fab-wrap button:hover {
    background: var(--tb-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }
  #fab-wrap #fab-top {
    opacity: 0;
    pointer-events: none;
    animation: none;
    transform: translateX(20px) scale(0.8);
    transition:
      opacity 0.25s,
      transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  #fab-wrap #fab-top.on {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }
  #fab-wrap #fab-top.on:hover {
    background: var(--tb-primary);
    transform: translateY(-3px) scale(1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }
  #fab-wrap .fab-icon {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
  }
  #fab-wrap .fab-phone {
    background: #16a34a;
  }
  #fab-wrap .fab-phone:hover {
    background: #15803d;
  }
  #fab-wrap .fab-zalo {
    background: #0068ff;
  }
  #fab-wrap .fab-zalo:hover {
    background: #0050cc;
  }
  #fab-wrap .fab-mess {
    background: transparent !important;
  }
  #fab-wrap .fab-mess img {
    width: 46px;
    height: 46px;
    object-fit: cover;
  }
}

.sidebar-contact-icon {
  display: inline-flex;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.sidebar-contact-icon:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

/* ── Product description richtext reset ───────────────────────────────────── */
/* Tailwind preflight strips browser defaults; restore them for WYSIWYG output */
.product-richtext h1,
.product-richtext h2,
.product-richtext h3,
.product-richtext h4,
.product-richtext h5,
.product-richtext h6 {
  font-weight: 600;
  line-height: 1.35;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
  color: hsl(var(--foreground));
}
.product-richtext h1 { font-size: 1.5rem; }
.product-richtext h2 { font-size: 1.25rem; }
.product-richtext h3 { font-size: 1.1rem; }
.product-richtext h4,
.product-richtext h5,
.product-richtext h6 { font-size: 1rem; }

.product-richtext p {
  margin-bottom: 0.85em;
  line-height: 1.7;
}
.product-richtext p:last-child {
  margin-bottom: 0;
}

.product-richtext ul,
.product-richtext ol {
  padding-left: 1.4em;
  margin-bottom: 0.85em;
}
.product-richtext ul { list-style-type: disc; }
.product-richtext ol { list-style-type: decimal; }
.product-richtext li {
  margin-bottom: 0.3em;
  line-height: 1.65;
}
.product-richtext li > ul,
.product-richtext li > ol {
  margin-top: 0.25em;
  margin-bottom: 0;
}

.product-richtext strong,
.product-richtext b { font-weight: 700; }
.product-richtext em,
.product-richtext i  { font-style: italic; }

.product-richtext a {
  color: hsl(var(--tb-primary, 38 90% 56%));
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-richtext a:hover { opacity: 0.8; }

.product-richtext blockquote {
  border-left: 3px solid hsl(var(--border));
  padding-left: 1em;
  margin: 1em 0;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}

.product-richtext img {
  display: inline-block; /* override Tailwind preflight's display:block so text-align:center works */
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  margin: 0.5em 0;
}

.product-richtext hr {
  border: none;
  border-top: 1px solid hsl(var(--border));
  margin: 1.25em 0;
}

.product-richtext table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
  margin-bottom: 1em;
}
.product-richtext th,
.product-richtext td {
  padding: 0.45em 0.75em;
  vertical-align: top;
}
.product-richtext th {
  font-weight: 600;
}

/* ── Home Blog section ───────────────────────────────────────────────────────── */
.home-blog-section {
  border-top: 1px solid hsl(var(--border));
}
.home-blog-eyebrow {
  font-family: "Ephesis", cursive;
  font-size: 52px;
  font-weight: 400;
  color: var(--tb-primary);
  line-height: 1.1;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.home-blog-star {
  font-size: 22px;
  color: var(--tb-gold);
  line-height: 1;
}
.home-blog-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--tb-navy);
  margin-bottom: 10px;
}
.home-blog-subtext {
  font-size: 14px;
  color: var(--tb-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.home-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .home-blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.home-blog-col-head {
  margin-bottom: 14px;
}
.home-blog-cat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--tb-navy);
  margin-bottom: 4px;
}
.home-blog-cat-icon {
  font-size: 22px;
  color: var(--tb-primary);
}
.home-blog-star-sm {
  font-size: 13px;
  color: var(--tb-gold);
}
.home-blog-cat-desc {
  font-size: 13px;
  color: var(--tb-muted);
  line-height: 1.6;
  margin: 0;
}
.home-blog-row {
  position: relative;
}
.home-blog-scroll {
  overflow-x: auto;
  padding: 6px 2px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.home-blog-scroll::-webkit-scrollbar { display: none; }
.home-blog-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 14px;
}
.home-blog-slide {
  flex: 0 0 220px;
  width: 220px;
}
@media (min-width: 1024px) {
  .home-blog-slide { flex: 0 0 185px; width: 185px; }
}
/* arrows */
.home-blog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid hsl(var(--border));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  color: var(--tb-navy);
  font-size: 15px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  padding: 0;
}
.home-blog-arrow.swiper-button-disabled { opacity: 0.35; pointer-events: none; }
.home-blog-arrow:hover {
  background: var(--tb-primary);
  color: #fff;
  border-color: var(--tb-primary);
}
.home-blog-arrow-left { left: -16px; }
.home-blog-arrow-right { right: -16px; }
@media (max-width: 1023px) {
  .home-blog-arrow-left { left: -8px; }
  .home-blog-arrow-right { right: -8px; }
}
/* cta */
.home-blog-cta-wrap {
  text-align: center;
  margin-top: 18px;
}
.home-blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--tb-primary);
  color: var(--tb-primary);
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.home-blog-cta-btn:hover {
  background: var(--tb-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.35);
}
.home-blog-cta-btn:hover i {
  transform: translateX(3px);
  transition: transform 0.2s;
}
.home-blog-cta-btn i {
  transition: transform 0.2s;
}