/* ==========================================================================
   ComidaDomicilio.store - Modern Deliveroo Celeste (#00CCBC) Design System
   ========================================================================== */

:root {
  --primary-cyan: #00CCBC;
  --primary-hover: #00B3A5;
  --primary-dark: #004E4A;
  --primary-light: #E0F7F5;
  --accent-gold: #FFC107;
  --accent-orange: #FF5722;
  --bg-body: #F6FAFA;
  --bg-card: #FFFFFF;
  --bg-dark-obsidian: #0B1326;
  --bg-surface-cream: #FAF9F6;
  --text-main: #181C1D;
  --text-muted: #5B6B68;
  --text-white: #FFFFFF;
  --border-light: rgba(0, 204, 188, 0.15);
  --shadow-sm: 0 4px 12px rgba(0, 78, 74, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 204, 188, 0.12);
  --shadow-lg: 0 16px 36px rgba(0, 78, 74, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-heading: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base Overrides */
body {
  background-color: var(--bg-body) !important;
  color: var(--text-main) !important;
  font-family: var(--font-body) !important;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  color: var(--text-main);
  font-weight: 700;
}

a {
  color: var(--primary-cyan);
  transition: all 0.25s ease;
  text-decoration: none;
}
a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* Glassmorphic Container Utility */
.glass-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-cyan);
}

/* Top Navigation Bar */
.st-header-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 204, 188, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.st-navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary-cyan) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-navbar-brand span {
  color: var(--primary-dark);
}
.st-location-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.st-nav-search {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.st-nav-search input {
  width: 100%;
  padding: 10px 18px 10px 42px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  background: var(--bg-body);
  font-size: 14px;
  transition: all 0.3s ease;
}
.st-nav-search input:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 4px rgba(0, 204, 188, 0.15);
  background: #ffffff;
}
.st-nav-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-cyan);
}
.st-btn-express {
  background: var(--primary-cyan);
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 204, 188, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.st-btn-express:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 78, 74, 0.4);
}

/* Hero Section */
.hero-deliveroo-section {
  background: linear-gradient(180deg, #EBF9F8 0%, var(--bg-body) 100%);
  padding: 40px 0 30px;
  position: relative;
}
.live-ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--primary-cyan);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0, 204, 188, 0.15);
  margin-bottom: 20px;
}
.hero-title-main {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}
.hero-subtitle-main {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 30px;
}

/* Category Filter Chips Carousel */
.category-chips-wrapper {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 4px 15px;
  scrollbar-width: none;
}
.category-chips-wrapper::-webkit-scrollbar {
  display: none;
}
.chip-item {
  flex: 0 0 auto;
  background: #ffffff;
  border: 1.5px solid rgba(0, 204, 188, 0.25);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.chip-item:hover, .chip-item.active {
  background: var(--primary-cyan);
  color: #ffffff;
  border-color: var(--primary-cyan);
  box-shadow: 0 4px 14px rgba(0, 204, 188, 0.35);
  transform: translateY(-2px);
}

/* Guía Rápida Section */
.guia-quick-card {
  background: linear-gradient(135deg, #ffffff 0%, #F0FAF9 100%);
  border: 1.5px solid rgba(0, 204, 188, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.guia-card-link {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid rgba(0, 204, 188, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  margin-bottom: 12px;
}
.guia-card-link:hover {
  background: var(--primary-cyan);
  color: #ffffff;
  transform: translateX(4px);
}
.guia-card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 16px;
}
.guia-card-link:hover .guia-card-icon {
  background: #ffffff;
  color: var(--primary-cyan);
}

/* Promos & Video Cards Section */
.promo-banner-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.promo-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.promo-badge-tag {
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.video-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Dish Menu Grid Cards */
.dish-menu-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.dish-menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-cyan);
}
.dish-img-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.dish-price-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 15px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-top: 4px;
}

/* Main Restaurant Cards Grid (12 Brands) */
.restaurant-wow-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 204, 188, 0.15);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.restaurant-wow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 204, 188, 0.2);
  border-color: var(--primary-cyan);
}
.restaurant-card-header {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.restaurant-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.restaurant-wow-card:hover .restaurant-card-header img {
  transform: scale(1.05);
}
.restaurant-rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 800;
  color: #181C1D;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 4px;
}
.restaurant-rating-badge i {
  color: var(--accent-gold);
}
.restaurant-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.restaurant-name-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--primary-dark);
}
.restaurant-phone-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: monospace;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  width: fit-content;
}
.restaurant-card-cta {
  background: var(--primary-cyan);
  color: #ffffff !important;
  font-weight: 700;
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-full);
  margin-top: auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 204, 188, 0.3);
  transition: all 0.25s ease;
}
.restaurant-card-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(0, 78, 74, 0.4);
}

/* Direct Dial Table Section */
.express-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 24px;
  margin-bottom: 40px;
}
.express-table {
  width: 100%;
  border-collapse: collapse;
}
.express-table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  border-radius: var(--radius-sm);
}
.express-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 204, 188, 0.1);
  font-size: 14.5px;
}
.express-phone-number {
  font-family: monospace;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 16px;
}
.express-call-btn {
  background: var(--primary-cyan);
  color: #ffffff !important;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.express-call-btn:hover {
  background: var(--primary-dark);
}

/* WhatsApp Channel Banner */
.whatsapp-community-card {
  background: linear-gradient(135deg, #00E676 0%, #00B0FF 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 230, 118, 0.25);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.whatsapp-community-card h3 {
  color: #ffffff !important;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}
.whatsapp-community-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin-bottom: 20px;
}
.whatsapp-btn-join {
  background: #ffffff;
  color: #00B0FF !important;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.whatsapp-btn-join:hover {
  background: var(--bg-dark-obsidian);
  color: #ffffff !important;
}

/* FAQ Accordion Section */
.faq-section-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 35px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 204, 188, 0.12);
  padding: 18px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.6;
}

/* Deliveroo Celeste Footer */
.st-footer-deliveroo {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 50px 0 25px;
  margin-top: 50px;
}
.st-footer-deliveroo h5 {
  color: var(--primary-cyan) !important;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}
.st-footer-deliveroo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.st-footer-deliveroo ul li {
  margin-bottom: 10px;
}
.st-footer-deliveroo ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
}
.st-footer-deliveroo ul li a:hover {
  color: var(--primary-cyan) !important;
}
.st-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
  .hero-title-main {
    font-size: 28px;
  }
  .hero-subtitle-main {
    font-size: 15px;
  }
  .guia-quick-card {
    padding: 20px;
  }
  .st-nav-search {
    max-width: 100%;
    margin-top: 10px;
  }
  .whatsapp-community-card {
    padding: 25px 20px;
  }
}
@media (max-width: 575px) {
  .hero-title-main {
    font-size: 24px;
  }
  .restaurant-card-header {
    height: 140px;
  }
  .dish-menu-card {
    flex-direction: column;
    text-align: center;
  }
  .dish-img-thumb {
    width: 100%;
    height: 140px;
  }
}

/* Secondary Sub-Nav Bar */
.st-subnav-categories {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0, 204, 188, 0.1);
  border-bottom: 1px solid rgba(0, 204, 188, 0.12);
  padding: 6px 0;
  margin-top: 8px;
}
.subnav-scroll-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}
.subnav-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.subnav-link {
  flex: 0 0 auto;
  color: var(--primary-dark);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.subnav-link:hover, .subnav-link.active {
  background: var(--primary-light);
  color: var(--primary-cyan);
}
.subnav-highlight {
  background: var(--primary-cyan) !important;
  color: #ffffff !important;
}
.subnav-highlight:hover {
  background: var(--primary-dark) !important;
}

/* Live Floating Dropdown Search */
.st-nav-search {
  position: relative;
}
.live-search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--primary-cyan);
  box-shadow: 0 12px 32px rgba(0, 78, 74, 0.18);
  max-height: 380px;
  overflow-y: auto;
  z-index: 2000;
  padding: 8px 0;
  display: none;
  text-align: left;
}
.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--primary-dark);
  text-decoration: none;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(0, 204, 188, 0.08);
}
.search-dropdown-item:last-child {
  border-bottom: none;
}
.search-dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.search-item-thumb {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.search-item-info {
  flex-grow: 1;
}
.search-item-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-dark);
  line-height: 1.2;
}
.search-item-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 2px 0 0;
}
.search-item-phone {
  font-family: monospace;
  font-weight: 700;
  font-size: 12.5px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* ==========================================
   DELIVEROO CELESTE (#00CCBC) INNER PAGES HERO OVERRIDES
   ========================================== */
.aqua-gredient-color, 
.st_inner_banner_area {
  background: linear-gradient(135deg, #004E4A 0%, #008075 45%, #00CCBC 100%) !important;
  color: #ffffff !important;
  padding: 55px 0 65px !important;
  position: relative !important;
  box-shadow: inset 0 -10px 30px rgba(0,0,0,0.1) !important;
}

.st_inner_banner_content h1 {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-size: 34px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
  margin-bottom: 12px !important;
}

.st_inner_banner_content p {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 16.5px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 780px !important;
  margin: 0 auto !important;
  line-height: 1.5 !important;
}

.st_inner_banner_content .st_default_btn,
.st_inner_banner_content .tracklink {
  background-color: #00CCBC !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  font-family: 'Hanken Grotesk', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 8px 20px rgba(0, 78, 74, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  display: inline-block !important;
  width: auto !important;
  max-width: 280px !important;
  margin: 20px 8px 0 !important;
}

.st_inner_banner_content .st_default_btn:hover,
.st_inner_banner_content .tracklink:hover {
  background-color: #ffffff !important;
  color: #004E4A !important;
  border-color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(0, 204, 188, 0.4) !important;
}

/* Breadcrumb badge bar on internal pages */
.st_inner_banner_menu_area {
  margin-top: -25px !important;
  z-index: 10 !important;
}

.st_inner_banner_menu_area .breadcrumb,
.st_inner_banner_menu_area ul {
  background: #ffffff !important;
  border: 1px solid rgba(0, 204, 188, 0.2) !important;
  box-shadow: 0 8px 25px rgba(0, 78, 74, 0.08) !important;
  border-radius: 50px !important;
  padding: 8px 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.st_inner_banner_menu_area .breadcrumb a,
.st_inner_banner_menu_area ul a {
  color: #00CCBC !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* ==========================================
   DELIVEROO CELESTE (#00CCBC) CARDS, MODALS & SIDEBAR OVERRIDES
   ========================================== */

/* Product Catalog Cards */
.single_popular_item,
.popular_item_content,
.product-card-wrap {
  background: #ffffff !important;
  border: 1.5px solid rgba(0, 204, 188, 0.18) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(0, 78, 74, 0.06) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.single_popular_item:hover,
.popular_item_content:hover,
.product-card-wrap:hover {
  transform: translateY(-6px) !important;
  border-color: #00CCBC !important;
  box-shadow: 0 16px 36px rgba(0, 204, 188, 0.22) !important;
}

/* Card Images */
.single_popular_item img,
.popular_item_content img,
.popular_item_thumb img {
  border-radius: 16px 16px 0 0 !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.single_popular_item:hover img,
.popular_item_content:hover img {
  transform: scale(1.03) !important;
}

/* Product Titles & Prices */
.popular_item_content h3,
.popular_item_content h4,
.popular_item_title {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 800 !important;
  color: #004E4A !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  margin: 12px 0 8px !important;
}

.popular_item_content .price,
.popular_item_content .price-tag,
.single_popular_item .price {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 800 !important;
  font-size: 17px !important;
  background: #F0FAF9 !important;
  border: 1px solid rgba(0, 204, 188, 0.3) !important;
  color: #008075 !important;
  padding: 4px 12px !important;
  border-radius: 50px !important;
  display: inline-block !important;
}

/* VER Buttons inside cards */
.single_popular_item .st_default_btn,
.popular_item_content .st_default_btn,
.popular_item_content .btn-ver,
.popular_item_content a[data-toggle="modal"] {
  background: linear-gradient(135deg, #00CCBC 0%, #00b3a4 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 14px rgba(0, 204, 188, 0.35) !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  width: 100% !important;
  text-align: center !important;
  margin-top: 14px !important;
}

.single_popular_item .st_default_btn:hover,
.popular_item_content .st_default_btn:hover,
.popular_item_content .btn-ver:hover,
.popular_item_content a[data-toggle="modal"]:hover {
  background: linear-gradient(135deg, #004E4A 0%, #008075 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 78, 74, 0.3) !important;
}

/* Deliveroo Celeste Modal Overlays */
.modal-content {
  border-radius: 20px !important;
  border: 1.5px solid rgba(0, 204, 188, 0.25) !important;
  box-shadow: 0 25px 60px rgba(0, 78, 74, 0.25) !important;
  overflow: hidden !important;
}

.modal-header {
  background: linear-gradient(135deg, #004E4A 0%, #008075 50%, #00CCBC 100%) !important;
  color: #ffffff !important;
  padding: 18px 24px !important;
  border-bottom: none !important;
}

.modal-header .modal-title,
.modal-header h4,
.modal-header h5 {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  font-size: 20px !important;
  margin: 0 !important;
}

.modal-header .close,
.modal-header .btn-close {
  color: #ffffff !important;
  opacity: 0.9 !important;
  font-size: 26px !important;
  text-shadow: none !important;
  transition: opacity 0.2s ease !important;
}

.modal-header .close:hover,
.modal-header .btn-close:hover {
  opacity: 1 !important;
}

.modal-body {
  padding: 24px !important;
  font-family: 'IBM Plex Sans', sans-serif !important;
  color: #2D3748 !important;
  font-size: 15.5px !important;
  line-height: 1.6 !important;
}

.modal-body img {
  border-radius: 14px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
  margin-bottom: 16px !important;
}

.modal-footer {
  background: #F0FAF9 !important;
  border-top: 1px solid rgba(0, 204, 188, 0.15) !important;
  padding: 16px 24px !important;
  border-radius: 0 0 20px 20px !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 12px !important;
}

/* Modal Action Buttons */
.modal-footer .btn-primary,
.modal-footer a[href*="tel:"],
.modal-footer .btn-order,
.modal-footer button.btn-primary {
  background: linear-gradient(135deg, #00CCBC 0%, #00b3a4 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 26px !important;
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 14px rgba(0, 204, 188, 0.35) !important;
  transition: all 0.25s ease !important;
}

.modal-footer .btn-primary:hover,
.modal-footer a[href*="tel:"]:hover {
  background: linear-gradient(135deg, #004E4A 0%, #008075 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 78, 74, 0.3) !important;
}

.modal-footer .btn-secondary,
.modal-footer button[data-dismiss="modal"] {
  background: #E2E8F0 !important;
  color: #004E4A !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
}

.modal-footer .btn-secondary:hover,
.modal-footer button[data-dismiss="modal"]:hover {
  background: #CBD5E0 !important;
  color: #004E4A !important;
}

/* Deliveroo Celeste Sidebar Styling */
.st_blog_sidebar_item {
  background: #ffffff !important;
  border: 1.5px solid rgba(0, 204, 188, 0.18) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 25px rgba(0, 78, 74, 0.06) !important;
  padding: 24px !important;
}

.st_blog_sidebar_title h3,
.st_blog_sidebar_title strong {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 800 !important;
  color: #004E4A !important;
  font-size: 20px !important;
  border-bottom: 2.5px solid #00CCBC !important;
  padding-bottom: 8px !important;
  display: inline-block !important;
  margin-bottom: 20px !important;
}

.compact-post-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8px 10px !important;
  border-radius: 12px !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

.compact-post-link:hover {
  background: #F0FAF9 !important;
  transform: translateX(4px) !important;
}

.compact-post-thumb img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
  border: 1px solid rgba(0, 204, 188, 0.2) !important;
}

.compact-post-title {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: 700 !important;
  color: #004E4A !important;
  font-size: 13.5px !important;
  line-height: 1.3 !important;
}

.compact-post-link:hover .compact-post-title {
  color: #00CCBC !important;
}

/* Category Badges on Product Cards */
.badge-category,
.category-badge,
span[class*="category"] {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  background: #F0FAF9 !important;
  color: #008075 !important;
  padding: 4px 10px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(0, 204, 188, 0.25) !important;
}

/* bg-science-aqua Override for Bright Deliveroo Celeste Buttons */
.bg-science-aqua,
.bg-hover-st-aqua:hover,
a.bg-science-aqua,
button.bg-science-aqua {
  background: linear-gradient(135deg, #00CCBC 0%, #00b3a4 100%) !important;
  color: #ffffff !important;
  border-color: #00CCBC !important;
  box-shadow: 0 4px 14px rgba(0, 204, 188, 0.35) !important;
}

.bg-science-aqua:hover,
a.bg-science-aqua:hover {
  background: linear-gradient(135deg, #004E4A 0%, #008075 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 78, 74, 0.3) !important;
}


