/* =============================================================================
   TOFFEHA — COMPONENTS
   Buttons, badges, cards, inputs, tags, avatars, stat pills, glass, skeletons
   ============================================================================= */

/* ---------------------------------------------------------------------------
   Buttons (.toffeha-btn)
   --------------------------------------------------------------------------- */
.toffeha-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-6);
  height: var(--control-h-md); /* 44px */
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  transition:
    background-color var(--dur-fast) var(--ease-standard),
    color           var(--dur-fast) var(--ease-standard),
    border-color    var(--dur-fast) var(--ease-standard),
    box-shadow      var(--dur-fast) var(--ease-standard),
    transform       var(--dur-fast) var(--ease-entrance);
}

.toffeha-btn:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 55%, transparent);
}

/* Primary — brand red */
.toffeha-btn--primary {
  background: var(--brand);
  color: var(--text-on-brand);
  box-shadow: var(--shadow-brand);
}

.toffeha-btn--primary:hover {
  background: var(--brand-hover);
  transform: translateY(var(--hover-lift));
  text-decoration: none;
  color: var(--text-on-brand);
}

.toffeha-btn--primary:active {
  transform: scale(var(--press-scale));
}

/* Secondary — outlined */
.toffeha-btn--secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.toffeha-btn--secondary:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(var(--hover-lift));
  text-decoration: none;
  color: var(--text);
}

.toffeha-btn--secondary:active {
  transform: scale(var(--press-scale));
}

/* Ghost — no background */
.toffeha-btn--ghost {
  background: transparent;
  color: var(--text);
  border: none;
  box-shadow: none;
}

.toffeha-btn--ghost:hover {
  background: var(--sand-100);
  text-decoration: none;
  color: var(--text);
}

.toffeha-btn--ghost:active {
  transform: scale(var(--press-scale));
}

/* Azure — accent blue */
.toffeha-btn--azure {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 102, 176, 0.3);
}

.toffeha-btn--azure:hover {
  background: #1A5A9E;
  transform: translateY(var(--hover-lift));
  text-decoration: none;
  color: #fff;
}

.toffeha-btn--azure:active {
  transform: scale(var(--press-scale));
}

/* Premium — gold */
.toffeha-btn--premium {
  background: var(--premium);
  color: #fff;
  box-shadow: 0 8px 24px rgba(194, 138, 28, 0.3);
}

.toffeha-btn--premium:hover {
  background: #A87818;
  transform: translateY(var(--hover-lift));
  text-decoration: none;
  color: #fff;
}

.toffeha-btn--premium:active {
  transform: scale(var(--press-scale));
}

/* Outline — bordered, transparent (used by pricing / secondary CTAs) */
.toffeha-btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  box-shadow: none;
}
.toffeha-btn--outline:hover {
  background: var(--surface-2);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(var(--hover-lift));
  text-decoration: none;
}
.toffeha-btn--outline:active { transform: scale(var(--press-scale)); }

/* Size modifiers */
.toffeha-btn--sm {
  height: var(--control-h-sm); /* 36px */
  padding: 0 var(--space-4);
  font-size: var(--text-xs);
}

.toffeha-btn--lg {
  height: var(--control-h-lg); /* 54px */
  padding: 0 var(--space-8);
  font-size: var(--text-md);
}

/* Icon-only square button */
.toffeha-btn--icon {
  width: var(--control-h-md);
  height: var(--control-h-md);
  padding: 0;
  flex-shrink: 0;
}

.toffeha-btn--icon.toffeha-btn--sm {
  width: var(--control-h-sm);
  height: var(--control-h-sm);
}

.toffeha-btn--icon.toffeha-btn--lg {
  width: var(--control-h-lg);
  height: var(--control-h-lg);
}

/* Disabled state */
.toffeha-btn:disabled,
.toffeha-btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

/* Full-width modifier */
.toffeha-btn--full {
  width: 100%;
}

/* ---------------------------------------------------------------------------
   Badges (.toffeha-badge)
   --------------------------------------------------------------------------- */
.toffeha-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  white-space: nowrap;
}

.toffeha-badge--free {
  background: var(--success-100);
  color: var(--success-500);
}

.toffeha-badge--paid {
  background: var(--premium-soft);
  color: var(--premium);
}

.toffeha-badge--premium {
  background: var(--grad-sunrise);
  color: #fff;
}

.toffeha-badge--tunisia {
  background: #E11217;
  color: #fff;
}

.toffeha-badge--subscription {
  background: var(--accent-soft);
  color: var(--accent);
}

.toffeha-badge--verified {
  background: var(--azure-50);
  color: var(--azure-700);
}

.toffeha-badge--featured {
  background: var(--ink-900);
  color: var(--text-on-dark);
}

/* ---------------------------------------------------------------------------
   Cards (.toffeha-card)
   --------------------------------------------------------------------------- */
.toffeha-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  will-change: transform;
  transition:
    transform  var(--dur-fast) var(--ease-entrance),
    box-shadow var(--dur-fast) var(--ease-standard);
}

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

/* Photo container */
.toffeha-card__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--sand-100);
}

.toffeha-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-standard);
  display: block;
}

.toffeha-card__photo:hover img {
  transform: scale(1.04);
}

/* Photo overlay gradient */
.toffeha-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 32, 66, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

/* Badges positioned inside photo (top-left) */
.toffeha-card__badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  z-index: var(--z-raised);
}

/* Save / wishlist button (top-right in photo) */
.toffeha-card__save-btn {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: var(--z-raised);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  color: var(--text-on-dark);
  transition: transform var(--dur-fast) var(--ease-spring), background var(--dur-fast);
}

.toffeha-card__save-btn:hover {
  transform: scale(1.1);
}

/* Card body */
.toffeha-card__body {
  padding: var(--space-5);
}

/* Meta row (badges, duration, etc.) */
.toffeha-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}

/* Title */
.toffeha-card__title {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  line-height: var(--leading-snug);
  color: var(--text);
  margin-bottom: var(--space-2);
  margin-top: 0;
  text-wrap: balance;
}

/* Footer row */
.toffeha-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
  gap: var(--space-3);
}

/* ---------------------------------------------------------------------------
   Creator Chip (.toffeha-creator-chip)
   --------------------------------------------------------------------------- */
.toffeha-creator-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: inherit;
}

.toffeha-creator-chip__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toffeha-creator-chip__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toffeha-creator-chip__name {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  line-height: 1;
}

/* Verified indicator */
.toffeha-creator-chip--verified .toffeha-creator-chip__name::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: middle;
}

/* ---------------------------------------------------------------------------
   Rating (.toffeha-rating)
   --------------------------------------------------------------------------- */
.toffeha-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.toffeha-rating__stars {
  display: inline-flex;
  gap: 2px;
}

.toffeha-rating__star {
  width: 14px;
  height: 14px;
  color: var(--border);
}

.toffeha-rating__star--filled {
  color: #E11217;
}

.toffeha-rating__star--half {
  color: #E11217;
  opacity: 0.5;
}

.toffeha-rating__count {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-left: 2px;
}

/* ---------------------------------------------------------------------------
   Inputs (.toffeha-input)
   --------------------------------------------------------------------------- */
.toffeha-input {
  display: block;
  width: 100%;
  height: var(--control-h-md); /* 44px */
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 0 var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition:
    border-color var(--dur-fast) var(--ease-standard),
    box-shadow   var(--dur-fast) var(--ease-standard);
}

.toffeha-input::placeholder {
  color: var(--text-subtle);
}

.toffeha-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.toffeha-input--search {
  border-radius: var(--radius-pill);
  padding-left: var(--space-7);
}

.toffeha-input-wrap {
  position: relative;
}

.toffeha-input-wrap .toffeha-input-icon {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  width: 18px;
  height: 18px;
}

/* ---------------------------------------------------------------------------
   Tags / Chips (.toffeha-tag)
   --------------------------------------------------------------------------- */
.toffeha-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  transition:
    border-color var(--dur-fast) var(--ease-standard),
    background   var(--dur-fast) var(--ease-standard),
    color        var(--dur-fast) var(--ease-standard);
}

.toffeha-tag:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
}

.toffeha-tag--active,
.toffeha-tag[aria-pressed="true"] {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
}

/* ---------------------------------------------------------------------------
   Avatar (.toffeha-avatar)
   --------------------------------------------------------------------------- */
.toffeha-avatar {
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toffeha-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toffeha-avatar--sm  { width: 32px;  height: 32px; }
.toffeha-avatar--md  { width: 48px;  height: 48px; }
.toffeha-avatar--lg  { width: 64px;  height: 64px; }
.toffeha-avatar--xl  { width: 96px;  height: 96px; }

/* ---------------------------------------------------------------------------
   Stat Pill (.toffeha-stat-pill)
   --------------------------------------------------------------------------- */
.toffeha-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
}

.toffeha-stat-pill__value {
  font-weight: var(--fw-bold);
  font-size: var(--text-md);
  font-family: var(--font-mono);
  color: var(--text);
  line-height: 1;
}

.toffeha-stat-pill__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1;
}

/* ---------------------------------------------------------------------------
   Glass Panel (.toffeha-glass)
   --------------------------------------------------------------------------- */
.toffeha-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
}

.toffeha-glass--dark {
  background: var(--glass-bg-dark);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}

/* ---------------------------------------------------------------------------
   Empty State (.toffeha-empty)
   --------------------------------------------------------------------------- */
.toffeha-empty {
  text-align: center;
  padding: var(--space-12) var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.toffeha-empty__icon {
  width: 48px;
  height: 48px;
  color: var(--ink-200);
  flex-shrink: 0;
}

.toffeha-empty__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}

.toffeha-empty__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 320px;
  margin: 0;
  line-height: var(--leading-relaxed);
  text-wrap: pretty;
}

.toffeha-empty__action {
  margin-top: var(--space-2);
}

/* ---------------------------------------------------------------------------
   Skeleton / Loading (.toffeha-skeleton)
   --------------------------------------------------------------------------- */
@keyframes toffeha-shimmer {
  from { background-position:  200% 0; }
  to   { background-position: -200% 0; }
}

.toffeha-skeleton {
  background: linear-gradient(
    90deg,
    var(--sand-100) 25%,
    var(--sand-200) 50%,
    var(--sand-100) 75%
  );
  background-size: 200% 100%;
  animation: toffeha-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.toffeha-skeleton--text {
  height: 1em;
  border-radius: var(--radius-xs);
}

.toffeha-skeleton--heading {
  height: 1.5em;
  border-radius: var(--radius-xs);
}

.toffeha-skeleton--card {
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 3;
}

.toffeha-skeleton--circle {
  border-radius: 50%;
}

/* ---------------------------------------------------------------------------
   Site Header (.toffeha-header)
   Sticky glassmorphism header. Uses [toffeha_header] PHP shortcode so
   dynamic PHP (user state, home_url) works inside FSE template parts.
   --------------------------------------------------------------------------- */
.toffeha-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.toffeha-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
}

/* ---- Brand / Logo ---- */
.toffeha-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.toffeha-header__brand:hover {
  text-decoration: none;
}

.toffeha-header__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.toffeha-header__wordmark {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1;
  user-select: none;
}

.toffeha-header__wordmark-a {
  color: var(--brand);
}

/* ---- Primary Navigation ---- */
.toffeha-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
}

.toffeha-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.toffeha-nav__link {
  display: block;
  padding: 6px var(--space-3);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  transition:
    color      var(--dur-fast) var(--ease-standard),
    background var(--dur-fast) var(--ease-standard);
}

.toffeha-nav__link:hover {
  color: var(--brand);
  background: var(--brand-soft);
  text-decoration: none;
}

.toffeha-nav__link--active,
.toffeha-nav__link[aria-current="page"] {
  color: var(--brand);
  font-weight: var(--fw-semibold);
  position: relative;
}

.toffeha-nav__link--active::after,
.toffeha-nav__link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* ---- Actions (right side) ---- */
.toffeha-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Search button */
.toffeha-header__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease-standard),
    color     var(--dur-fast) var(--ease-standard);
}

.toffeha-header__search-btn:hover {
  background: var(--sand-100);
  color: var(--text);
}

.toffeha-header__search-btn:focus-visible {
  outline: 2px solid transparent;
  box-shadow: var(--ring-brand);
}

/* Sign in link */
.toffeha-header__signin {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 2px;
  transition: color var(--dur-fast) var(--ease-standard);
}

.toffeha-header__signin:hover {
  color: var(--text);
  text-decoration: none;
}

/* CTA button sizing in header */
.toffeha-header__cta {
  height: 40px;
  padding: 0 var(--space-5);
  font-size: var(--text-sm);
}

/* Hamburger (mobile only) */
.toffeha-hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}

.toffeha-hamburger-toggle:hover {
  background: var(--sand-100);
}

.toffeha-hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-spring),
              opacity   var(--dur-fast) var(--ease-standard);
  transform-origin: center;
}

.toffeha-hamburger-toggle[aria-expanded="true"] .toffeha-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.toffeha-hamburger-toggle[aria-expanded="true"] .toffeha-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.toffeha-hamburger-toggle[aria-expanded="true"] .toffeha-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Safety net: prevent stray <p> / <br> injected by wpautop from breaking flex containers */
.toffeha-header > p,
.toffeha-header > br,
.toffeha-header__inner > p,
.toffeha-header__inner > br,
.toffeha-mobile-menu > p,
.toffeha-mobile-menu > br {
  display: none;
  margin: 0;
  line-height: 0;
}

/* ---- Skip link ---- */
.toffeha-skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  background: var(--brand);
  color: #fff;
  padding: 8px 16px;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  z-index: var(--z-toast);
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.toffeha-skip-link:focus {
  top: 0;
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .toffeha-header__nav {
    display: none;
  }

  .toffeha-header__signin {
    display: none;
  }

  .toffeha-header__cta {
    display: none;
  }

  .toffeha-hamburger-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .toffeha-header__inner {
    gap: var(--space-3);
  }
}

/* ---------------------------------------------------------------------------
   Mobile Menu Overlay (.toffeha-mobile-menu)
   --------------------------------------------------------------------------- */
.toffeha-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-5) var(--space-6) var(--space-8);
  transform: translateX(-100%);
  transition: transform var(--dur-slow) var(--ease-entrance);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.toffeha-mobile-menu.is-open {
  transform: translateX(0);
}

.toffeha-mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-overlay) - 1);
  background: rgba(14, 32, 66, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-standard);
}

.toffeha-mobile-menu.is-open ~ .toffeha-mobile-menu__backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Header row inside the mobile menu */
.toffeha-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}

.toffeha-mobile-menu__close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.toffeha-mobile-menu__close-btn:hover {
  background: var(--sand-100);
  border-color: var(--border-strong);
}

/* Nav list */
.toffeha-mobile-menu__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-8);
}

.toffeha-mobile-menu__link {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--text);
  line-height: var(--leading-snug);
  padding: var(--space-2) 0;
  text-decoration: none;
  letter-spacing: var(--tracking-snug);
  transition: color var(--dur-fast) var(--ease-standard);
}

.toffeha-mobile-menu__link:hover,
.toffeha-mobile-menu__link--active {
  color: var(--brand);
  text-decoration: none;
}

/* CTA buttons at bottom */
.toffeha-mobile-menu__ctas {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden;
}
