/*
Theme Name: Taco Bell Elementor Custom
Theme URI: https://tacobellmenuprice.us/
Author: Taco Bell Menu Price Guide
Author URI: https://tacobellmenuprice.us/
Description: Elementor-first WordPress theme converted from the supplied Taco Bell frontend. Includes editable header, hero, feature cards, menu catalog, calculator, comparison table, guide sections, FAQ and footer widgets. Every visible homepage text and image can be edited through Elementor when using the included Canvas template.
Version: 4.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taco-bell-menus-price
Tags: food-and-drink, custom-menu, grid-layout, two-columns, full-width-template, theme-options, elementor, page-builder, translation-ready
*/

:root {
  --tb-purple: #702283;
  --tb-purple-dark: #4b1059;
  --tb-purple-light: #f3e8ff;
  --tb-pink: #d91b5c;
  --tb-yellow: #f59e0b;
  --tb-dark: #111827;
  --tb-gray-50: #f9fafb;
  --tb-gray-100: #f3f4f6;
  --tb-gray-200: #e5e7eb;
  --tb-gray-300: #d1d5db;
  --tb-gray-400: #9ca3af;
  --tb-gray-600: #4b5563;
  --tb-gray-800: #1f2937;
  --tb-radius-sm: 8px;
  --tb-radius: 16px;
  --tb-radius-lg: 20px;
  --tb-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tb-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --tb-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: var(--tb-gray-50);
  color: var(--tb-gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--tb-purple);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--tb-purple-dark);
}

/* Universal Image Rules to prevent distortion */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ============================================================
   TOP BANNER & HEADER NAVIGATION
   ============================================================ */
.tb-top-banner {
  background: #190e1e;
  color: #e5e7eb;
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tb-top-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tb-site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--tb-gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* WordPress Admin Bar & Customizer Offset */
.admin-bar .tb-site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .tb-site-header {
    top: 46px;
  }
}

.tb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.tb-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--tb-dark) !important;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.tb-logo-badge {
  background: var(--tb-purple);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.tb-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.tb-nav-menu a {
  color: var(--tb-gray-600);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.tb-nav-menu a:hover {
  color: var(--tb-purple);
}

.tb-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tb-header-cta {
  background: var(--tb-purple);
  color: #ffffff !important;
  padding: 9px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(112, 34, 131, 0.25);
  white-space: nowrap;
}

.tb-header-cta:hover {
  background: var(--tb-purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(112, 34, 131, 0.35);
}

.tb-nav-tray-badge {
  background: #ffffff;
  color: var(--tb-purple);
  border-radius: 9999px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 800;
}

/* ============================================================
   HERO BANNER SECTION
   ============================================================ */
.tb-hero-section {
  background: linear-gradient(135deg, #1b0c20 0%, #441250 50%, #702283 100%);
  color: #ffffff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.tb-hero-content {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.tb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tb-hero-title {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.tb-hero-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
  line-height: 1.6;
}

.tb-hero-search {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.tb-hero-search input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  outline: none;
  color: var(--tb-dark);
}

.tb-hero-search input:focus {
  border-color: #fbbf24;
}

.tb-hero-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tb-gray-600);
  font-size: 16px;
  pointer-events: none;
}

/* ============================================================
   CATEGORY FILTER BAR & CONTROLS
   ============================================================ */
.tb-category-nav {
  background: transparent;
  padding: 8px 0 16px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.tb-category-pills {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 4px 0;
}

.tb-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff;
  color: var(--tb-gray-800);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--tb-gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tb-category-pill:hover {
  background: var(--tb-gray-100);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.tb-category-pill.active {
  background: var(--tb-purple);
  color: #ffffff;
  border-color: var(--tb-purple);
  box-shadow: 0 4px 12px rgba(112, 34, 131, 0.35);
}

/* Filter Controls Bar */
.tb-filter-bar {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  margin: 12px 0 24px;
  border: 1px solid var(--tb-gray-200);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-shadow: var(--tb-shadow-sm);
}

.tb-filter-search-box {
  flex-grow: 1;
  max-width: 400px;
  min-width: 220px;
}

.tb-filter-search-box input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background: #fdfdfd;
}

.tb-filter-search-box input:focus {
  border-color: var(--tb-purple);
  box-shadow: 0 0 0 2px rgba(112, 34, 131, 0.15);
  background: #ffffff;
}

.tb-filter-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.tb-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 12px;
  background: var(--tb-gray-50);
  border: 1px solid var(--tb-gray-200);
  border-radius: 10px;
  user-select: none;
  transition: all 0.15s ease;
}

.tb-filter-toggle:hover {
  background: var(--tb-gray-100);
}

.tb-filter-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--tb-purple);
  cursor: pointer;
}

.tb-select-input {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
  outline: none;
}

/* ============================================================
   MENU CARDS WITH UNBREAKABLE PICTURE SIZES
   ============================================================ */
.tb-menu-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)) !important;
  gap: 24px !important;
  margin-top: 16px !important;
  align-items: stretch !important;
}

.tb-menu-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid var(--tb-gray-200) !important;
  overflow: hidden !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease !important;
  display: flex;
  flex-direction: column !important;
  height: 100% !important;
  position: relative !important;
}

.tb-menu-card.tb-hidden,
.tb-menu-card.is-hidden,
.tb-menu-card[hidden],
.tb-menu-card[data-hidden="true"] {
  display: none !important;
}

.tb-menu-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 24px -4px rgba(0, 0, 0, 0.08), 0 8px 10px -4px rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(112, 34, 131, 0.35) !important;
}

/* WordPress Emoji Protection to Prevent Stretched Icons */
img.emoji,
.tb-card-image-wrap img.emoji,
.tb-modal-image-wrap img.emoji,
.tb-image-badges-top img.emoji,
.tb-image-badges-top img,
.tb-image-cat-bottom img {
  position: static !important;
  display: inline-block !important;
  width: 1em !important;
  height: 1em !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 1.2em !important;
  max-height: 1.2em !important;
  padding: 0 !important;
  margin: 0 0.2em !important;
  vertical-align: -0.15em !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  transform: none !important;
}

/* Bulletproof Image Box - Fixed 210px with Object Fit */
.tb-card-image-wrap {
  position: relative !important;
  width: 100% !important;
  height: 210px !important;
  min-height: 210px !important;
  max-height: 210px !important;
  background: #18101e !important;
  overflow: hidden !important;
  display: block !important;
  isolation: isolate !important;
  border-top-left-radius: inherit !important;
  border-top-right-radius: inherit !important;
}

/* Match ONLY the main food photo, NEVER child emojis or badge icons */
.tb-card-image-wrap > img.tb-card-image,
.tb-card-image-wrap > img:not(.emoji) {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 0 !important;
}

.tb-menu-card:hover .tb-card-image {
  transform: scale(1.06) !important;
}

.tb-card-image-gradient {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.4) 100%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.tb-image-badges-top {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  right: 10px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 6px !important;
  pointer-events: none !important;
  z-index: 5 !important;
  width: calc(100% - 20px) !important;
  max-width: calc(100% - 20px) !important;
}

.tb-badge-group {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  flex-wrap: nowrap !important;
}

.tb-badge-new {
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
  background: #f59e0b !important;
  color: #111827 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 3px 7px !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

.tb-badge-popular {
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
  background: var(--tb-purple) !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

.tb-badge-veg {
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
  background: #059669 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 3px 7px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

.tb-badge-cal {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: rgba(17, 24, 39, 0.9) !important;
  backdrop-filter: blur(6px) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 3px 9px !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  white-space: nowrap !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
  line-height: 1.2 !important;
}

.tb-image-cat-bottom {
  position: absolute !important;
  bottom: 10px !important;
  left: 10px !important;
  pointer-events: none !important;
  z-index: 5 !important;
}

.tb-image-cat-bottom span {
  display: inline-block !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  background: rgba(0, 0, 0, 0.65) !important;
  backdrop-filter: blur(4px) !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  letter-spacing: 0.05em !important;
  white-space: nowrap !important;
}

/* Card Content Area */
.tb-card-content {
  padding: 18px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  justify-content: space-between !important;
}

.tb-card-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 8px !important;
}

.tb-card-title {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--tb-dark) !important;
  line-height: 1.3 !important;
}

.tb-card-pricing {
  text-align: right !important;
  flex-shrink: 0 !important;
}

.tb-card-price {
  font-size: 20px !important;
  font-weight: 900 !important;
  color: var(--tb-purple) !important;
  line-height: 1.1 !important;
}

.tb-card-old-price {
  font-size: 11px !important;
  color: #9ca3af !important;
  text-decoration: line-through !important;
  font-weight: 600 !important;
}

.tb-card-body {
  margin-bottom: 16px !important;
}

.tb-card-desc {
  font-size: 13px !important;
  color: var(--tb-gray-600) !important;
  line-height: 1.5 !important;
  margin-bottom: 12px !important;
}

.tb-allergens-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 4px !important;
  margin-top: 6px !important;
}

.tb-allergen-pill {
  background: #f1f5f9 !important;
  color: #475569 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 2px 7px !important;
  border-radius: 4px !important;
  border: 1px solid #e2e8f0 !important;
}

/* Card Footer Actions */
.tb-card-footer {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--tb-gray-200) !important;
}

.tb-btn-add-tray {
  flex-grow: 1 !important;
  background: var(--tb-purple-light) !important;
  color: var(--tb-purple) !important;
  border: 1px solid rgba(112, 34, 131, 0.2) !important;
  padding: 9px 14px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
}

.tb-btn-add-tray:hover {
  background: var(--tb-purple) !important;
  color: #ffffff !important;
}

.tb-btn-view-details {
  background: var(--tb-gray-100) !important;
  color: var(--tb-gray-800) !important;
  border: 1px solid var(--tb-gray-200) !important;
  padding: 9px 14px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.tb-btn-view-details:hover {
  background: var(--tb-gray-200) !important;
}

/* ============================================================
   MEAL TRAY & CALORIE CALCULATOR SECTION
   ============================================================ */
.tb-meal-calculator-section {
  background: #ffffff;
  border-radius: var(--tb-radius);
  border: 1px solid var(--tb-gray-200);
  padding: 32px 28px;
  margin: 40px 0;
  box-shadow: var(--tb-shadow-sm);
}

.tb-calc-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.tb-calc-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--tb-dark);
  margin-top: 4px;
}

.tb-calc-subtitle {
  font-size: 14px;
  color: var(--tb-gray-600);
  max-width: 600px;
}

.tb-tray-empty-box {
  background: var(--tb-gray-50);
  border: 2px dashed var(--tb-gray-300);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
}

.tb-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tb-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
}

.tb-tray-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}

@media (max-width: 900px) {
  .tb-tray-grid {
    grid-template-columns: 1fr;
  }
}

.tb-tray-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tb-tray-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--tb-gray-200);
  margin-bottom: 12px;
}

.tb-btn-link-danger {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.tb-btn-link-danger:hover {
  text-decoration: underline;
}

.tb-tray-item-row {
  background: var(--tb-gray-50);
  border: 1px solid var(--tb-gray-200);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Bulletproof Tray Thumbnail Image */
.tb-tray-thumb-wrap {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #e2e8f0 !important;
  position: relative !important;
  flex-shrink: 0 !important;
}

.tb-tray-thumb-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.tb-tray-info {
  flex-grow: 1;
  min-width: 0;
}

.tb-tray-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--tb-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tb-tray-meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-top: 2px;
}

.tb-tray-item-price {
  font-weight: 800;
  color: var(--tb-purple);
}

.tb-tray-item-cal {
  color: #c2410c;
  font-weight: 600;
}

.tb-tray-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-tray-stepper {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-tray-stepper:hover {
  background: var(--tb-gray-100);
}

.tb-tray-qty-num {
  font-size: 14px;
  font-weight: 800;
  min-width: 16px;
  text-align: center;
}

.tb-tray-del {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
}

.tb-tray-del:hover {
  color: #dc2626;
}

/* Order Summary Box */
.tb-order-summary-card {
  background: #ffffff;
  border: 1px solid var(--tb-gray-200);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--tb-shadow-sm);
}

.tb-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--tb-gray-600);
}

.tb-summary-total {
  font-size: 18px;
  font-weight: 900;
  color: var(--tb-dark);
  padding-top: 10px;
  border-top: 1px solid var(--tb-gray-200);
  margin-top: 10px;
}

.tb-summary-total span:last-child {
  color: var(--tb-purple);
  font-size: 22px;
}

.tb-calorie-metric-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 16px 0;
}

.tb-savings-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #166534;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ============================================================
   NUTRITION & ALLERGEN DETAIL MODAL
   ============================================================ */
.tb-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tb-modal-dialog {
  background: #ffffff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
}

.tb-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease;
}

.tb-modal-close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.tb-modal-image-wrap {
  position: relative !important;
  width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  background: #18101e !important;
  overflow: hidden !important;
}

.tb-modal-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
}

.tb-modal-image-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.tb-modal-body {
  padding: 24px;
}

/* ============================================================
   COMPARISON TABLE SECTION
   ============================================================ */
.tb-table-wrapper {
  background: #ffffff;
  border-radius: var(--tb-radius);
  border: 1px solid var(--tb-gray-200);
  box-shadow: var(--tb-shadow-sm);
  margin: 40px 0;
  overflow: hidden;
}

.tb-table-header-bar {
  padding: 20px 24px;
  border-bottom: 1px solid var(--tb-gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tb-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.tb-comparison-table th {
  background: #f8fafc;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--tb-gray-600);
  border-bottom: 1px solid var(--tb-gray-200);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tb-comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--tb-gray-200);
  color: var(--tb-gray-800);
  vertical-align: middle;
}

.tb-comparison-table tr:hover td {
  background: #fbfcfe;
}

/* Bulletproof Table Thumbnails */
.tb-comparison-table td img,
.tb-table-thumb {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1px solid #e5e7eb !important;
  display: block !important;
}

/* Button & Badge Utility Classes */
.tb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
}

.tb-meta-badge {
  background: var(--tb-gray-100);
  color: var(--tb-gray-800);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.tb-btn-primary {
  background: var(--tb-purple);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tb-btn-primary:hover {
  background: var(--tb-purple-dark);
}

.tb-btn-secondary {
  background: var(--tb-purple-light);
  color: var(--tb-purple) !important;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tb-btn-secondary:hover {
  background: #e9d5ff;
}

.tb-btn-outline {
  background: #ffffff;
  color: var(--tb-gray-800);
  border: 1px solid var(--tb-gray-300);
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tb-btn-outline:hover {
  background: var(--tb-gray-100);
}

.tb-disclaimer-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--tb-purple);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin: 32px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.tb-site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 60px 0 30px;
  font-size: 14px;
}

.tb-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}

.tb-footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.tb-footer-col ul {
  list-style: none;
}

.tb-footer-col ul li {
  margin-bottom: 10px;
}

.tb-footer-col a {
  color: #9ca3af;
  font-size: 13px;
}

.tb-footer-col a:hover {
  color: #ffffff;
}

.tb-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

/* ============================================================
   RESPONSIVE MOBILE RULES
   ============================================================ */
@media (max-width: 768px) {
  .tb-header-inner {
    height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }
  
  .tb-nav-menu {
    overflow-x: auto;
    width: 100%;
    padding-top: 8px;
    gap: 16px;
  }

  .tb-menu-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .tb-filter-bar {
    padding: 14px;
  }

  .tb-filter-search-box {
    max-width: 100%;
  }

  .tb-filter-options {
    width: 100%;
    justify-content: space-between;
  }
}

/* ============================================================
   ELEMENTOR-FIRST FULLY EDITABLE WIDGETS
   ============================================================ */
.elementor-page .site-main,
.tb-elementor-canvas .site-main { margin:0; padding:0; }
.tb-elementor-canvas .elementor { width:100%; }
.tb-e-header { background:#fff; border-bottom:1px solid #e5e7eb; position:relative; z-index:50; }
.tb-e-header-inner { min-height:74px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.tb-e-brand { display:flex; align-items:center; gap:10px; color:#111827!important; min-width:max-content; }
.tb-e-brand>span:last-child { display:flex; flex-direction:column; line-height:1.05; }
.tb-e-brand strong { font-size:18px; font-weight:900; letter-spacing:-.02em; }
.tb-e-brand small { margin-top:4px; font-size:9px; font-weight:800; color:#6b7280; letter-spacing:.08em; }
.tb-e-logo { width:auto; max-width:52px; height:44px; object-fit:contain; }
.tb-e-nav { display:flex; align-items:center; gap:20px; flex-wrap:wrap; justify-content:center; }
.tb-e-nav a { font-size:13px; font-weight:700; color:#4b5563; }
.tb-e-nav a:hover { color:var(--tb-purple); }
.tb-e-hero .tb-hero-search { position:relative; }
.tb-e-hero .tb-hero-search>span { position:absolute; left:18px; top:50%; transform:translateY(-50%); z-index:2; }
.tb-e-hero .tb-hero-search input { width:100%; border:0; border-radius:14px; padding:15px 18px 15px 50px; font:inherit; outline:none; box-shadow:0 12px 35px rgba(0,0,0,.18); }
.tb-e-hero-buttons { margin-top:20px; display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.tb-e-btn { display:inline-flex; align-items:center; gap:8px; border-radius:12px; padding:12px 22px; font-size:14px; font-weight:800; }
.tb-e-btn-gold { background:#fbbf24; color:#111827!important; }
.tb-e-btn-ghost { background:rgba(255,255,255,.13); color:#fff!important; border:1px solid rgba(255,255,255,.28); }
.tb-e-block { padding:44px 0; }
.tb-e-feature-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.tb-e-feature-card { background:#fff; border:1px solid #e5e7eb; border-radius:16px; box-shadow:var(--tb-shadow); padding:20px; display:flex; gap:14px; align-items:flex-start; }
.tb-e-feature-icon { width:44px; height:44px; flex:0 0 44px; display:grid; place-items:center; border-radius:12px; background:#f3e8ff; font-size:21px; }
.tb-e-feature-card h3 { margin:0 0 5px; font-size:15px; color:#111827; font-weight:800; }
.tb-e-feature-card p { margin:0; color:#6b7280; font-size:12px; line-height:1.55; }
.tb-e-section-head { text-align:center; max-width:760px; margin:0 auto 26px; }
.tb-e-section-head h2 { font-size:clamp(24px,4vw,32px); font-weight:900; color:#111827; margin:8px 0; }
.tb-e-section-head p { margin:0; color:#6b7280; font-size:14px; line-height:1.65; }
.tb-e-table-wrap { overflow-x:auto; background:#fff; border:1px solid #e5e7eb; border-radius:16px; box-shadow:var(--tb-shadow); }
.tb-e-table { width:100%; border-collapse:collapse; min-width:760px; }
.tb-e-table th { background:#f9fafb; color:#374151; font-size:12px; text-transform:uppercase; letter-spacing:.04em; text-align:left; padding:13px 16px; border-bottom:1px solid #e5e7eb; }
.tb-e-table td { padding:13px 16px; border-bottom:1px solid #eef0f2; font-size:13px; color:#4b5563; vertical-align:middle; }
.tb-e-table tr:last-child td { border-bottom:0; }
.tb-e-table-item { display:flex; align-items:center; gap:10px; color:#111827; }
.tb-e-table-item img { width:46px; height:46px; object-fit:cover; border-radius:10px; }
.tb-e-info { padding:54px 0; background:#f9fafb; }
.tb-e-info-purple { background:linear-gradient(135deg,#f4ebf9,#faf7fc); }
.tb-e-info-pink { background:#fff1f7; }
.tb-e-info-amber { background:#fff9e9; }
.tb-e-info-blue { background:#eff7ff; }
.tb-e-info-dark { background:linear-gradient(135deg,#1b0c20,#3d1646,#702283); }
.tb-e-info-dark .tb-e-section-head h2,.tb-e-info-dark .tb-e-section-head p { color:#fff; }
.tb-e-info-dark .tb-e-section-head p { opacity:.8; }
.tb-e-info-badge { display:inline-flex; border-radius:999px; padding:5px 12px; background:#ede7f6; color:#702283; font-size:11px; font-weight:900; letter-spacing:.08em; }
.tb-e-info-dark .tb-e-info-badge { color:#fbbf24; background:rgba(255,255,255,.12); }
.tb-e-notice { max-width:820px; margin:0 auto 22px; padding:14px 16px; border-radius:12px; border:1px solid rgba(112,34,131,.15); background:rgba(255,255,255,.75); color:#4b5563; font-size:13px; line-height:1.6; }
.tb-e-info-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.tb-e-info-card { overflow:hidden; background:#fff; border:1px solid rgba(17,24,39,.08); border-radius:17px; box-shadow:var(--tb-shadow); }
.tb-e-info-img { width:100%; height:180px; object-fit:cover; }
.tb-e-info-card-body { padding:20px; }
.tb-e-info-icon { font-size:24px; margin-bottom:8px; }
.tb-e-info-card h3 { margin:0 0 6px; color:#111827; font-size:17px; font-weight:900; }
.tb-e-info-value { margin:7px 0; color:#702283; font-size:23px; font-weight:900; }
.tb-e-info-card p { margin:0; color:#6b7280; font-size:12px; line-height:1.65; }
.tb-e-info-tag { margin-top:12px; display:inline-flex; background:#ecfdf5; color:#047857; border-radius:999px; padding:4px 9px; font-size:10px; font-weight:800; }
.tb-e-info-dark .tb-e-info-card { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.12); }
.tb-e-info-dark .tb-e-info-card h3,.tb-e-info-dark .tb-e-info-card p,.tb-e-info-dark .tb-e-info-value { color:#fff; }
.tb-e-info-dark .tb-e-info-card p { opacity:.75; }
.tb-e-faq { max-width:900px; margin:0 auto; display:grid; gap:10px; }
.tb-e-faq details { background:#fff; border:1px solid #e5e7eb; border-radius:14px; overflow:hidden; box-shadow:var(--tb-shadow-sm); }
.tb-e-faq summary { cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:15px; padding:17px 20px; color:#111827; font-size:14px; font-weight:800; }
.tb-e-faq summary::-webkit-details-marker { display:none; }
.tb-e-faq summary span { color:#702283; font-size:20px; }
.tb-e-faq-answer { padding:0 20px 18px; color:#6b7280; font-size:13px; line-height:1.7; }
.tb-e-footer p { font-size:13px; line-height:1.7; }
.tb-e-footer .tb-footer-col a { color:#d8c1e2; }
.tb-menu-notice { display:inline-block; }

@media (max-width:1024px){
  .tb-e-feature-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .tb-e-info-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .tb-e-nav{display:none;}
}
@media (max-width:767px){
  .tb-e-header-inner{min-height:66px; gap:10px;}
  .tb-e-brand strong{font-size:15px;}.tb-e-brand small{display:none}.tb-e-logo{max-width:42px;height:38px}
  .tb-header-cta{padding:8px 12px;font-size:12px}
  .tb-e-feature-grid,.tb-e-info-grid{grid-template-columns:1fr;}
  .tb-e-block,.tb-e-info{padding:34px 0;}
  .tb-e-info-img{height:210px;}
  .tb-menu-notice{display:none;}
}

/* ============================================================
   V2.1 REACT-MATCHED HEADER + REAL MULTI-PAGE NAVIGATION
   ============================================================ */
.tb-react-header-wrap{
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid #e5e7eb;
  box-shadow:0 1px 3px rgba(17,24,39,.05);
}
.admin-bar .tb-react-header-wrap{top:32px}
.tb-react-shell{width:100%;max-width:1280px;margin:0 auto;padding:0 16px}
.tb-react-topbar{
  background:linear-gradient(90deg,#4b1059 0%,#702283 100%);
  color:#fff;
  font-size:12px;
}
.tb-react-topbar-inner{min-height:36px;display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;padding-top:5px;padding-bottom:5px}
.tb-react-announcement{display:flex;align-items:center;gap:8px;font-weight:600;line-height:1.3}
.tb-react-new{background:#fbbf24;color:#111827;font-size:10px;font-weight:900;line-height:1;padding:4px 6px;border-radius:5px}
.tb-react-top-actions{display:flex;align-items:center;gap:7px;flex-wrap:wrap}
.tb-react-resource{display:inline-flex;align-items:center;gap:5px;padding:5px 11px;border-radius:999px;font-size:11px;font-weight:800;line-height:1;color:#111827!important;box-shadow:0 1px 2px rgba(0,0,0,.08)}
.tb-resource-green{background:#34d399}.tb-resource-white{background:#fff;color:#702283!important}.tb-resource-gold{background:#fbbf24}
.tb-react-main-header{background:rgba(255,255,255,.96)}
.tb-react-main-row{height:80px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.tb-react-brand{display:flex;align-items:center;gap:10px;min-width:max-content;color:#111827!important}
.tb-react-brand-icon{width:40px;height:40px;border-radius:12px;background:#702283;color:#fff;display:grid;place-items:center;font-size:20px;box-shadow:0 4px 8px rgba(112,34,131,.2);transition:transform .2s ease}
.tb-react-brand:hover .tb-react-brand-icon{transform:scale(1.05)}
.tb-react-brand-copy{display:flex;flex-direction:column;line-height:1.05}
.tb-react-brand-copy strong{font-size:19px;font-weight:900;letter-spacing:-.03em;color:#111827}
.tb-react-brand-copy strong em{font-style:normal;color:#702283}
.tb-react-brand-copy small{margin-top:5px;color:#6b7280;font-size:10.5px;font-weight:600;letter-spacing:-.01em}
.tb-react-desktop-nav{display:flex;align-items:center;gap:4px;padding:6px;border:1px solid #e5e7eb;border-radius:16px;background:rgba(243,244,246,.9);font-size:12px;font-weight:800;white-space:nowrap}
.tb-react-nav-link{appearance:none;border:0;background:transparent;color:#374151!important;display:inline-flex;align-items:center;gap:5px;padding:8px 10px;border-radius:11px;font:inherit;line-height:1;cursor:pointer;transition:.18s ease}
.tb-react-nav-link:hover{background:rgba(255,255,255,.7);color:#111827!important}
.tb-react-nav-link.is-active{background:#fff;color:#702283!important;box-shadow:0 1px 2px rgba(0,0,0,.08)}
.tb-react-nav-link span:first-child{font-size:13px;line-height:1}
.tb-react-chevron{font-size:13px;color:#6b7280;margin-left:1px}
.tb-react-nav-dropdown{position:relative}
.tb-react-dropdown-panel{position:absolute;top:calc(100% + 7px);display:none;background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:8px;box-shadow:0 18px 40px rgba(17,24,39,.14);z-index:10000}
.tb-react-nav-dropdown:hover>.tb-react-dropdown-panel,.tb-react-nav-dropdown.is-open>.tb-react-dropdown-panel{display:block}
.tb-react-menu-panel{left:0;width:260px}.tb-react-more-panel{right:0;width:232px}
.tb-react-dropdown-label{padding:7px 10px 6px;color:#9ca3af;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.tb-react-dropdown-panel a{display:flex;align-items:center;gap:9px;width:100%;padding:9px 10px;border-radius:11px;color:#374151!important;font-size:12px;font-weight:800;line-height:1.25;transition:.15s ease}
.tb-react-dropdown-panel a:hover{background:#faf5ff;color:#702283!important}
.tb-react-dropdown-panel .tb-react-subtle{font-weight:650;color:#4b5563!important;padding-top:7px;padding-bottom:7px}
.tb-react-dropdown-separator{height:1px;background:#f0f1f3;margin:5px 3px}
.tb-react-header-actions{display:flex;align-items:center;gap:9px;min-width:max-content}
.tb-react-tray-button{display:inline-flex;align-items:center;gap:8px;background:#702283;color:#fff!important;padding:10px 13px;border-radius:12px;font-size:12px;font-weight:800;box-shadow:0 4px 10px rgba(112,34,131,.22);transition:.18s ease}
.tb-react-tray-button:hover{background:#4b1059;color:#fff!important;box-shadow:0 7px 16px rgba(112,34,131,.26)}
.tb-react-tray-count{min-width:24px;padding:2px 7px;border-radius:7px;background:rgba(255,255,255,.18);text-align:center;font-size:11px;font-weight:900}
.tb-react-mobile-toggle{display:none;width:42px;height:42px;border:0;border-radius:12px;background:#f3f4f6;color:#1f2937;font-size:21px;cursor:pointer;align-items:center;justify-content:center}
.tb-hamburger-close{display:none}.tb-react-mobile-toggle[aria-expanded="true"] .tb-hamburger-open{display:none}.tb-react-mobile-toggle[aria-expanded="true"] .tb-hamburger-close{display:inline}
.tb-react-quickbar{display:none;border-top:1px solid #f3f4f6;background:rgba(249,250,251,.96);padding:8px 12px;gap:6px;overflow-x:auto;white-space:nowrap;scrollbar-width:none}
.tb-react-quickbar::-webkit-scrollbar{display:none}
.tb-react-quickbar a{flex:0 0 auto;padding:7px 10px;border:1px solid #e5e7eb;background:#fff;border-radius:9px;color:#374151!important;font-size:11px;font-weight:800;line-height:1}
.tb-react-quickbar a.is-active{background:#702283;color:#fff!important;border-color:#702283}
.tb-react-mobile-drawer{display:none;background:#fff;border-top:1px solid #e5e7eb;padding:10px 16px 22px;box-shadow:0 18px 28px rgba(17,24,39,.08);max-height:78vh;overflow:auto}
.tb-react-mobile-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;padding:4px 0 12px}
.tb-react-mobile-grid a{display:flex;align-items:center;gap:8px;padding:10px;border-radius:12px;background:#f9fafb;color:#1f2937!important;font-size:11px;font-weight:800}
.tb-react-mobile-grid a.tone-purple{background:#faf5ff;color:#581c87!important}.tb-react-mobile-grid a.tone-amber{background:#fffbeb;color:#78350f!important}.tb-react-mobile-grid a.tone-pink{background:#fdf2f8;color:#831843!important}.tb-react-mobile-grid a.tone-green{background:#ecfdf5;color:#064e3b!important}.tb-react-mobile-grid a.tone-red{background:#fef2f2;color:#7f1d1d!important}.tb-react-mobile-grid a.tone-indigo{background:#eef2ff;color:#312e81!important}.tb-react-mobile-grid a.tone-blue{background:#eff6ff;color:#1e3a8a!important}
.tb-react-mobile-cats{border-top:1px solid #f3f4f6;padding-top:12px}
.tb-react-mobile-label{margin-bottom:8px;color:#9ca3af;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.tb-react-mobile-cat-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:5px}
.tb-react-mobile-cat-grid a{display:flex;align-items:center;gap:6px;min-width:0;padding:7px 8px;border-radius:8px;color:#374151!important;font-size:10.5px;font-weight:700}
.tb-react-mobile-cat-grid a:hover{background:#faf5ff;color:#702283!important}.tb-react-mobile-cat-grid a span:last-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.tb-react-mobile-small-links{display:flex;align-items:center;flex-wrap:wrap;gap:6px;border-top:1px solid #f3f4f6;margin-top:12px;padding-top:12px;font-size:10.5px;color:#9ca3af}
.tb-react-mobile-small-links a{color:#4b5563!important;text-decoration:underline}

@media(max-width:1279px){
  .tb-react-desktop-nav{display:none}
  .tb-react-mobile-toggle{display:inline-flex}
  .tb-react-quickbar{display:flex}
  .tb-react-mobile-drawer:not([hidden]){display:block}
}
@media(max-width:782px){.admin-bar .tb-react-header-wrap{top:46px}}
@media(max-width:767px){
  .tb-react-topbar-inner{justify-content:center;text-align:center;min-height:34px}
  .tb-react-top-actions{display:none}
  .tb-react-main-row{height:66px;gap:8px}
  .tb-react-brand-icon{width:38px;height:38px;border-radius:11px;font-size:18px}
  .tb-react-brand-copy strong{font-size:15px}.tb-react-brand-copy small{display:none}
  .tb-react-tray-button{padding:9px 10px}.tb-react-tray-text{display:none}
  .tb-react-mobile-toggle{width:38px;height:38px}
}
@media(max-width:420px){
  .tb-react-announcement{font-size:10.5px;gap:5px}.tb-react-new{font-size:9px}
  .tb-react-shell{padding-left:12px;padding-right:12px}
  .tb-react-brand-copy strong{font-size:14px}
  .tb-react-tray-button{gap:5px;padding:8px 9px}
  .tb-react-mobile-grid,.tb-react-mobile-cat-grid{grid-template-columns:1fr 1fr}
}

/* ============================================================
   V3 — DIRECT REACT SOURCE MATCH (2026-08-26)
   Values below mirror Header.tsx / Hero.tsx / InfoPages.tsx.
   ============================================================ */
:root{--r-purple:#702283;--r-purple-dark:#4b1059;--r-ink:#111827;--r-gray:#6b7280;--r-line:#e5e7eb;--r-bg:#f3f4f6;--r-amber:#fbbf24;--r-emerald:#34d399}
.tb-r-shell{width:100%;max-width:1280px;margin:0 auto;padding-left:16px;padding-right:16px}.tb-r-header{position:sticky;top:0;z-index:9999;background:rgba(255,255,255,.95);backdrop-filter:blur(12px);border-bottom:1px solid var(--r-line);box-shadow:0 1px 2px rgba(0,0,0,.04)}.admin-bar .tb-r-header{top:32px}.tb-r-topbar{background:linear-gradient(90deg,#4b1059,#702283);color:#fff;padding:8px 0;font-size:12px}.tb-r-topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap}.tb-r-announcement{display:flex;align-items:center;gap:8px;font-weight:500}.tb-r-announcement>span{background:#fbbf24;color:#111827;font-size:10px;font-weight:900;padding:2px 6px;border-radius:4px}.tb-r-main-row{height:80px;display:flex;align-items:center;justify-content:space-between;gap:16px}.tb-r-brand{display:flex;align-items:center;gap:10px;color:#111827!important;min-width:max-content}.tb-r-brand-icon{width:40px;height:40px;border-radius:12px;background:#702283;color:#fff;display:grid;place-items:center;font-size:20px;box-shadow:0 4px 6px rgba(0,0,0,.12)}.tb-r-brand>span:last-child{display:flex;flex-direction:column}.tb-r-brand strong{font-size:20px;font-weight:900;line-height:1;letter-spacing:-.025em}.tb-r-brand em{font-style:normal;color:#702283}.tb-r-brand small{font-size:11px;font-weight:600;color:#6b7280;margin-top:4px}.tb-r-nav{display:none;align-items:center;gap:4px;background:rgba(243,244,246,.9);padding:6px;border:1px solid #e5e7eb;border-radius:16px;font-size:12px;font-weight:700}.tb-r-nav>a,.tb-r-dd-toggle{display:flex;align-items:center;gap:4px;border:0;background:transparent;color:#374151;padding:8px 12px;border-radius:12px;white-space:nowrap;font:inherit;cursor:pointer}.tb-r-nav>a:hover,.tb-r-dd-toggle:hover{background:rgba(255,255,255,.6);color:#111827}.tb-r-nav .is-active,.tb-r-dd-toggle.is-active{background:#fff;color:#702283;box-shadow:0 1px 2px rgba(0,0,0,.05)}.tb-r-dd{position:relative}.tb-r-dd-panel{display:none;position:absolute;right:0;top:calc(100% + 6px);width:224px;background:#fff;border:1px solid #e5e7eb;border-radius:16px;box-shadow:0 20px 25px rgba(0,0,0,.1);padding:8px;z-index:50}.tb-r-dd.open>.tb-r-dd-panel{display:block}.tb-r-dd-menu{left:0;right:auto;width:256px}.tb-r-dd-panel>b{display:block;font-size:10px;font-weight:900;color:#9ca3af;text-transform:uppercase;letter-spacing:.08em;padding:6px 12px}.tb-r-dd-panel>a{display:flex;align-items:center;gap:8px;color:#374151;padding:8px 12px;border-radius:12px;font-size:12px;font-weight:700}.tb-r-dd-panel>a:hover{background:#faf5ff;color:#702283}.tb-r-dd-panel hr{border:0;border-top:1px solid #f3f4f6;margin:4px 0}.tb-r-actions{display:flex;align-items:center;gap:8px}.tb-r-tray{display:inline-flex;align-items:center;gap:8px;background:#702283;color:#fff!important;padding:10px 14px;border-radius:12px;font-size:14px;font-weight:700;box-shadow:0 4px 6px rgba(0,0,0,.12)}.tb-r-tray:hover{background:#4b1059}.tb-r-tray b{min-width:20px;height:20px;padding:0 5px;display:grid;place-items:center;background:#fff;color:#702283;border-radius:999px;font-size:11px}.tb-r-mobile-toggle{border:1px solid #e5e7eb;background:#fff;color:#111827;border-radius:10px;width:40px;height:40px;font-size:20px;cursor:pointer}.tb-r-quick{display:block;border-top:1px solid #f3f4f6;background:#fff;padding:7px 0;overflow:auto}.tb-r-quick .tb-r-shell{display:flex;gap:6px;overflow:auto}.tb-r-quick a{flex:0 0 auto;border:1px solid #e5e7eb;background:#fff;color:#374151;padding:6px 10px;border-radius:8px;font-size:11px;font-weight:700}.tb-r-mobile{background:#fff;border-top:1px solid #e5e7eb;padding:14px 0}.tb-r-mobile-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}.tb-r-mobile-grid a{padding:12px;border-radius:12px;background:#f9fafb;color:#374151;font-size:12px;font-weight:700}.tb-r-mobile-more{display:flex;gap:12px;flex-wrap:wrap;border-top:1px solid #f3f4f6;margin-top:12px;padding-top:12px}.tb-r-mobile-more a{font-size:12px;font-weight:700;color:#6b7280}
@media(min-width:1280px){.tb-r-nav{display:flex}.tb-r-mobile-toggle,.tb-r-quick{display:none}}@media(max-width:782px){.admin-bar .tb-r-header{top:46px}}@media(max-width:639px){.tb-r-main-row{height:64px}.tb-r-brand strong{font-size:17px}.tb-r-brand small{font-size:9px}.tb-r-brand-icon{width:36px;height:36px}.tb-r-tray>span{display:none}.tb-r-announcement b{font-size:10px}}

.tb-r-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#1d0b22 0%,#3a0f44 48%,#702283 100%);color:#fff;padding:80px 0}.tb-r-hero-inner{text-align:center;position:relative;z-index:2}.tb-r-glow{position:absolute;border-radius:999px;filter:blur(64px);pointer-events:none}.tb-r-glow-a{width:384px;height:384px;right:25%;top:0;background:rgba(168,85,247,.2)}.tb-r-glow-b{width:320px;height:320px;left:25%;bottom:0;background:rgba(251,191,36,.1)}.tb-r-hero-pill{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.1);backdrop-filter:blur(12px);padding:6px 16px;border-radius:999px;border:1px solid rgba(255,255,255,.2);font-size:14px;font-weight:600;margin-bottom:24px;box-shadow:inset 0 1px 2px rgba(255,255,255,.08)}.tb-r-hero-pill i{width:8px;height:8px;background:#34d399;border-radius:50%}.tb-r-hero-pill b{color:rgba(255,255,255,.4)}.tb-r-hero-pill strong{color:#fcd34d}.tb-r-hero h1{max-width:896px;margin:0 auto 20px;font-size:60px;line-height:1.1;font-weight:900;letter-spacing:-.03em;color:#fff}.tb-r-hero h1 span{color:#fcd34d}.tb-r-hero>div>p{max-width:672px;margin:0 auto 32px;color:rgba(255,255,255,.8);font-size:18px;line-height:1.625}.tb-r-search{position:relative;max-width:672px;margin:0 auto 32px}.tb-r-search>span{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:#9ca3af;font-size:24px}.tb-r-search input{width:100%;background:#fff;color:#111827;padding:16px 112px 16px 48px;border:0;border-radius:16px;font-size:16px;font-weight:500;box-shadow:0 25px 50px rgba(0,0,0,.25);outline:0}.tb-r-search input:focus{box-shadow:0 0 0 4px rgba(252,211,77,.5),0 25px 50px rgba(0,0,0,.25)}.tb-r-search button{position:absolute;right:16px;top:50%;transform:translateY(-50%);border:0;background:#f3f4f6;color:#9ca3af;font-size:12px;font-weight:700;padding:4px 10px;border-radius:8px}.tb-r-hero-actions{display:flex;justify-content:center;gap:12px 16px;flex-wrap:wrap}.tb-r-btn{display:inline-flex;align-items:center;gap:8px;padding:14px 20px;border-radius:12px;font-size:14px;font-weight:800;box-shadow:0 10px 15px rgba(0,0,0,.12);transition:.2s}.tb-r-btn:hover{transform:translateY(-2px)}.tb-r-btn-amber{background:#fbbf24;color:#111827!important;padding-left:28px;padding-right:28px}.tb-r-btn-glass{background:rgba(255,255,255,.15);color:#fff!important;border:1px solid rgba(255,255,255,.3)}.tb-r-btn-green{background:#10b981;color:#111827!important}.tb-r-btn-deep{background:rgba(59,7,71,.8);color:#fff!important;border:1px solid rgba(192,132,252,.4)}.tb-r-metrics{max-width:896px;margin:48px auto 0;padding-top:32px;border-top:1px solid rgba(255,255,255,.1);display:grid;grid-template-columns:repeat(4,1fr);gap:16px;text-align:left}.tb-r-metrics>div{background:rgba(255,255,255,.05);backdrop-filter:blur(4px);padding:14px;border:1px solid rgba(255,255,255,.1);border-radius:12px}.tb-r-metrics strong{display:block;font-size:30px;line-height:1.1;font-weight:800;color:#fff}.tb-r-metrics>div:first-child strong{color:#fcd34d}.tb-r-metrics>div:nth-child(3) strong{color:#34d399}.tb-r-metrics span{display:block;font-size:12px;color:rgba(255,255,255,.7);font-weight:500;margin-top:4px}
@media(max-width:1023px){.tb-r-hero{padding:64px 0}.tb-r-hero h1{font-size:48px}}@media(max-width:639px){.tb-r-hero{padding:48px 0}.tb-r-hero-pill{font-size:12px;flex-wrap:wrap;justify-content:center}.tb-r-hero h1{font-size:30px}.tb-r-hero>div>p{font-size:16px}.tb-r-metrics{grid-template-columns:repeat(2,1fr)}.tb-r-metrics strong{font-size:24px}.tb-r-btn{width:100%;justify-content:center}}

.tb-r-info-page{background:#fff;min-height:70vh;padding:48px 0}.tb-r-info-gray{background:#f9fafb}.tb-r-info-shell{max-width:896px;margin:0 auto;padding:0 16px}.tb-r-info-head{text-align:center;margin-bottom:40px}.tb-r-info-head>span{display:inline-block;background:#f3e8ff;color:#581c87;font-size:12px;font-weight:900;text-transform:uppercase;padding:4px 12px;border-radius:999px;margin-bottom:12px}.tb-r-info-head h1{font-size:36px;line-height:1.15;font-weight:900;color:#111827;letter-spacing:-.025em;margin:0}.tb-r-info-head p{margin:12px auto 0;color:#4b5563;font-size:16px;line-height:1.625}.tb-r-info-head .tb-r-date{font-size:12px;color:#6b7280;margin-top:8px}.tb-r-prose{color:#374151;font-size:16px;line-height:1.75}.tb-r-prose h2{font-size:20px;color:#111827;font-weight:700;margin:24px 0 8px}.tb-r-prose h3{font-size:16px;color:#111827;font-weight:700;margin:24px 0 8px}.tb-r-prose p{margin:0 0 20px}.tb-r-mission{background:rgba(250,245,255,.6);border:1px solid #e9d5ff;border-radius:16px;padding:24px;margin-bottom:24px}.tb-r-mission h3{font-size:18px;color:#3b0764;margin:0 0 8px}.tb-r-mission p{font-size:14px;color:#581c87;margin:0}.tb-r-disclaimer{font-size:12px!important;color:#6b7280!important;background:#f9fafb;padding:16px;border-radius:12px;border:1px solid #e5e7eb}.tb-r-contact-grid{display:grid;grid-template-columns:1fr 2fr;gap:32px}.tb-r-contact-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:24px;box-shadow:0 1px 2px rgba(0,0,0,.03)}.tb-r-contact-card h3{font-size:18px;font-weight:800;color:#111827;margin:0 0 16px}.tb-r-contact-lines{display:grid;gap:16px}.tb-r-contact-lines p{margin:0;color:#4b5563;font-size:14px}.tb-r-contact-lines small{display:block;color:#6b7280;margin-left:26px}.tb-r-contact-card footer{border-top:1px solid #f3f4f6;margin-top:24px;padding-top:16px;color:#9ca3af;font-size:11px}.tb-r-contact-form label{display:block;color:#374151;font-size:12px;font-weight:700;margin-bottom:16px}.tb-r-contact-form input,.tb-r-contact-form textarea{display:block;width:100%;margin-top:4px;padding:10px 14px;background:#f9fafb;border:1px solid #d1d5db;border-radius:12px;font-size:12px;outline:0}.tb-r-contact-form input:focus,.tb-r-contact-form textarea:focus{box-shadow:0 0 0 2px #9333ea}.tb-r-form-2{display:grid;grid-template-columns:1fr 1fr;gap:16px}.tb-r-contact-form form>button,.tb-r-contact-form #tb-r-contact-reset{width:100%;border:0;background:#702283;color:#fff;padding:12px;border-radius:12px;font-size:12px;font-weight:700}.tb-r-contact-form #tb-r-contact-success{text-align:center;padding:40px 0}.tb-r-contact-form #tb-r-contact-success>div{font-size:48px;color:#059669}.tb-r-contact-form #tb-r-contact-success p{font-size:12px;color:#4b5563;max-width:380px;margin:8px auto 24px}.tb-r-contact-form #tb-r-contact-reset{width:auto;background:#f3e8ff;color:#6b21a8;padding:8px 20px}
@media(max-width:767px){.tb-r-contact-grid{grid-template-columns:1fr}.tb-r-form-2{grid-template-columns:1fr}.tb-r-info-head h1{font-size:30px}}
.tb-r-footer{background:#030712;color:#9ca3af;font-size:12px;padding:56px 0;border-top:1px solid #1f2937}.tb-r-footer a{color:#9ca3af}.tb-r-footer a:hover{color:#fff}.tb-r-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:32px;margin-bottom:48px;padding-bottom:40px;border-bottom:1px solid #1f2937}.tb-r-footer-logo{display:flex;align-items:center;gap:8px;color:#fff;font-weight:900;font-size:18px;margin-bottom:12px}.tb-r-footer-logo:first-letter{font-size:24px}.tb-r-footer-brand p{max-width:448px;line-height:1.65;margin:0 0 20px}.tb-r-footer-tags{display:flex;gap:16px;flex-wrap:wrap}.tb-r-footer-tags span{display:inline-flex;gap:6px;align-items:center;background:#111827;border:1px solid #1f2937;padding:4px 10px;border-radius:8px}.tb-r-footer h4{color:#fff;font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:.08em;margin:0 0 14px}.tb-r-footer ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}.tb-r-footer .official{color:#fbbf24}@media(max-width:639px){.tb-r-footer-grid{grid-template-columns:1fr}.tb-r-footer-bottom{flex-direction:column}}
/* React App.tsx homepage sequence / section surfaces */
.tb-react-home-block{padding:48px 0}.tb-react-home-menu{background:#f3f4f6}.tb-react-home-meal{background:#fff}.tb-react-home-compare{background:rgba(249,250,251,.5)}.tb-react-home-allergen{background:#fff;border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb}.tb-react-home-breakfast{background:rgba(255,251,235,.4);border-bottom:1px solid rgba(253,230,138,.6)}.tb-react-home-happy{background:#581c87;color:#fff;overflow:hidden}.tb-react-home-gluten{background:#fff;border-bottom:1px solid #e5e7eb}.tb-react-home-delivery{background:#f9fafb;border-bottom:1px solid #e5e7eb}.tb-react-home-history{background:#fff;border-bottom:1px solid #e5e7eb}.tb-react-home-faq{background:#fff;border-bottom:1px solid #e5e7eb}.tb-react-home-block .tb-allergen-section,.tb-react-home-block .tb-breakfast-section,.tb-react-home-block .tb-happy-hour-section,.tb-react-home-block .tb-gluten-free-section,.tb-react-home-block .tb-delivery-section,.tb-react-home-block .tb-history-section,.tb-react-home-block .tb-faq-section{margin:0!important}.tb-react-home-happy .tb-happy-hour-section>div{box-shadow:none!important}
.tb-react-route{padding:48px 0;min-height:55vh}.tb-react-route-menu{padding:16px 0 48px;background:#f3f4f6}.tb-r-faq-shell{max-width:1024px}.tb-react-route .tb-allergen-section,.tb-react-route .tb-breakfast-section,.tb-react-route .tb-happy-hour-section,.tb-react-route .tb-gluten-free-section,.tb-react-route .tb-delivery-section,.tb-react-route .tb-history-section,.tb-react-route .tb-faq-section{margin:0!important}
.tb-r-section-head{text-align:center;max-width:768px;margin:0 auto 40px}.tb-r-section-head>span{display:inline-flex;align-items:center;gap:8px;padding:6px 14px;border-radius:999px;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;margin-bottom:12px}.tb-r-section-head .amber{background:#fef3c7;color:#78350f}.tb-r-section-head h2{font-size:36px;line-height:1.15;font-weight:900;color:#111827;letter-spacing:-.025em;margin:0}.tb-r-section-head p{margin:12px auto 0;color:#4b5563;font-size:16px;line-height:1.6}.tb-r-breakfast-banner{background:linear-gradient(135deg,#702283,#4b1059,#25082e);border-radius:16px;padding:32px;color:#fff;box-shadow:0 10px 15px rgba(0,0,0,.1);margin-bottom:40px;display:grid;grid-template-columns:2fr 1fr;gap:24px;align-items:center}.tb-r-breakfast-banner>div>b{display:inline-block;background:#fbbf24;color:#111827;font-size:12px;font-weight:900;padding:4px 10px;border-radius:6px;margin-bottom:12px}.tb-r-breakfast-banner h3{font-size:30px;font-weight:800;color:#fff;margin:0}.tb-r-breakfast-banner h3 span{color:#fcd34d}.tb-r-breakfast-banner>div>p{color:#e9d5ff;font-size:14px;line-height:1.6;max-width:680px;margin:8px 0 0}.tb-r-checks{display:flex;gap:16px;flex-wrap:wrap;margin-top:16px;color:#f3e8ff;font-size:12px}.tb-r-checks span::first-letter{color:#34d399}.tb-r-breakfast-banner aside{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:12px;padding:20px;text-align:center}.tb-r-breakfast-banner aside>div{font-size:40px;color:#fbbf24}.tb-r-breakfast-banner aside small{display:block;text-transform:uppercase;color:#e9d5ff;font-weight:700}.tb-r-breakfast-banner aside strong{display:block;font-size:24px;color:#fff;margin-top:4px}.tb-r-breakfast-banner aside p{font-size:12px;color:#e9d5ff;margin:8px 0 0}.tb-r-breakfast-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:40px}.tb-r-breakfast-grid article{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,.03);display:flex;flex-direction:column;justify-content:space-between}.tb-r-breakfast-grid header{display:flex;justify-content:space-between;gap:8px;align-items:center}.tb-r-breakfast-grid header strong{font-size:18px;color:#111827}.tb-r-breakfast-grid header span{font-size:12px;font-weight:700;color:#b45309;background:#fef3c7;padding:2px 8px;border-radius:999px}.tb-r-breakfast-grid h4{font-size:16px;color:#111827;margin:8px 0 0;line-height:1.35}.tb-r-breakfast-grid em{display:inline-block;margin-top:4px;font-style:normal;text-transform:uppercase;font-size:10px;font-weight:900;color:#6b21a8;background:#f3e8ff;padding:2px 8px;border-radius:2px}.tb-r-breakfast-grid p{font-size:12px;color:#4b5563;line-height:1.55;margin:10px 0 0}.tb-r-breakfast-grid footer{display:flex;justify-content:space-between;border-top:1px solid #f3f4f6;margin-top:16px;padding-top:12px;color:#6b21a8;font-size:12px;font-weight:700}.tb-r-breakfast-grid footer b{color:#f59e0b}.tb-r-breakfast-tip{background:#fff;border:1px solid #fde68a;border-radius:12px;padding:24px;display:flex;align-items:center;justify-content:space-between;gap:16px}.tb-r-breakfast-tip h4{font-size:16px;color:#111827;margin:0}.tb-r-breakfast-tip p{font-size:12px;color:#4b5563;margin:4px 0 0}.tb-r-breakfast-tip a{background:#702283;color:#fff!important;padding:10px 20px;border-radius:12px;font-size:14px;font-weight:700;white-space:nowrap}@media(max-width:1023px){.tb-r-breakfast-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:767px){.tb-r-breakfast-banner{grid-template-columns:1fr}.tb-r-breakfast-tip{flex-direction:column;align-items:flex-start}.tb-r-section-head h2{font-size:30px}}@media(max-width:639px){.tb-r-breakfast-grid{grid-template-columns:1fr}}
.tb-r-happy{position:relative;color:#fff}.tb-r-section-head-dark h2{color:#fff}.tb-r-section-head-dark p{color:#e9d5ff}.tb-r-section-head .amber-solid{background:#fbbf24;color:#111827}.tb-r-happy-glow{position:absolute;width:384px;height:384px;border-radius:50%;filter:blur(64px);pointer-events:none;opacity:.3}.tb-r-happy-glow.a{left:-80px;top:-80px;background:#9333ea}.tb-r-happy-glow.b{right:-80px;bottom:-80px;background:#f59e0b;opacity:.2}.tb-r-happy-grid{position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:40px}.tb-r-happy-grid article{background:rgba(255,255,255,.1);backdrop-filter:blur(12px);border:1px solid rgba(192,132,252,.3);border-radius:16px;padding:24px;display:flex;flex-direction:column}.tb-r-happy-grid header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}.tb-r-happy-grid header b{background:#fbbf24;color:#111827;font-size:12px;font-weight:900;padding:4px 10px;border-radius:6px}.tb-r-happy-grid header b.green{background:#34d399}.tb-r-happy-grid header span{color:#fcd34d;font-size:20px}.tb-r-happy-grid h3{font-size:20px;font-weight:900;color:#fff;margin:0}.tb-r-happy-grid p{font-size:12px;line-height:1.6;color:#e9d5ff;margin:8px 0 0}.tb-r-happy-grid .save{font-size:12px;color:#d8b4fe;margin-top:16px}.tb-r-happy-grid .save del{margin-right:8px}.tb-r-happy-grid .save strong{color:#fcd34d}.tb-r-happy-grid .save .green-text{color:#6ee7b7}.tb-r-happy-grid footer{margin-top:auto;padding-top:16px;border-top:1px solid rgba(168,85,247,.3);color:#e9d5ff;font-size:12px}.tb-r-happy-rules{position:relative;background:rgba(59,7,100,.8);border:1px solid rgba(168,85,247,.4);border-radius:16px;padding:24px;display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.tb-r-happy-rules h4{font-size:14px;color:#fff;margin:0 0 4px}.tb-r-happy-rules p{font-size:12px;line-height:1.6;color:#e9d5ff;margin:0}@media(max-width:767px){.tb-r-happy-grid,.tb-r-happy-rules{grid-template-columns:1fr}}
.tb-r-section-head .purple{background:#f3e8ff;color:#6b21a8}.tb-r-alert-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:40px}.tb-r-alert-grid article{border-radius:12px;padding:20px}.tb-r-alert-grid b{display:block;font-size:14px;margin-bottom:4px}.tb-r-alert-grid p{font-size:12px;line-height:1.55;margin:0}.tb-r-alert-grid .amber{background:#fffbeb;border:1px solid #fde68a;color:#78350f}.tb-r-alert-grid .green{background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46}.tb-r-alert-grid .purple{background:#faf5ff;border:1px solid #e9d5ff;color:#581c87}.tb-r-allergen-controls{background:#f9fafb;border:1px solid #e5e7eb;border-radius:16px;padding:24px;margin-bottom:32px;display:flex;align-items:center;justify-content:space-between;gap:16px}.tb-r-allergen-controls input{width:320px;max-width:100%;padding:10px 14px;border:1px solid #d1d5db;border-radius:12px;font-size:14px}.tb-r-allergen-controls>div{display:flex;gap:8px;flex-wrap:wrap}.tb-r-allergen-controls button{border:1px solid #d1d5db;background:#fff;color:#374151;padding:6px 14px;border-radius:8px;font-size:12px;font-weight:700}.tb-r-allergen-controls button.active{background:#702283;color:#fff;border-color:#702283}.tb-r-table-wrap{overflow-x:auto;border:1px solid #e5e7eb;border-radius:12px;box-shadow:0 1px 2px rgba(0,0,0,.03);margin-bottom:32px}.tb-r-table{width:100%;border-collapse:collapse;background:#fff;text-align:left;font-size:13px}.tb-r-table thead{background:rgba(243,244,246,.8);text-transform:uppercase;color:#374151;font-size:11px;letter-spacing:.05em}.tb-r-table th,.tb-r-table td{padding:14px 16px;border-bottom:1px solid #e5e7eb;vertical-align:top}.tb-r-table tbody tr:hover{background:rgba(250,245,255,.4)}.tb-r-table td:last-child{max-width:320px;color:#4b5563;font-size:12px;line-height:1.5}.tb-r-table .tag{display:inline-block;padding:2px 8px;border-radius:4px;font-size:11px;margin:1px;font-weight:700}.tb-r-table .tag.gray{background:#f3f4f6;color:#374151}.tb-r-table .tag.red{background:#fef2f2;color:#b91c1c;border:1px solid #fecaca}.tb-r-table .tag.green{background:#ecfdf5;color:#065f46;border:1px solid #a7f3d0}.tb-r-table .none{color:#047857;font-weight:700}.tb-r-allergen-note{background:#f9fafb;border:1px solid #e5e7eb;border-radius:12px;padding:20px;display:flex;gap:10px;color:#4b5563;font-size:12px;line-height:1.6}@media(max-width:767px){.tb-r-alert-grid{grid-template-columns:1fr}.tb-r-allergen-controls{align-items:stretch;flex-direction:column}.tb-r-allergen-controls input{width:100%}}
.tb-r-section-head .red{background:#fee2e2;color:#991b1b}.tb-r-celiac{background:#fef2f2;border:2px solid #fca5a5;border-radius:16px;padding:28px;margin-bottom:40px;display:flex;gap:20px;color:#991b1b}.tb-r-celiac>b{font-size:32px}.tb-r-celiac h3{font-size:18px;font-weight:900;margin:0}.tb-r-celiac p{font-size:14px;line-height:1.6;margin:6px 0 0}.tb-r-gluten-cols{display:grid;grid-template-columns:1fr 1fr;gap:32px;margin-bottom:40px}.tb-r-gluten-cols article{border-radius:16px;padding:24px}.tb-r-gluten-cols .good{background:rgba(236,253,245,.6);border:1px solid #a7f3d0}.tb-r-gluten-cols .bad{background:rgba(254,242,242,.6);border:1px solid #fecaca}.tb-r-gluten-cols h4{font-size:18px;margin:0 0 8px}.tb-r-gluten-cols .good h4{color:#064e3b}.tb-r-gluten-cols .bad h4{color:#7f1d1d}.tb-r-gluten-cols>article>p{font-size:12px;line-height:1.55;margin:0 0 16px}.tb-r-gluten-cols ul{list-style:none;margin:0;padding:0;display:grid;gap:12px}.tb-r-gluten-cols li{font-size:14px;line-height:1.55;color:#1f2937;padding-left:18px;position:relative}.tb-r-gluten-cols li:before{content:'›';position:absolute;left:0;font-weight:900}.tb-r-gluten-cols .good li:before{color:#059669}.tb-r-gluten-cols .bad li:before{color:#dc2626}.tb-r-gluten-tips{background:#f9fafb;border:1px solid #e5e7eb;border-radius:12px;padding:24px;color:#374151;font-size:14px;line-height:1.6}.tb-r-gluten-tips h4{font-size:16px;color:#111827;margin:0 0 8px}.tb-r-gluten-tips ol{margin:0;padding-left:20px}.tb-r-history-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-bottom:40px}.tb-r-history-grid article{background:#f9fafb;border:1px solid #e5e7eb;border-radius:16px;padding:24px}.tb-r-history-grid article:hover{border-color:#d8b4fe}.tb-r-history-grid>article>strong{font-size:30px;color:#702283;font-weight:900}.tb-r-history-grid h3{font-size:16px;color:#111827;margin:8px 0}.tb-r-history-grid p{font-size:12px;line-height:1.55;color:#4b5563;margin:0}.tb-r-facts{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.tb-r-facts article{display:flex;gap:16px;padding:20px;background:rgba(250,245,255,.5);border:1px solid #f3e8ff;border-radius:12px;font-size:28px}.tb-r-facts h4{font-size:14px;color:#111827;margin:0}.tb-r-facts p{font-size:12px;color:#4b5563;line-height:1.55;margin:4px 0 0}@media(max-width:1023px){.tb-r-history-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:767px){.tb-r-gluten-cols,.tb-r-facts{grid-template-columns:1fr}}@media(max-width:639px){.tb-r-history-grid{grid-template-columns:1fr}}
.tb-r-faq{max-width:1024px;margin:0 auto}.tb-r-faq-filters{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin-bottom:32px}.tb-r-faq-filters button{border:0;background:#f3f4f6;color:#374151;padding:8px 16px;border-radius:12px;font-size:12px;font-weight:700}.tb-r-faq-filters button.active{background:#702283;color:#fff;box-shadow:0 1px 2px rgba(0,0,0,.05)}.tb-r-faq-list{display:grid;gap:12px}.tb-r-faq-list details{border:1px solid #e5e7eb;border-radius:16px;overflow:hidden;background:#fff}.tb-r-faq-list details[open]{border-color:#d8b4fe;background:rgba(250,245,255,.3);box-shadow:0 1px 2px rgba(0,0,0,.03)}.tb-r-faq-list summary{list-style:none;padding:16px 24px;display:flex;justify-content:space-between;gap:16px;align-items:center;font-size:16px;font-weight:700;color:#111827;cursor:pointer}.tb-r-faq-list summary::-webkit-details-marker{display:none}.tb-r-faq-list summary span{color:#6b21a8;font-size:20px;transition:.2s}.tb-r-faq-list details[open] summary span{transform:rotate(180deg)}.tb-r-faq-list details>div{padding:4px 24px 20px;border-top:1px solid #f3e8ff;color:#4b5563;font-size:14px;line-height:1.65}.tb-r-faq-bottom{margin-top:40px;background:#f9fafb;border:1px solid #e5e7eb;border-radius:16px;padding:24px;text-align:center;color:#f59e0b;font-size:24px}.tb-r-faq-bottom h4{font-size:16px;color:#111827;margin:8px 0 0}.tb-r-faq-bottom p{font-size:12px;color:#4b5563;max-width:544px;margin:4px auto 0}
.tb-r-section-head .blue{background:#dbeafe;color:#1e3a8a}.tb-r-delivery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:40px}.tb-r-delivery-grid>article{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,.03);display:flex;flex-direction:column;justify-content:space-between;position:relative}.tb-r-delivery-grid>article.best{border:2px solid #9333ea;box-shadow:0 4px 6px rgba(0,0,0,.08)}.tb-r-delivery-grid>article.best>em{position:absolute;left:50%;top:-12px;transform:translateX(-50%);background:#702283;color:#fff;font-size:10px;font-style:normal;font-weight:900;text-transform:uppercase;padding:4px 12px;border-radius:999px;white-space:nowrap}.tb-r-delivery-grid h3{font-size:18px;color:#111827;margin:4px 0 10px;font-weight:800}.tb-r-delivery-grid p{font-size:12px;color:#4b5563;line-height:1.55;margin:0 0 16px}.tb-r-delivery-grid dl{margin:0;display:grid;gap:8px}.tb-r-delivery-grid dl>div{display:flex;justify-content:space-between;gap:8px;border-bottom:1px solid #f3f4f6;padding-bottom:6px;font-size:12px}.tb-r-delivery-grid dt{color:#6b7280}.tb-r-delivery-grid dd{margin:0;text-align:right;font-weight:600;color:#374151}.tb-r-delivery-grid dd.good{color:#059669}.tb-r-delivery-grid dd.warn{color:#d97706}.tb-r-delivery-grid dd.purple-text{color:#6b21a8}.tb-r-delivery-grid>article>a{margin-top:20px;display:block;text-align:center;background:#702283;color:#fff!important;padding:10px;border-radius:12px;font-size:12px;font-weight:700}.tb-r-delivery-grid>article>span{margin-top:20px;display:block;text-align:center;background:#f3f4f6;color:#9ca3af;padding:10px;border-radius:12px;font-size:12px;font-weight:700}.tb-r-delivery-save{background:linear-gradient(90deg,#581c87,#312e81);color:#fff;border-radius:16px;padding:32px;display:flex;gap:16px;align-items:flex-start}.tb-r-delivery-save .money{font-size:32px;color:#fbbf24;font-weight:900}.tb-r-delivery-save h3{font-size:18px;color:#fff;margin:0}.tb-r-delivery-save>div:last-child>div{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:16px}.tb-r-delivery-save article{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);padding:14px;border-radius:12px;color:#e9d5ff;font-size:12px;line-height:1.55}.tb-r-delivery-save article strong{display:block;color:#fcd34d;margin-bottom:4px}@media(max-width:1023px){.tb-r-delivery-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:767px){.tb-r-delivery-save>div:last-child>div{grid-template-columns:1fr}}@media(max-width:639px){.tb-r-delivery-grid{grid-template-columns:1fr}}
.tb-r-compare-head{max-width:768px;margin-bottom:32px}.tb-r-compare-head>span{display:inline-flex;background:#f3e8ff;color:#702283;padding:4px 10px;border-radius:6px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px}.tb-r-compare-head h2{font-size:30px;font-weight:900;color:#111827;letter-spacing:-.025em;margin:0}.tb-r-compare-head p{font-size:14px;color:#4b5563;margin:4px 0 0}.tb-r-compare-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:32px}.tb-r-compare-metrics article{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,.03)}.tb-r-compare-metrics small{display:block;font-size:12px;font-weight:700;text-transform:uppercase;color:#9ca3af}.tb-r-compare-metrics strong{display:block;font-size:30px;font-weight:900;margin-top:4px}.tb-r-compare-metrics strong.red{color:#dc2626}.tb-r-compare-metrics strong.amber{color:#d97706}.tb-r-compare-metrics strong.purple{color:#702283}.tb-r-compare-metrics p{font-size:12px;color:#6b7280;margin:4px 0 0}.tb-r-compare-controls{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:24px}.tb-r-compare-controls>div{display:flex;gap:8px;flex-wrap:wrap}.tb-r-compare-controls select,.tb-r-compare-controls button{background:#fff;border:1px solid #e5e7eb;color:#374151;font-size:12px;border-radius:12px;padding:8px 12px;font-weight:600}.tb-r-compare-controls button.active{background:#fef3c7;color:#78350f;border-color:#fcd34d}.tb-r-compare-controls>span{font-size:12px;color:#6b7280}.tb-r-compare-table .num{text-align:right}.tb-r-compare-table .purple-text{color:#702283;font-weight:900}.tb-r-compare-table .red-text{color:#dc2626;font-weight:700}.tb-r-compare-table .green-text{color:#059669;font-weight:700}.tb-r-itemcell{display:flex;align-items:center;gap:12px;min-width:220px}.tb-r-itemcell img{width:40px;height:40px;border-radius:8px;object-fit:cover;background:#f3f4f6;border:1px solid #e5e7eb}.tb-r-itemcell small{display:block;font-size:10px;color:#059669}.tb-r-compare-table .status{font-size:11px;color:#6b7280}.tb-r-compare-table .status.new{display:inline-flex;background:#f3e8ff;color:#6b21a8;padding:2px 8px;border-radius:6px;font-weight:700}.tb-r-compare-table .status.old{display:inline-flex;background:#fef2f2;color:#b91c1c;padding:2px 8px;border-radius:6px;font-weight:700}@media(max-width:767px){.tb-r-compare-metrics{grid-template-columns:1fr}.tb-r-compare-head h2{font-size:24px}}

/* React interaction toast */
.tb-toast,.tb-tray-toast{background:#121316!important;color:#fff}

/* V10: native Elementor saved-template global header */
.tb-v10-topbar-text{margin:0!important;padding:9px 16px!important;color:#fff!important;text-align:center!important;font-size:14px!important;font-weight:800!important;line-height:1.35!important}
.tb-v10-brand-name,.tb-v10-brand-tagline,.tb-v10-logo{margin:0!important}
.tb-v10-brand-name .elementor-heading-title{color:#111827!important;font-weight:900!important;line-height:1.1!important}
.tb-v10-brand-name .elementor-heading-title span{color:#702283!important}
.tb-v10-brand-tagline .elementor-widget-container{padding:0!important;color:#6b7280!important;font-size:13px!important}
.tb-v10-brand-tagline p{margin:0!important}
.tb-v10-logo .elementor-widget-container{padding:0!important}
.tb-v10-logo img{width:54px!important;height:54px!important;object-fit:cover!important;border-radius:16px!important}
.tb-v10-brand-row .elementor-container{display:flex!important;align-items:center!important;gap:12px!important;max-width:1200px!important;margin:0 auto!important;padding:12px 18px!important}
.tb-v10-brand-row .elementor-widget-image{width:auto!important;flex:0 0 auto!important}
.tb-v10-brand-row .tb-v10-brand-name{width:auto!important;flex:0 0 auto!important}
.tb-v10-brand-row .tb-v10-brand-tagline{width:auto!important;flex:1 1 auto!important}
.tb-v10-nav-wrap{display:flex;align-items:center;justify-content:center;gap:12px;max-width:1200px;margin:0 auto;padding:10px 18px}
.tb-v10-nav-wrap .tb-v10-nav{flex:1 1 auto}
.tb-v10-nav-wrap .tb-r-actions{flex:0 0 auto}
.tb-v10-quick-wrap{width:100%}
.tb-v10-quick-wrap .tb-r-quick{border-top:0!important}
.tb-v10-quick-wrap .tb-r-mobile{width:100%}
@media (max-width:1100px){.tb-v10-brand-row .elementor-container{padding:10px 14px!important}.tb-v10-nav-wrap{padding:8px 14px}.tb-v10-nav-wrap .tb-r-nav{display:none}.tb-v10-nav-wrap{justify-content:flex-end}.tb-v10-quick-wrap .tb-r-quick{display:flex!important}}
@media (min-width:1101px){.tb-v10-nav-wrap .tb-r-mobile-toggle{display:none!important}}

/* V12: user-provided site logo, responsive and uncropped */
.tb-r-brand-icon{overflow:hidden;padding:0;background:#fff!important;width:44px;height:44px;border-radius:12px;display:grid;place-items:center;border:1px solid #e5e7eb;}
.tb-r-brand-logo{display:block!important;width:100%!important;height:100%!important;object-fit:contain!important;border-radius:0!important;}
.tb-v10-logo img{width:54px!important;height:54px!important;max-width:54px!important;object-fit:contain!important;border-radius:0!important;display:block!important;}
@media (max-width: 1100px){
  .tb-v10-logo img{width:50px!important;height:50px!important;max-width:50px!important;}
  .tb-r-brand-icon{width:42px;height:42px;}
}
@media (max-width: 767px){
  .tb-v10-logo img{width:42px!important;height:42px!important;max-width:42px!important;}
  .tb-r-brand-icon{width:38px;height:38px;border-radius:10px;}
}
@media (max-width: 479px){
  .tb-v10-logo img{width:38px!important;height:38px!important;max-width:38px!important;}
  .tb-r-brand-icon{width:36px;height:36px;border-radius:9px;}
}

/* Elementor global-header editor preview: show only the header template. */
body.tb-global-header-preview-body { margin: 0 !important; padding: 0 !important; background: #fff !important; }
body.tb-global-header-preview-body > #wpadminbar { display: none !important; }
#tb-elementor-global-header-preview { width: 100%; min-height: 1px; }
#tb-elementor-global-header-preview > .elementor { width: 100%; }


/* V14: fix Elementor global header alignment and top announcement background */
.tb-global-header-preview body{margin:0;background:#fff;}
.tb-global-header-preview #tb-elementor-global-header-preview{width:100%;}
.tb-v10-topbar-row{background:linear-gradient(90deg,#4b1059,#702283)!important;}
.tb-v10-topbar-row .elementor-container{max-width:100%!important;}
.tb-v10-topbar-row .elementor-widget-wrap{padding:0!important;}
.tb-v10-topbar-text .elementor-heading-title{margin:0!important;color:#fff!important;text-align:center!important;font-size:14px!important;font-weight:800!important;line-height:1.35!important;}
.tb-v10-brand-row{background:#fff!important;border-bottom:1px solid #e5e7eb!important;}
.tb-v10-brand-row .elementor-container,.tb-v10-nav-row .elementor-container,.tb-v10-quick-row .elementor-container{max-width:1280px!important;margin:0 auto!important;padding-left:16px!important;padding-right:16px!important;}
.tb-v10-brand-row .elementor-widget-wrap{display:flex!important;align-items:center!important;flex-direction:row!important;flex-wrap:wrap!important;gap:12px!important;padding-top:18px!important;padding-bottom:18px!important;}
.tb-v10-brand-row .elementor-widget{width:auto!important;margin-bottom:0!important;}
.tb-v10-brand-row .tb-v10-logo{flex:0 0 auto!important;}
.tb-v10-brand-row .tb-v10-brand-name{flex:0 1 auto!important;}
.tb-v10-brand-row .tb-v10-brand-tagline{flex:1 1 260px!important;}
.tb-v10-brand-name .elementor-heading-title{margin:0!important;font-size:22px!important;line-height:1.05!important;letter-spacing:-.02em!important;}
.tb-v10-brand-tagline .elementor-text-editor,.tb-v10-brand-tagline .elementor-widget-container{margin:0!important;}
.tb-v10-brand-tagline p{margin:0!important;font-size:13px!important;line-height:1.4!important;color:#6b7280!important;}
.tb-v10-nav-row{background:#fff!important;border-bottom:1px solid #e5e7eb!important;}
.tb-v10-nav-row .elementor-widget-wrap,.tb-v10-quick-row .elementor-widget-wrap{padding-top:10px!important;padding-bottom:10px!important;}
.tb-v10-quick-row{background:#fff!important;border-bottom:1px solid #f3f4f6!important;}
@media (max-width:1100px){
  .tb-v10-brand-row .elementor-widget-wrap{padding-top:14px!important;padding-bottom:14px!important;gap:10px!important;}
}
@media (max-width:767px){
  .tb-v10-topbar-text .elementor-heading-title{font-size:12px!important;}
  .tb-v10-brand-row .elementor-widget-wrap{align-items:flex-start!important;}
  .tb-v10-brand-name .elementor-heading-title{font-size:18px!important;}
  .tb-v10-brand-tagline{flex-basis:100%!important;}
  .tb-v10-brand-tagline p{font-size:11px!important;}
}


/* V16: keep existing nav design, only fix logo/title/tagline alignment + announcement bar background */
.tb-v10-topbar-row,
.tb-v10-topbar-row.elementor-section,
.tb-v10-topbar-row > .elementor-container,
.tb-v10-topbar-row .elementor-widget-wrap{background:linear-gradient(90deg,#4b1059,#702283)!important;}
.tb-v10-topbar-row .elementor-widget-wrap{padding-top:0!important;padding-bottom:0!important;}
.tb-v10-topbar-text,
.tb-v10-topbar-text .elementor-widget-container,
.tb-v10-topbar-text .elementor-heading-title{background:transparent!important;color:#fff!important;}
.tb-v10-topbar-text .elementor-heading-title{margin:0!important;padding:9px 16px!important;font-size:13px!important;font-weight:800!important;line-height:1.35!important;text-align:left!important;}

.tb-v10-brand-row{background:#fff!important;border-bottom:1px solid #e5e7eb!important;}
.tb-v10-brand-row .elementor-container{max-width:1280px!important;margin:0 auto!important;padding-left:24px!important;padding-right:24px!important;}
.tb-v10-brand-row .elementor-widget-wrap{display:grid!important;grid-template-columns:auto minmax(260px,1fr)!important;grid-template-areas:'logo title' 'logo tagline'!important;align-items:center!important;column-gap:14px!important;row-gap:4px!important;padding-top:18px!important;padding-bottom:18px!important;}
.tb-v10-brand-row .elementor-widget{width:auto!important;margin:0!important;}
.tb-v10-brand-row .tb-v10-logo{grid-area:logo!important;align-self:center!important;}
.tb-v10-brand-row .tb-v10-brand-name{grid-area:title!important;align-self:end!important;}
.tb-v10-brand-row .tb-v10-brand-tagline{grid-area:tagline!important;align-self:start!important;}
.tb-v10-brand-row .tb-v10-logo .elementor-widget-container,
.tb-v10-brand-row .tb-v10-brand-name .elementor-widget-container,
.tb-v10-brand-row .tb-v10-brand-tagline .elementor-widget-container{margin:0!important;padding:0!important;}
.tb-v10-logo img{width:56px!important;height:56px!important;max-width:56px!important;object-fit:contain!important;border-radius:0!important;display:block!important;}
.tb-v10-brand-name .elementor-heading-title{margin:0!important;font-size:26px!important;font-weight:900!important;line-height:1.05!important;letter-spacing:-.02em!important;color:#111827!important;}
.tb-v10-brand-name .elementor-heading-title span{color:#702283!important;}
.tb-v10-brand-tagline .elementor-text-editor,
.tb-v10-brand-tagline .elementor-widget-container{color:#6b7280!important;}
.tb-v10-brand-tagline p{margin:0!important;font-size:12px!important;font-weight:600!important;line-height:1.35!important;color:#6b7280!important;}

@media (max-width:767px){
  .tb-v10-brand-row .elementor-container{padding-left:16px!important;padding-right:16px!important;}
  .tb-v10-brand-row .elementor-widget-wrap{grid-template-columns:auto 1fr!important;column-gap:12px!important;row-gap:4px!important;padding-top:14px!important;padding-bottom:14px!important;}
  .tb-v10-logo img{width:44px!important;height:44px!important;max-width:44px!important;}
  .tb-v10-brand-name .elementor-heading-title{font-size:19px!important;}
  .tb-v10-brand-tagline p{font-size:11px!important;}
  .tb-v10-topbar-text .elementor-heading-title{padding:8px 12px!important;font-size:12px!important;}
}


/* V17: force exact live header design and bypass broken Elementor header render */
.tb-r-topbar{background:linear-gradient(90deg,#4b1059,#702283)!important;color:#fff!important;}
.tb-r-topbar .tb-r-announcement b{color:#fff!important;opacity:1!important;}
.tb-r-main{background:#fff!important;}
.tb-r-main-row{min-height:86px!important;align-items:center!important;}
.tb-r-brand{display:flex!important;align-items:center!important;gap:14px!important;}
.tb-r-brand>span:last-child{display:flex!important;flex-direction:column!important;justify-content:center!important;}
.tb-r-brand strong{display:block!important;margin:0!important;font-size:28px!important;line-height:1.02!important;font-weight:900!important;}
.tb-r-brand small{display:block!important;margin-top:4px!important;font-size:12px!important;line-height:1.25!important;color:#6b7280!important;}
.tb-r-brand-icon{width:56px!important;height:56px!important;border-radius:14px!important;overflow:hidden!important;background:#fff!important;border:1px solid #e5e7eb!important;}
.tb-r-brand-logo{width:100%!important;height:100%!important;object-fit:contain!important;display:block!important;}
@media (max-width:767px){
  .tb-r-main-row{min-height:72px!important;}
  .tb-r-brand{gap:12px!important;}
  .tb-r-brand strong{font-size:19px!important;}
  .tb-r-brand small{font-size:11px!important;}
  .tb-r-brand-icon{width:44px!important;height:44px!important;border-radius:12px!important;}
}


/* V18: place desktop Meal Tray in nav row like requested */
.tb-r-navdesk{display:none;background:#fff;border-top:1px solid #f3f4f6;border-bottom:1px solid #f3f4f6;}
.tb-r-navdesk-row{display:flex;align-items:center;gap:20px;padding:10px 0;}
.tb-r-navdesk-row .tb-r-nav{flex:1 1 auto;display:none;}
.tb-r-actions-main{display:flex;}
.tb-r-actions-desktop{display:none;flex:0 0 auto;}
@media(min-width:1280px){
  .tb-r-main-row{justify-content:flex-start!important;}
  .tb-r-actions-main{display:none!important;}
  .tb-r-navdesk{display:block!important;}
  .tb-r-navdesk-row .tb-r-nav{display:flex!important;}
  .tb-r-actions-desktop{display:flex!important;align-items:center!important;}
  .tb-r-quick{display:none!important;}
}
@media(max-width:1279px){
  .tb-r-navdesk{display:none!important;}
  .tb-r-actions-main{display:flex!important;}
}


/* V19: Elementor editable global footer + header social icons */
.tb-e-global-footer{width:100%;}
.tb-e-footer-brand-widget .elementor-widget-container,.tb-e-footer-cols-widget .elementor-widget-container,.tb-e-footer-disc-widget .elementor-widget-container,.tb-e-footer-bottom-widget .elementor-widget-container{padding:0!important;margin:0!important;}
.tb-e-footer-brand{max-width:1280px;margin:0 auto;padding:38px 24px 24px;text-align:left;}
.tb-e-footer-logo{display:flex;align-items:center;gap:10px;color:#fff;font-size:18px;font-weight:900;}
.tb-e-footer-logo img{width:46px;height:46px;object-fit:contain;border-radius:0;}
.tb-e-footer-brand p{max-width:720px;color:#c9c4ce;font-size:13px;line-height:1.7;margin:14px 0 12px;}
.tb-e-footer-tags{display:flex;gap:8px;flex-wrap:wrap;}
.tb-e-footer-tags span{font-size:11px;font-weight:700;background:rgba(255,255,255,.08);color:#f2edf5;border:1px solid rgba(255,255,255,.1);padding:6px 9px;border-radius:999px;}
.tb-e-footer-social{display:flex;align-items:center;gap:8px;margin-top:16px;}
.tb-e-footer-social b{color:#fff;font-size:12px;margin-right:4px;}
.tb-e-footer-social a{width:34px;height:34px;border-radius:9px;background:#702283;color:#fff;text-decoration:none;display:grid;place-items:center;font-weight:900;font-size:17px;}
.tb-e-footer-social a:hover{background:#8d31a5;color:#fff;}
.tb-e-footer-cols-widget{background:#130c17!important;}
.tb-e-footer-cols{max-width:1280px;margin:0 auto;padding:8px 24px 28px;display:grid;grid-template-columns:repeat(3,1fr);gap:42px;}
.tb-e-footer-cols h4{color:#fff;font-size:14px;margin:0 0 10px;font-weight:900;}
.tb-e-footer-cols ul{list-style:none;margin:0;padding:0;}
.tb-e-footer-cols li{margin:0 0 7px;}
.tb-e-footer-cols a{color:#c9c4ce;text-decoration:none;font-size:12px;font-weight:600;}
.tb-e-footer-cols a:hover{color:#fff;}
.tb-e-footer-cols a.official{color:#dba4ef;}
.tb-e-footer-disc-widget{background:#0f0912!important;}
.tb-e-footer-disc-widget .tb-r-footer-disclaimer{max-width:1280px;margin:0 auto;padding:16px 24px;color:#aba5af;background:transparent!important;border:0!important;font-size:11px;line-height:1.65;}
.tb-e-footer-bottom-widget{background:#0f0912!important;border-top:1px solid rgba(255,255,255,.08);}
.tb-e-footer-bottom-widget .tb-r-footer-bottom{max-width:1280px;margin:0 auto;padding:14px 24px;color:#aaa2ae;}
.tb-e-footer-bottom-widget .tb-r-footer-bottom a{color:#cfc5d4;}
.tb-global-footer-preview body{margin:0;background:#130c17;}
.tb-global-footer-preview #tb-elementor-global-footer-preview{width:100%;}
.tb-r-actions-main{align-items:center;}
.tb-header-social{display:flex;align-items:center;gap:5px;margin-right:3px;}
.tb-header-social a{width:30px;height:30px;border-radius:8px;background:#f3f4f6;color:#4b1059!important;display:grid;place-items:center;text-decoration:none;font-weight:900;font-size:15px;border:1px solid #e5e7eb;}
.tb-header-social a:hover{background:#f8f1fb;color:#702283!important;}
@media(max-width:767px){
  .tb-e-footer-brand,.tb-e-footer-cols,.tb-e-footer-bottom-widget .tb-r-footer-bottom,.tb-e-footer-disc-widget .tb-r-footer-disclaimer{padding-left:16px!important;padding-right:16px!important;}
  .tb-e-footer-cols{grid-template-columns:1fr;gap:24px;}
  .tb-e-footer-logo{font-size:16px;}
  .tb-e-footer-logo img{width:40px;height:40px;}
  .tb-header-social{display:none;}
}


/* V20: one footer source only; preserve the existing footer design */
.tb-e-global-footer{width:100%!important;margin:0!important;padding:0!important;clear:both!important;}
.tb-e-global-footer .elementor-section,.tb-e-global-footer .elementor-container,.tb-e-global-footer .elementor-widget-wrap{max-width:none;}


/* V22: isolated footer editor canvas */
.tb-global-footer-preview body{margin:0!important;background:#fff!important;}
.tb-global-footer-preview #tb-elementor-global-footer-preview{width:100%;margin:0;padding:0;}
.tb-global-footer-preview .elementor-editor-active .site-content,
.tb-global-footer-preview .site-header,
.tb-global-footer-preview .site-footer{display:none!important;}


/* V23: footer is a normal Elementor page; keep the live footer single and editor clean */
body.page-template-default{ }
.tb-e-global-footer{width:100%;}


/* V24: native Elementor footer controls, preserve existing single-footer design */
.tb-e-global-footer{background:#0f0913!important;color:#fff!important;}
.tb-e-footer-brand-section,.tb-e-footer-columns-section,.tb-e-footer-disc-section,.tb-e-footer-bottom-section{background:transparent!important;}
.tb-e-footer-brand-section > .elementor-container,.tb-e-footer-columns-section > .elementor-container,.tb-e-footer-disc-section > .elementor-container,.tb-e-footer-bottom-section > .elementor-container{max-width:1280px!important;margin:0 auto!important;padding-left:32px!important;padding-right:32px!important;}
.tb-e-footer-brand-section .elementor-widget-wrap{padding-top:28px!important;padding-bottom:22px!important;}
.tb-e-footer-logo-widget img{width:62px!important;height:62px!important;object-fit:contain!important;display:block!important;}
.tb-e-footer-brand-section .tb-e-footer-heading .elementor-heading-title{color:#fff!important;margin:0 0 10px!important;}
.tb-e-footer-text .elementor-widget-container{color:#d9d2df!important;font-size:15px!important;line-height:1.55!important;}
.tb-e-footer-text p{margin:0 0 12px!important;}
.tb-e-footer-columns-section{border-top:1px solid rgba(255,255,255,.05)!important;}
.tb-e-footer-columns-section .elementor-column{padding:24px 24px 28px!important;}
.tb-e-footer-columns-section .elementor-column:first-child{padding-left:0!important;}
.tb-e-footer-columns-section .elementor-column:last-child{padding-right:0!important;}
.tb-e-footer-heading .elementor-heading-title{color:#fff!important;font-size:18px!important;font-weight:800!important;margin-bottom:12px!important;}
.tb-e-footer-link-btn{width:100%!important;margin:0 0 4px!important;}
.tb-e-footer-link-btn .elementor-button{background:transparent!important;color:#ddd5e4!important;border:0!important;box-shadow:none!important;padding:5px 0!important;font-size:14px!important;font-weight:600!important;justify-content:flex-start!important;text-align:left!important;}
.tb-e-footer-link-btn .elementor-button:hover{color:#e9a0ff!important;background:transparent!important;}
.tb-e-footer-social-widget .elementor-social-icons-wrapper{display:flex!important;gap:8px!important;}
.tb-e-footer-social-widget .elementor-social-icon{width:42px!important;height:42px!important;background:#702283!important;color:#fff!important;}
.tb-e-footer-disc-section{border-top:1px solid rgba(255,255,255,.06)!important;border-bottom:1px solid rgba(255,255,255,.06)!important;}
.tb-e-footer-disc-section .elementor-widget-wrap{padding-top:20px!important;padding-bottom:20px!important;}
.tb-e-footer-disc-section .tb-e-footer-text{color:#bdb4c5!important;font-size:12px!important;}
.tb-e-footer-bottom-section .elementor-widget-wrap{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:20px!important;padding-top:16px!important;padding-bottom:20px!important;}
.tb-e-footer-bottom-section .tb-e-footer-text{font-size:12px!important;color:#9d93a5!important;}
.tb-e-footer-bottom-section .tb-e-footer-text a{color:#c8a4d4!important;text-decoration:none!important;}
@media(max-width:767px){
 .tb-e-footer-brand-section > .elementor-container,.tb-e-footer-columns-section > .elementor-container,.tb-e-footer-disc-section > .elementor-container,.tb-e-footer-bottom-section > .elementor-container{padding-left:18px!important;padding-right:18px!important;}
 .tb-e-footer-columns-section .elementor-container{display:block!important;}
 .tb-e-footer-columns-section .elementor-column{width:100%!important;padding:18px 0!important;}
 .tb-e-footer-columns-section .elementor-column + .elementor-column{border-top:1px solid rgba(255,255,255,.05)!important;}
 .tb-e-footer-bottom-section .elementor-widget-wrap{display:block!important;}
}


/* V25: exact React footer layout with editable Elementor widgets */
.tb-v25-global-footer{background:#020711!important;color:#94a3b8!important;width:100%;}
.tb-v25-footer-columns{background:#020711!important;border:0!important;}
.tb-v25-footer-columns > .elementor-container{max-width:1280px!important;margin:0 auto!important;padding:58px 50px 50px!important;display:grid!important;grid-template-columns:2fr 1fr 1fr 1fr!important;gap:44px!important;}
.tb-v25-footer-columns .elementor-column{width:auto!important;padding:0!important;}
.tb-v25-footer-brandcol .elementor-widget-wrap{padding:0!important;}
.tb-v25-footer-logo img{width:48px!important;height:48px!important;object-fit:contain!important;display:block!important;}
.tb-v25-footer-heading .elementor-heading-title{color:#f8fafc!important;font-size:18px!important;font-weight:900!important;line-height:1.15!important;text-transform:uppercase!important;letter-spacing:.03em!important;margin:0 0 16px!important;}
.tb-v25-footer-brandcol .tb-v25-footer-heading .elementor-heading-title{text-transform:none!important;letter-spacing:-.02em!important;font-size:30px!important;margin:0 0 20px!important;}
.tb-v25-footer-text .elementor-widget-container{color:#94a3b8!important;font-size:15px!important;line-height:1.65!important;}
.tb-v25-footer-text p{margin:0 0 20px!important;}
.tb-v25-tags{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px;}
.tb-v25-tags span{display:inline-flex;align-items:center;padding:10px 14px;border-radius:12px;background:#111827;border:1px solid #1f2937;color:#94a3b8;font-size:13px;font-weight:600;}
.tb-v25-footer-link{width:100%!important;margin:0 0 3px!important;}
.tb-v25-footer-link .elementor-button{display:block!important;background:transparent!important;border:0!important;box-shadow:none!important;padding:6px 0!important;color:#94a3b8!important;font-size:14px!important;font-weight:600!important;text-align:left!important;line-height:1.35!important;}
.tb-v25-footer-link .elementor-button:hover{background:transparent!important;color:#f8fafc!important;}
.tb-v25-social-label{color:#f8fafc!important;font-size:13px!important;font-weight:800!important;margin:14px 0 10px!important;}
.tb-v25-footer-social .elementor-social-icons-wrapper{display:flex!important;gap:10px!important;margin:0 0 14px!important;}
.tb-v25-footer-social .elementor-social-icon{width:38px!important;height:38px!important;background:#702283!important;color:#fff!important;border-radius:10px!important;}
.tb-v25-footer-social .elementor-social-icon:hover{background:#8d31a5!important;}
.tb-v25-footer-social .elementor-social-icon svg{width:16px!important;height:16px!important;}
.tb-v25-footer-disc{background:#020711!important;border:0!important;}
.tb-v25-footer-disc > .elementor-container{max-width:1280px!important;margin:0 auto!important;padding:0 50px 30px!important;}
.tb-v25-disclaimer-card{background:#111827!important;border:1px solid #243041!important;border-radius:20px!important;padding:28px 32px!important;color:#718096!important;font-size:14px!important;line-height:1.75!important;}
.tb-v25-disclaimer-card strong{color:#8b98ac!important;}
.tb-v25-footer-bottom{background:#020711!important;border-top:1px solid #1f2937!important;}
.tb-v25-footer-bottom > .elementor-container{max-width:1280px!important;margin:0 auto!important;padding:26px 50px 34px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:24px!important;}
.tb-v25-footer-bottom .elementor-widget-wrap{padding:0!important;display:flex!important;align-items:center!important;justify-content:space-between!important;}
.tb-v25-footer-bottom .tb-v25-footer-text{width:auto!important;}
.tb-v25-footer-bottom .tb-v25-footer-text p{margin:0!important;color:#718096!important;font-size:13px!important;}
.tb-v25-bottom-links{display:flex!important;gap:26px!important;align-items:center!important;}
.tb-v25-bottom-links a{color:#718096!important;text-decoration:none!important;font-size:13px!important;}
.tb-v25-bottom-links a:hover{color:#f8fafc!important;}
@media(max-width:1024px){
 .tb-v25-footer-columns > .elementor-container{grid-template-columns:2fr 1fr 1fr!important;padding:46px 28px!important;}
 .tb-v25-footer-brandcol{grid-column:1/-1!important;}
 .tb-v25-footer-disc > .elementor-container,.tb-v25-footer-bottom > .elementor-container{padding-left:28px!important;padding-right:28px!important;}
}
@media(max-width:767px){
 .tb-v25-footer-columns > .elementor-container{display:block!important;padding:38px 18px!important;}
 .tb-v25-footer-columns .elementor-column{margin-bottom:28px!important;}
 .tb-v25-footer-brandcol .tb-v25-footer-heading .elementor-heading-title{font-size:24px!important;}
 .tb-v25-footer-heading .elementor-heading-title{font-size:16px!important;}
 .tb-v25-footer-disc > .elementor-container{padding:0 18px 20px!important;}
 .tb-v25-disclaimer-card{padding:22px 18px!important;border-radius:16px!important;font-size:13px!important;}
 .tb-v25-footer-bottom > .elementor-container{padding:22px 18px 28px!important;display:block!important;}
 .tb-v25-footer-bottom .elementor-widget-wrap{display:block!important;}
 .tb-v25-bottom-links{margin-top:14px!important;gap:18px!important;flex-wrap:wrap!important;}
}


/* V26: exact React footer spacing; social icons only, no label */
.tb-v25-global-footer{background:#020711!important;color:#94a3b8!important;}
.tb-v25-footer-columns > .elementor-container{max-width:1280px!important;padding:58px 52px 52px!important;grid-template-columns:2.05fr 1fr 1fr 1fr!important;gap:44px!important;align-items:start!important;}
.tb-v25-footer-brandcol .elementor-widget-wrap{padding:0!important;}
.tb-v25-footer-brandcol .tb-v25-footer-logo{display:inline-block!important;vertical-align:middle!important;margin-right:14px!important;margin-bottom:14px!important;}
.tb-v25-footer-brandcol .tb-v25-footer-heading{display:inline-block!important;vertical-align:middle!important;width:auto!important;margin:0 0 14px!important;}
.tb-v25-footer-brandcol .tb-v25-footer-heading .elementor-heading-title{font-size:30px!important;line-height:1.05!important;margin:0!important;}
.tb-v25-footer-logo img{width:50px!important;height:50px!important;object-fit:contain!important;display:block!important;}
.tb-v25-footer-text{margin:0!important;}
.tb-v25-footer-text .elementor-widget-container{color:#94a3b8!important;font-size:15px!important;line-height:1.65!important;}
.tb-v25-footer-link{margin:0 0 2px!important;}
.tb-v25-footer-link .elementor-button{padding:7px 0!important;font-size:14px!important;line-height:1.35!important;}
.tb-v25-footer-social{margin:12px 0 10px!important;}
.tb-v25-footer-social .elementor-social-icons-wrapper{display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:10px!important;margin:0!important;}
.tb-v25-footer-social .elementor-social-icon{width:40px!important;height:40px!important;background:#702283!important;color:#fff!important;border-radius:10px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;margin:0!important;}
.tb-v25-footer-social .elementor-social-icon:hover{background:#8d31a5!important;}
.tb-v25-footer-social .elementor-social-icon svg{width:17px!important;height:17px!important;}
.tb-v25-footer-disc > .elementor-container{max-width:1280px!important;padding:0 52px 30px!important;}
.tb-v25-disclaimer-card{padding:28px 32px!important;border-radius:20px!important;}
.tb-v25-footer-bottom > .elementor-container{max-width:1280px!important;padding:26px 52px 34px!important;}
.tb-v25-social-label{display:none!important;}
@media(max-width:1100px){
 .tb-v25-footer-columns > .elementor-container{grid-template-columns:2fr 1fr 1fr!important;padding:46px 28px 44px!important;gap:34px!important;}
 .tb-v25-footer-brandcol{grid-column:1/-1!important;}
 .tb-v25-footer-disc > .elementor-container,.tb-v25-footer-bottom > .elementor-container{padding-left:28px!important;padding-right:28px!important;}
}
@media(max-width:767px){
 .tb-v25-footer-columns > .elementor-container{display:block!important;padding:36px 18px!important;}
 .tb-v25-footer-columns .elementor-column{margin-bottom:28px!important;}
 .tb-v25-footer-brandcol .tb-v25-footer-heading .elementor-heading-title{font-size:24px!important;}
 .tb-v25-footer-logo img{width:44px!important;height:44px!important;}
 .tb-v25-footer-logo{margin-right:10px!important;}
 .tb-v25-footer-text .elementor-widget-container{font-size:14px!important;}
 .tb-v25-footer-disc > .elementor-container{padding:0 18px 20px!important;}
 .tb-v25-disclaimer-card{padding:22px 18px!important;border-radius:16px!important;font-size:13px!important;}
 .tb-v25-footer-bottom > .elementor-container{padding:22px 18px 28px!important;}
}


/* V27: exact React-style live fallback footer and social placement */
.tb-r-footer{background:#020711!important;color:#94a3b8!important;}
.tb-r-footer-grid{display:grid!important;grid-template-columns:2fr 1fr 1fr 1fr!important;gap:44px!important;align-items:start!important;padding:58px 50px 52px!important;max-width:1280px!important;margin:0 auto!important;}
.tb-r-footer-grid>div{min-width:0!important;}
.tb-r-footer-brand .tb-r-footer-logo{display:flex!important;align-items:center!important;gap:14px!important;margin:0 0 20px!important;}
.tb-r-footer-brand .tb-r-footer-logo img{width:50px!important;height:50px!important;object-fit:contain!important;display:block!important;flex:none!important;}
.tb-r-footer-brand .tb-r-footer-logo span{font-size:30px!important;font-weight:900!important;line-height:1.05!important;color:#f8fafc!important;}
.tb-r-footer-grid h4{margin:0 0 16px!important;color:#f8fafc!important;font-size:18px!important;font-weight:900!important;line-height:1.15!important;text-transform:uppercase!important;letter-spacing:.03em!important;}
.tb-r-footer-brand p{margin:0 0 24px!important;font-size:15px!important;line-height:1.65!important;color:#94a3b8!important;}
.tb-r-footer-tags{display:flex!important;gap:14px!important;flex-wrap:wrap!important;}
.tb-r-footer-tags span{display:inline-flex!important;align-items:center!important;padding:10px 16px!important;border:1px solid #253246!important;border-radius:12px!important;background:#111a2a!important;color:#94a3b8!important;font-size:14px!important;}
.tb-r-footer-grid ul{list-style:none!important;margin:0!important;padding:0!important;}
.tb-r-footer-grid li{margin:0!important;padding:0!important;}
.tb-r-footer-grid li a{display:block!important;padding:7px 0!important;color:#94a3b8!important;text-decoration:none!important;font-size:14px!important;font-weight:600!important;line-height:1.35!important;}
.tb-r-footer-grid li a:hover{color:#f8fafc!important;}
.tb-r-footer-company>.official{display:inline-block!important;margin-top:12px!important;color:#fbbf24!important;text-decoration:none!important;font-size:15px!important;font-weight:700!important;}
.tb-r-footer-social{display:flex!important;align-items:center!important;gap:10px!important;margin:14px 0 2px!important;}
.tb-r-footer-social a{width:40px!important;height:40px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border-radius:10px!important;background:#702283!important;color:#fff!important;text-decoration:none!important;box-shadow:none!important;}
.tb-r-footer-social a:hover{background:#8d31a5!important;}
.tb-r-footer-social span{font-size:18px!important;font-weight:800!important;line-height:1!important;color:#fff!important;}
.tb-r-footer-disclaimer{max-width:1280px!important;margin:0 auto!important;padding:0 50px 30px!important;}
.tb-r-footer-disclaimer{font-size:13px!important;line-height:1.65!important;color:#94a3b8!important;}
.tb-r-footer-disclaimer strong{color:#a5b0c0!important;}
.tb-r-footer-bottom{max-width:1280px!important;margin:0 auto!important;padding:26px 50px 34px!important;border-top:1px solid #1f2937!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:24px!important;color:#718096!important;font-size:13px!important;}
.tb-r-footer-bottom>div{display:flex!important;gap:24px!important;}
.tb-r-footer-bottom a{color:#718096!important;text-decoration:none!important;}
.tb-r-footer-bottom a:hover{color:#f8fafc!important;}
@media(max-width:900px){
 .tb-r-footer-grid{grid-template-columns:1fr 1fr!important;padding:42px 28px!important;gap:34px!important;}
 .tb-r-footer-brand{grid-column:1/-1!important;}
 .tb-r-footer-disclaimer{padding:0 28px 24px!important;}
 .tb-r-footer-bottom{padding:22px 28px 28px!important;}
}
@media(max-width:639px){
 .tb-r-footer-grid{display:block!important;padding:36px 18px!important;}
 .tb-r-footer-grid>div{margin-bottom:30px!important;}
 .tb-r-footer-brand .tb-r-footer-logo span{font-size:24px!important;}
 .tb-r-footer-grid h4{font-size:16px!important;}
 .tb-r-footer-brand p{font-size:14px!important;}
 .tb-r-footer-disclaimer{padding:0 18px 20px!important;}
 .tb-r-footer-bottom{display:block!important;padding:22px 18px 28px!important;}
 .tb-r-footer-bottom>div{gap:16px!important;margin-top:14px!important;flex-wrap:wrap!important;}
}


/* 4.0 stable global header/footer editor pages */
.tb-editor-blank{margin:0!important;background:#fff!important;}
.tb-editor-blank-content{width:100%!important;margin:0!important;padding:0!important;}
.tb-editor-blank-content > .elementor{margin:0!important;}
.tb-e-global-footer{width:100%!important;}


/* V28: force the single Elementor footer into the exact React dark wrapper */
.tb-v28-global-footer{display:block!important;width:100%!important;margin:0!important;padding:0!important;background:#020711!important;color:#94a3b8!important;overflow:hidden!important;}
.tb-v28-global-footer > .elementor{background:#020711!important;margin:0!important;padding:0!important;}
.tb-v28-global-footer .elementor-section,.tb-v28-global-footer .elementor-container,.tb-v28-global-footer .elementor-widget-wrap{box-sizing:border-box;}
.tb-v28-global-footer .tb-v25-footer-columns{background:#020711!important;width:100%!important;}
.tb-v28-global-footer .tb-v25-footer-columns > .elementor-container{background:#020711!important;}
.tb-v28-global-footer .tb-v25-footer-disc{background:#020711!important;}
.tb-v28-global-footer .tb-v25-footer-bottom{background:#020711!important;}
.tb-v28-global-footer .tb-v25-footer-brandcol .elementor-widget-wrap{display:block!important;}
.tb-v28-global-footer .tb-v25-footer-logo,.tb-v28-global-footer .tb-v25-footer-heading{vertical-align:middle!important;}
.tb-v28-global-footer .tb-v25-footer-logo{display:inline-flex!important;align-items:center!important;width:auto!important;margin-right:14px!important;margin-bottom:20px!important;}
.tb-v28-global-footer .tb-v25-footer-heading{display:inline-block!important;width:auto!important;margin-bottom:20px!important;}
.tb-v28-global-footer .tb-v25-footer-logo img{width:50px!important;height:50px!important;object-fit:contain!important;}
.tb-v28-global-footer .tb-v25-footer-brandcol .tb-v25-footer-heading .elementor-heading-title{font-size:30px!important;line-height:1.05!important;color:#f8fafc!important;}
.tb-v28-global-footer .tb-v25-footer-brandcol .tb-v25-footer-text{display:block!important;width:100%!important;}
.tb-v28-global-footer .tb-v25-footer-social{margin-top:12px!important;}
@media(max-width:1024px){
 .tb-v28-global-footer .tb-v25-footer-columns > .elementor-container{grid-template-columns:2fr 1fr 1fr!important;}
}
@media(max-width:767px){
 .tb-v28-global-footer .tb-v25-footer-columns > .elementor-container{display:block!important;}
 .tb-v28-global-footer .tb-v25-footer-logo img{width:44px!important;height:44px!important;}
 .tb-v28-global-footer .tb-v25-footer-brandcol .tb-v25-footer-heading .elementor-heading-title{font-size:24px!important;}
}


/* V29: exact React footer layout refinement - preserve one existing footer */
.tb-v28-global-footer,
.tb-v28-global-footer > .elementor,
.tb-v28-global-footer .elementor-section,
.tb-v28-global-footer .elementor-container,
.tb-v28-global-footer .elementor-widget-wrap{
  background:#020711!important;
  color:#94a3b8!important;
}
.tb-v28-global-footer{width:100%!important;margin:0!important;padding:0!important;overflow:hidden!important;}
.tb-v28-global-footer > .elementor{width:100%!important;margin:0!important;}

/* Main React footer columns */
.tb-v28-global-footer .tb-v25-footer-columns > .elementor-container{
  width:calc(100% - 100px)!important;
  max-width:1940px!important;
  margin:0 auto!important;
  padding:58px 0 52px!important;
  display:grid!important;
  grid-template-columns:minmax(0,2fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;
  column-gap:54px!important;
  align-items:start!important;
}
.tb-v28-global-footer .tb-v25-footer-columns > .elementor-container > .elementor-column{
  width:auto!important;
  min-width:0!important;
  margin:0!important;
  padding:0!important;
}

/* Brand block: logo + title on one line, description underneath */
.tb-v28-global-footer .tb-v25-footer-brandcol .elementor-widget-wrap{
  display:block!important;
  padding:0!important;
}
.tb-v28-global-footer .tb-v25-footer-logo{
  display:inline-flex!important;
  vertical-align:middle!important;
  width:auto!important;
  margin:0 14px 20px 0!important;
  padding:0!important;
}
.tb-v28-global-footer .tb-v25-footer-logo img{
  display:block!important;
  width:50px!important;
  height:50px!important;
  max-width:50px!important;
  object-fit:contain!important;
  margin:0!important;
}
.tb-v28-global-footer .tb-v25-footer-heading{
  display:inline-block!important;
  vertical-align:middle!important;
  width:auto!important;
  margin:0 0 20px!important;
  padding:0!important;
}
.tb-v28-global-footer .tb-v25-footer-brandcol .tb-v25-footer-heading .elementor-heading-title{
  margin:0!important;
  padding:0!important;
  color:#f8fafc!important;
  font-size:30px!important;
  line-height:1.05!important;
  font-weight:900!important;
  letter-spacing:-.02em!important;
  text-transform:none!important;
}
.tb-v28-global-footer .tb-v25-footer-text{
  display:block!important;
  width:100%!important;
  clear:both!important;
}
.tb-v28-global-footer .tb-v25-footer-text .elementor-widget-container{
  margin:0!important;
  padding:0!important;
}
.tb-v28-global-footer .tb-v25-footer-text p{
  margin:0 0 24px!important;
  color:#94a3b8!important;
  font-size:15px!important;
  line-height:1.65!important;
}

/* Column headings and links */
.tb-v28-global-footer .tb-v25-footer-columns .tb-v25-footer-heading .elementor-heading-title{
  margin:0 0 18px!important;
  color:#f8fafc!important;
  font-size:18px!important;
  line-height:1.15!important;
  font-weight:900!important;
  letter-spacing:.03em!important;
  text-transform:uppercase!important;
}
.tb-v28-global-footer .tb-v25-footer-link{
  margin:0!important;
  padding:0!important;
}
.tb-v28-global-footer .tb-v25-footer-link .elementor-widget-container{
  margin:0!important;
  padding:0!important;
}
.tb-v28-global-footer .tb-v25-footer-link .elementor-button{
  display:block!important;
  width:auto!important;
  margin:0!important;
  padding:7px 0!important;
  background:transparent!important;
  color:#94a3b8!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  text-align:left!important;
  font-size:15px!important;
  font-weight:600!important;
  line-height:1.35!important;
  text-transform:none!important;
}
.tb-v28-global-footer .tb-v25-footer-link .elementor-button:hover{color:#f8fafc!important;background:transparent!important;}

/* Verification badges */
.tb-v28-global-footer .tb-v25-tags{
  display:flex!important;
  align-items:center!important;
  gap:26px!important;
  flex-wrap:wrap!important;
  margin-top:6px!important;
}
.tb-v28-global-footer .tb-v25-tags span{
  display:inline-flex!important;
  align-items:center!important;
  min-height:44px!important;
  padding:0 16px!important;
  border:1px solid #253246!important;
  border-radius:12px!important;
  background:#111a2a!important;
  color:#94a3b8!important;
  font-size:14px!important;
}

/* Social icons directly above official site link, no label */
.tb-v28-global-footer .tb-v25-footer-social{
  display:block!important;
  margin:16px 0 8px!important;
  padding:0!important;
}
.tb-v28-global-footer .tb-v25-footer-social .elementor-social-icons-wrapper{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:12px!important;
  margin:0!important;
}
.tb-v28-global-footer .tb-v25-footer-social .elementor-social-icon{
  width:40px!important;
  height:40px!important;
  margin:0!important;
  background:#702283!important;
  color:#fff!important;
  border-radius:10px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.tb-v28-global-footer .tb-v25-footer-social .elementor-social-icon:hover{background:#8d31a5!important;}
.tb-v28-global-footer .tb-v25-footer-social .elementor-social-icon svg{width:17px!important;height:17px!important;}
.tb-v28-global-footer .tb-v25-footer-company .tb-v25-footer-link:last-of-type .elementor-button{color:#fbbf24!important;}

/* Disclaimer and bottom rows */
.tb-v28-global-footer .tb-v25-footer-disc > .elementor-container{
  width:calc(100% - 100px)!important;
  max-width:1940px!important;
  margin:0 auto!important;
  padding:0 0 30px!important;
}
.tb-v28-global-footer .tb-v25-disclaimer-card{
  width:100%!important;
  box-sizing:border-box!important;
  margin:0!important;
  padding:22px 32px!important;
  border:1px solid #253246!important;
  border-radius:20px!important;
  background:#111a2a!important;
  color:#94a3b8!important;
  font-size:13px!important;
  line-height:1.65!important;
}
.tb-v28-global-footer .tb-v25-disclaimer-card strong{color:#a5b0c0!important;}
.tb-v28-global-footer .tb-v25-footer-bottom > .elementor-container{
  width:calc(100% - 100px)!important;
  max-width:1940px!important;
  margin:0 auto!important;
  padding:26px 0 34px!important;
  border-top:1px solid #1f2937!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:24px!important;
}
.tb-v28-global-footer .tb-v25-footer-bottom .elementor-widget-container{margin:0!important;padding:0!important;}
.tb-v28-global-footer .tb-v25-footer-bottom p{margin:0!important;color:#718096!important;font-size:15px!important;line-height:1.4!important;}
.tb-v28-global-footer .tb-v25-bottom-links{display:flex!important;align-items:center!important;gap:24px!important;}
.tb-v28-global-footer .tb-v25-bottom-links a{color:#718096!important;text-decoration:none!important;}
.tb-v28-global-footer .tb-v25-bottom-links a:hover{color:#f8fafc!important;}

@media(max-width:1100px){
  .tb-v28-global-footer .tb-v25-footer-columns > .elementor-container,
  .tb-v28-global-footer .tb-v25-footer-disc > .elementor-container,
  .tb-v28-global-footer .tb-v25-footer-bottom > .elementor-container{width:calc(100% - 56px)!important;}
  .tb-v28-global-footer .tb-v25-footer-columns > .elementor-container{grid-template-columns:1fr 1fr!important;gap:34px!important;}
  .tb-v28-global-footer .tb-v25-footer-brandcol{grid-column:1/-1!important;}
}
@media(max-width:700px){
  .tb-v28-global-footer .tb-v25-footer-columns > .elementor-container,
  .tb-v28-global-footer .tb-v25-footer-disc > .elementor-container,
  .tb-v28-global-footer .tb-v25-footer-bottom > .elementor-container{width:calc(100% - 36px)!important;}
  .tb-v28-global-footer .tb-v25-footer-columns > .elementor-container{display:block!important;padding:36px 0 30px!important;}
  .tb-v28-global-footer .tb-v25-footer-columns > .elementor-container > .elementor-column{margin:0 0 28px!important;}
  .tb-v28-global-footer .tb-v25-footer-brandcol .tb-v25-footer-heading .elementor-heading-title{font-size:24px!important;}
  .tb-v28-global-footer .tb-v25-footer-logo{margin-right:10px!important;}
  .tb-v28-global-footer .tb-v25-footer-logo img{width:44px!important;height:44px!important;max-width:44px!important;}
  .tb-v28-global-footer .tb-v25-footer-disc > .elementor-container{padding-bottom:20px!important;}
  .tb-v28-global-footer .tb-v25-disclaimer-card{padding:18px!important;border-radius:16px!important;}
  .tb-v28-global-footer .tb-v25-footer-bottom > .elementor-container{display:block!important;padding:22px 0 28px!important;}
  .tb-v28-global-footer .tb-v25-bottom-links{gap:16px!important;margin-top:14px!important;flex-wrap:wrap!important;}
}

/* V30: exact React footer geometry from Footer.tsx; preserve existing content/social placement */
.tb-r-footer{background:#030712!important;color:#9ca3af!important;font-size:12px!important;padding:56px 0!important;border-top:1px solid #1f2937!important;width:100%!important;box-sizing:border-box!important;}
.tb-r-footer>.tb-r-shell{width:100%!important;max-width:1280px!important;margin:0 auto!important;padding-left:16px!important;padding-right:16px!important;box-sizing:border-box!important;}
.tb-r-footer-grid{display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:32px!important;align-items:start!important;margin:0 0 48px!important;padding:0 0 40px!important;border-bottom:1px solid #1f2937!important;box-sizing:border-box!important;}
.tb-r-footer-grid>.tb-r-footer-brand{grid-column:span 2!important;min-width:0!important;}
.tb-r-footer-grid>div{min-width:0!important;}
.tb-r-footer-brand .tb-r-footer-logo{display:flex!important;align-items:center!important;gap:12px!important;margin:0 0 12px!important;color:#fff!important;font-weight:900!important;font-size:18px!important;line-height:1.2!important;}
.tb-r-footer-brand .tb-r-footer-logo img{width:48px!important;height:48px!important;object-fit:contain!important;display:block!important;flex:0 0 auto!important;}
.tb-r-footer-brand .tb-r-footer-logo span{font-size:18px!important;font-weight:900!important;line-height:1.2!important;color:#fff!important;}
.tb-r-footer-brand p{max-width:448px!important;margin:0 0 20px!important;line-height:1.65!important;color:#9ca3af!important;font-size:12px!important;}
.tb-r-footer-tags{display:flex!important;gap:16px!important;flex-wrap:wrap!important;align-items:center!important;}
.tb-r-footer-tags span{display:inline-flex!important;gap:6px!important;align-items:center!important;background:#111827!important;border:1px solid #1f2937!important;padding:4px 10px!important;border-radius:8px!important;color:#9ca3af!important;font-size:12px!important;line-height:1.3!important;}
.tb-r-footer-grid h4{color:#fff!important;font-weight:700!important;font-size:12px!important;line-height:1.2!important;text-transform:uppercase!important;letter-spacing:.08em!important;margin:0 0 14px!important;}
.tb-r-footer-grid ul{list-style:none!important;margin:0!important;padding:0!important;display:grid!important;gap:8px!important;}
.tb-r-footer-grid li{margin:0!important;padding:0!important;}
.tb-r-footer-grid li a{display:block!important;padding:0!important;color:#9ca3af!important;text-decoration:none!important;font-size:12px!important;font-weight:400!important;line-height:1.5!important;}
.tb-r-footer-grid li a:hover{color:#fff!important;}
.tb-r-footer-company .tb-r-footer-social{display:flex!important;align-items:center!important;gap:10px!important;margin:14px 0 2px!important;}
.tb-r-footer-company .tb-r-footer-social a{width:40px!important;height:40px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border-radius:10px!important;background:#702283!important;color:#fff!important;text-decoration:none!important;box-shadow:none!important;}
.tb-r-footer-company .tb-r-footer-social a:hover{background:#8d31a5!important;}
.tb-r-footer-company .tb-r-footer-social span{font-size:18px!important;font-weight:800!important;line-height:1!important;color:#fff!important;}
.tb-r-footer-company>.official{display:inline-flex!important;align-items:center!important;gap:4px!important;margin-top:12px!important;color:#fbbf24!important;text-decoration:none!important;font-size:12px!important;font-weight:700!important;}
.tb-r-footer-disclaimer{max-width:1280px!important;margin:0 auto 32px!important;padding:0 16px!important;box-sizing:border-box!important;}
.tb-r-footer-disclaimer{font-size:11px!important;line-height:1.65!important;color:#6b7280!important;}
.tb-r-footer-disclaimer strong{color:#9ca3af!important;}
.tb-r-footer-bottom{max-width:1280px!important;margin:0 auto!important;padding:0 16px!important;border-top:0!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:16px!important;color:#6b7280!important;font-size:12px!important;box-sizing:border-box!important;}
.tb-r-footer-bottom>div{display:flex!important;gap:16px!important;}
.tb-r-footer-bottom a{color:#6b7280!important;text-decoration:none!important;}
.tb-r-footer-bottom a:hover{color:#fff!important;}
@media (max-width:1023px){
  .tb-r-footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:32px!important;}
  .tb-r-footer-grid>.tb-r-footer-brand{grid-column:1/-1!important;}
}
@media (max-width:639px){
  .tb-r-footer{padding:40px 0!important;}
  .tb-r-footer>.tb-r-shell{padding:0 16px!important;}
  .tb-r-footer-grid{display:block!important;margin-bottom:32px!important;padding-bottom:28px!important;}
  .tb-r-footer-grid>div{margin-bottom:30px!important;}
  .tb-r-footer-grid>.tb-r-footer-brand{margin-bottom:34px!important;}
  .tb-r-footer-brand .tb-r-footer-logo span{font-size:18px!important;}
  .tb-r-footer-disclaimer{padding:0!important;margin-bottom:24px!important;}
  .tb-r-footer-bottom{padding:0!important;display:block!important;}
  .tb-r-footer-bottom>div{gap:16px!important;margin-top:14px!important;flex-wrap:wrap!important;}
}


/* V31 FINAL: exact React footer alignment without changing content */
.tb-v31-live-footer{background:#030712!important;color:#9ca3af!important;width:100%!important;box-sizing:border-box!important;}
.tb-v31-live-footer .tb-r-shell{max-width:1280px!important;margin:0 auto!important;padding-left:16px!important;padding-right:16px!important;box-sizing:border-box!important;}
.tb-v31-live-footer .tb-r-footer-grid{display:grid!important;grid-template-columns:2fr 1fr 1fr 1fr!important;gap:32px!important;align-items:start!important;margin:0 0 48px!important;padding:56px 0 40px!important;border-bottom:1px solid #1f2937!important;}
.tb-v31-live-footer .tb-r-footer-brand{min-width:0!important;}
.tb-v31-live-footer .tb-r-footer-brand .tb-r-footer-logo{display:flex!important;align-items:center!important;gap:12px!important;width:auto!important;margin:0 0 16px!important;padding:0!important;line-height:1.1!important;}
.tb-v31-live-footer .tb-r-footer-brand .tb-r-footer-logo img{display:block!important;flex:0 0 48px!important;width:48px!important;height:48px!important;max-width:48px!important;object-fit:contain!important;margin:0!important;}
.tb-v31-live-footer .tb-r-footer-brand .tb-r-footer-logo span{display:block!important;margin:0!important;color:#fff!important;font-size:18px!important;font-weight:900!important;line-height:1.2!important;}
.tb-v31-live-footer .tb-r-footer-brand p{max-width:448px!important;margin:0 0 20px!important;color:#9ca3af!important;font-size:12px!important;line-height:1.65!important;}
.tb-v31-live-footer .tb-r-footer-grid h4{margin:0 0 14px!important;color:#fff!important;font-size:12px!important;line-height:1.2!important;font-weight:700!important;text-transform:uppercase!important;letter-spacing:.08em!important;}
.tb-v31-live-footer .tb-r-footer-grid ul{list-style:none!important;margin:0!important;padding:0!important;display:grid!important;gap:8px!important;}
.tb-v31-live-footer .tb-r-footer-grid li{margin:0!important;padding:0!important;}
.tb-v31-live-footer .tb-r-footer-grid li a{display:block!important;padding:0!important;color:#9ca3af!important;text-decoration:none!important;font-size:12px!important;font-weight:400!important;line-height:1.5!important;}
.tb-v31-live-footer .tb-r-footer-tags{display:flex!important;align-items:center!important;gap:16px!important;flex-wrap:wrap!important;}
.tb-v31-live-footer .tb-r-footer-tags span{display:inline-flex!important;align-items:center!important;gap:6px!important;background:#111827!important;border:1px solid #1f2937!important;padding:4px 10px!important;border-radius:8px!important;color:#9ca3af!important;font-size:12px!important;line-height:1.3!important;}
.tb-v31-live-footer .tb-r-footer-company .tb-r-footer-social{display:flex!important;align-items:center!important;gap:10px!important;margin:14px 0 2px!important;}
.tb-v31-live-footer .tb-r-footer-company .tb-r-footer-social a{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:40px!important;height:40px!important;border-radius:10px!important;background:#702283!important;color:#fff!important;text-decoration:none!important;}
.tb-v31-live-footer .tb-r-footer-company .official{display:inline-flex!important;margin-top:12px!important;color:#fbbf24!important;font-size:12px!important;font-weight:700!important;text-decoration:none!important;}
.tb-v31-live-footer .tb-r-footer-disclaimer{max-width:1280px!important;margin:0 auto 32px!important;padding:0 16px!important;box-sizing:border-box!important;color:#6b7280!important;font-size:11px!important;line-height:1.65!important;}
.tb-v31-live-footer .tb-r-footer-bottom{max-width:1280px!important;margin:0 auto!important;padding:0 16px 32px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:16px!important;border-top:0!important;color:#6b7280!important;font-size:12px!important;box-sizing:border-box!important;}
.tb-v31-live-footer .tb-r-footer-bottom>div{display:flex!important;align-items:center!important;gap:16px!important;}
.tb-v31-live-footer .tb-r-footer-bottom a{color:#6b7280!important;text-decoration:none!important;}

/* Elementor-generated footer version */
.tb-v31-live-footer .tb-v25-footer-columns > .elementor-container{width:calc(100% - 64px)!important;max-width:1280px!important;margin:0 auto!important;display:grid!important;grid-template-columns:2fr 1fr 1fr 1fr!important;gap:32px!important;align-items:start!important;padding:56px 0 40px!important;border-bottom:1px solid #1f2937!important;}
.tb-v31-live-footer .tb-v25-footer-columns > .elementor-container > .elementor-column{width:auto!important;min-width:0!important;margin:0!important;padding:0!important;}
.tb-v31-live-footer .tb-v25-footer-brandcol .elementor-widget-wrap{display:grid!important;grid-template-columns:auto 1fr!important;grid-template-areas:'logo title' 'desc desc' 'tags tags'!important;align-items:center!important;column-gap:12px!important;row-gap:12px!important;padding:0!important;}
.tb-v31-live-footer .tb-v25-footer-brandcol .tb-v25-footer-logo{grid-area:logo!important;margin:0!important;width:auto!important;align-self:center!important;}
.tb-v31-live-footer .tb-v25-footer-brandcol .tb-v25-footer-logo img{width:48px!important;height:48px!important;max-width:48px!important;object-fit:contain!important;display:block!important;}
.tb-v31-live-footer .tb-v25-footer-brandcol .tb-v25-footer-heading{grid-area:title!important;margin:0!important;align-self:center!important;width:auto!important;}
.tb-v31-live-footer .tb-v25-footer-brandcol .tb-v25-footer-heading .elementor-heading-title{margin:0!important;color:#f8fafc!important;font-size:18px!important;line-height:1.2!important;font-weight:900!important;letter-spacing:0!important;text-transform:none!important;}
.tb-v31-live-footer .tb-v25-footer-brandcol .tb-v25-footer-text{grid-area:desc!important;margin:0!important;width:100%!important;}
.tb-v31-live-footer .tb-v25-footer-brandcol .tb-v25-footer-text p{margin:0 0 6px!important;color:#9ca3af!important;font-size:12px!important;line-height:1.65!important;}
.tb-v31-live-footer .tb-v25-footer-brandcol .tb-v25-tags{grid-area:tags!important;margin-top:4px!important;display:flex!important;gap:16px!important;flex-wrap:wrap!important;}
.tb-v31-live-footer .tb-v25-footer-columns .tb-v25-footer-heading .elementor-heading-title{font-size:12px!important;line-height:1.2!important;margin:0 0 14px!important;color:#fff!important;font-weight:700!important;letter-spacing:.08em!important;text-transform:uppercase!important;}
.tb-v31-live-footer .tb-v25-footer-link{margin:0!important;}
.tb-v31-live-footer .tb-v25-footer-link .elementor-button{padding:0!important;margin:0!important;background:transparent!important;border:0!important;color:#9ca3af!important;font-size:12px!important;font-weight:400!important;line-height:1.5!important;text-align:left!important;box-shadow:none!important;}
.tb-v31-live-footer .tb-v25-footer-link .elementor-button:hover{background:transparent!important;color:#fff!important;}
.tb-v31-live-footer .tb-v25-footer-social{margin:14px 0 2px!important;}
.tb-v31-live-footer .tb-v25-footer-social .elementor-social-icons-wrapper{display:flex!important;gap:10px!important;align-items:center!important;}
.tb-v31-live-footer .tb-v25-footer-social .elementor-social-icon{width:40px!important;height:40px!important;background:#702283!important;color:#fff!important;border-radius:10px!important;margin:0!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;}
.tb-v31-live-footer .tb-v25-footer-company .tb-v25-footer-link:last-child .elementor-button{color:#fbbf24!important;}
.tb-v31-live-footer .tb-v25-footer-disc > .elementor-container{width:calc(100% - 64px)!important;max-width:1280px!important;margin:0 auto!important;padding:30px 0 0!important;}
.tb-v31-live-footer .tb-v25-disclaimer-card{width:100%!important;margin:0!important;padding:20px 24px!important;background:#111827!important;border:1px solid #253246!important;border-radius:16px!important;box-sizing:border-box!important;color:#6b7280!important;font-size:11px!important;line-height:1.65!important;}
.tb-v31-live-footer .tb-v25-footer-bottom > .elementor-container{width:calc(100% - 64px)!important;max-width:1280px!important;margin:0 auto!important;padding:24px 0 32px!important;border-top:1px solid #1f2937!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:16px!important;}
.tb-v31-live-footer .tb-v25-footer-bottom .tb-v25-bottom-links{display:flex!important;align-items:center!important;gap:16px!important;}
.tb-v31-live-footer .tb-v25-footer-bottom .tb-v25-bottom-links a{color:#6b7280!important;text-decoration:none!important;font-size:12px!important;}
@media(max-width:900px){
 .tb-v31-live-footer .tb-v25-footer-columns > .elementor-container{grid-template-columns:1fr 1fr!important;width:calc(100% - 40px)!important;}
 .tb-v31-live-footer .tb-v25-footer-brandcol{grid-column:1/-1!important;}
}
@media(max-width:639px){
 .tb-v31-live-footer .tb-r-footer-grid{grid-template-columns:1fr!important;gap:28px!important;}
 .tb-v31-live-footer .tb-v25-footer-columns > .elementor-container{display:block!important;width:calc(100% - 32px)!important;padding:36px 0 28px!important;}
 .tb-v31-live-footer .tb-v25-footer-columns > .elementor-container > .elementor-column{margin:0 0 28px!important;}
 .tb-v31-live-footer .tb-v25-footer-brandcol .elementor-widget-wrap{grid-template-columns:auto 1fr!important;grid-template-areas:'logo title' 'desc desc' 'tags tags'!important;}
 .tb-v31-live-footer .tb-v25-footer-disc > .elementor-container,.tb-v31-live-footer .tb-v25-footer-bottom > .elementor-container{width:calc(100% - 32px)!important;}
 .tb-v31-live-footer .tb-v25-footer-bottom > .elementor-container{display:block!important;}
 .tb-v31-live-footer .tb-v25-bottom-links{margin-top:14px!important;flex-wrap:wrap!important;}
}
\n\n/* V32: Elementor-editable header social icons, styled exactly like footer icons */
.tb-v32-header-social-elementor{display:flex!important;align-items:center!important;margin:0 6px 0 0!important;padding:0!important;}
.tb-v32-header-social-elementor .elementor-social-icons-wrapper{display:flex!important;align-items:center!important;gap:10px!important;}
.tb-v32-header-social-elementor .elementor-grid-item{margin:0!important;}
.tb-v32-header-social-elementor .elementor-icon{width:40px!important;height:40px!important;display:flex!important;align-items:center!important;justify-content:center!important;border-radius:10px!important;background:#702283!important;color:#fff!important;box-shadow:none!important;font-size:18px!important;}
.tb-v32-header-social-elementor .elementor-icon:hover{background:#8d31a5!important;}
.tb-v32-header-social-elementor .elementor-social-icon i{font-size:18px!important;color:#fff!important;}
.tb-v32-header-social-elementor .elementor-social-icon{background:transparent!important;margin:0!important;padding:0!important;}
@media(max-width:1100px){.tb-v32-header-social-elementor{display:none!important;}}
