@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;600;700;800&display=swap');

/* CSS VARIABLES FOR PREMIUM LOOK */
:root {
  --bg-dark: #fbf9f6;    /* Warm off-white background matching competitor */
  --bg-card: #ffffff;    /* Clean white card backgrounds */
  --bg-card-hover: #f5f3f0;
  --primary: #fce300;    /* Dave's Spiced Yellow */
  --primary-rgb: 252, 227, 0;
  --accent: #c8102e;     /* Dave's Brand Red */
  --accent-hover: #9e0c22;
  --txt-light: #2d2926;  /* Dark Charcoal */
  --txt-muted: #5e5956;
  --border: #e2e0d8;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-geist-sans: 'Outfit', sans-serif !important;
  --font-geist-mono: monospace !important;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html:not(:has(body.dhc-competitor-body)) {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--txt-light);
  font-family: var(--font-body);
  line-height: 1.6;
}

body:not(.dhc-competitor-body) {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* TYPOGRAPHY */
body:not(.dhc-competitor-body) h1,
body:not(.dhc-competitor-body) h2,
body:not(.dhc-competitor-body) h3,
body:not(.dhc-competitor-body) h4,
body:not(.dhc-competitor-body) h5,
body:not(.dhc-competitor-body) h6 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

body:not(.dhc-competitor-body) h1 {
  font-size: 4rem;
  color: var(--accent);
  text-shadow: none;
}

body:not(.dhc-competitor-body) h2 {
  font-size: 2.5rem;
  color: var(--txt-light);
  margin-bottom: 0.5rem;
}

body:not(.dhc-competitor-body) h3 {
  font-size: 1.8rem;
  color: var(--accent);
}

body:not(.dhc-competitor-body) p {
  font-size: 1.05rem;
  color: var(--txt-muted);
}

body:not(.dhc-competitor-body) a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

body:not(.dhc-competitor-body) a:hover {
  color: var(--txt-light);
}

/* COMPETITOR HOMEPAGE BASE OVERRIDES */
html:has(body.dhc-competitor-body) {
  background-color: #2d2926 !important;
}
body.dhc-competitor-body {
  background-color: #2d2926 !important;
  color: #ffffff !important;
}

/* BUTTONS / LINKS */
.btn {
  display: inline-block;
  background-color: var(--accent);
  color: #ffffff !important;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn:hover {
  background-color: var(--primary);
  color: #2d2926 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  background-color: transparent;
  color: var(--txt-light) !important;
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--border);
  border-color: var(--accent);
  color: var(--accent) !important;
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER & NAVIGATION */
header.topbar {
  background-color: #2d2926 !important;
  border-bottom: 1px solid #3d3834 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header.topbar .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 16px !important;
}
@media (min-width: 768px) {
  header.topbar .container {
    padding: 0 24px !important;
  }
}

.nav {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 56px !important;
  padding: 0 !important;
}
@media (min-width: 768px) {
  .nav {
    height: 64px !important;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.navlinks {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navlinks a {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--txt-light);
  padding: 5px 10px;
  border-bottom: 2px solid transparent;
}

.navlinks a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--txt-light);
  margin: 5px 0;
  transition: var(--transition);
}

/* HERO SECTION */
.home-hero {
  text-align: left;
  min-height: 500px;
  position: relative;
  background-image: url('https://cdn.sanity.io/images/ysupxjc9/production/86d8dc747ddcfdfb31df8d0eba6ac47fd5b4a0dc-2560x2048.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 0;
  border-bottom: 4px solid var(--primary);
}

.home-hero-mobile-image {
  display: none;
}

.home-hero-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.home-hero-card {
  max-width: 580px;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 40px;
  border-radius: 4px;
  color: #ffffff;
  border-left: 5px solid var(--primary);
}

.home-hero-card h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

.home-hero-card h1 em {
  font-style: normal;
  color: #fce300;
}

.home-hero-card .lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #f7fafc;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.home-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.home-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.home-hero-btn-primary {
  background-color: #fce300;
  color: #1a1a1a;
  border: 2px solid #fce300;
}

.home-hero-btn-primary:hover {
  background-color: #c8102e;
  color: #ffffff;
  border-color: #c8102e;
}

.home-hero-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.home-hero-btn-secondary:hover {
  background-color: #fce300;
  color: #1a1a1a;
  border-color: #fce300;
}

@media (max-width: 768px) {
  .home-hero {
    min-height: auto;
    padding: 0;
    flex-direction: column;
    background-image: none;
    border-bottom: none;
  }
  
  .home-hero-mobile-image {
    width: 100%;
    height: 280px;
    background-image: url('https://cdn.sanity.io/images/ysupxjc9/production/86d8dc747ddcfdfb31df8d0eba6ac47fd5b4a0dc-2560x2048.jpg');
    background-size: cover;
    background-position: center;
    display: block !important;
  }

  .home-hero-container {
    padding: 0;
    width: 100%;
  }

  .home-hero-card {
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-bottom: 4px solid var(--primary);
    background-color: #c8102e;
    padding: 35px 20px;
  }
  
  .home-hero-card h1 {
    font-size: 2.2rem;
  }
  
  .home-hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .home-hero-btn {
    width: 100%;
    text-align: center;
  }
}

/* FUN FACT CARD */
.funfact {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.funfact .bolt {
  font-size: 3rem;
  color: var(--primary);
  background-color: rgba(255, 199, 44, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.funfact .txt {
  flex-grow: 1;
}

.funfact .tag {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.funfact h2 {
  font-size: 2rem;
  margin: 5px 0 10px;
}

.funfact h2 span {
  color: var(--primary);
}

/* SECTIONS */
section {
  padding: 60px 0;
}

section.alt {
  background-color: rgba(255, 199, 44, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-head .kicker {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 2.8rem;
}

/* CARDS GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background-color: var(--bg-card-hover);
}

.card .cap {
  height: 200px;
  overflow: hidden;
  background-color: var(--bg-card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-heading);
}

.card .body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card .badge {
  align-self: flex-start;
  background-color: var(--accent);
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card .desc {
  font-size: 0.95rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 15px;
  margin-top: auto;
}

.card .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.card .cal {
  font-size: 0.9rem;
  color: var(--txt-muted);
}

/* CHIPS / FILTERS */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 45px;
}

.chip {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--txt-light);
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.chip:hover, .chip.active {
  background-color: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  transform: scale(1.05);
}

/* TABLES (MENU LISTS) */
.menu-block {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
}

.menu-block h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.menu-block h3 .ico {
  font-size: 2.5rem;
}

.menu-block > p {
  margin-bottom: 25px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
}

th {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--txt-muted);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

td {
  font-size: 1.1rem;
}

tr:last-child td {
  border-bottom: none;
}

.mi-cell {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mi-cell .mi-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-card-hover);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid var(--border);
}

.mi-link {
  font-weight: 700;
  color: var(--txt-light);
}

.mi-link:hover {
  color: var(--accent);
}

table .p {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.25rem;
}

/* FAQ ACCORDION */
.faqs {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--txt-light);
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}

.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: var(--txt-muted);
}

.faq-item.active .faq-a {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* INTERACTIVE COMPONENTS */
/* CALORIE CALCULATOR */
.calc-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.calc-sidebar {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
  position: sticky;
  top: 100px;
}

.calc-total-box {
  background-color: rgba(255, 199, 44, 0.05);
  border: 2px dashed var(--primary);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.calc-total-val {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.calc-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.calc-item-info h4 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: var(--txt-light);
}

.calc-item-info p {
  font-size: 0.85rem;
}

.calc-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  background-color: var(--border);
  border: 1px solid var(--border);
  color: var(--txt-light);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background-color: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
}

.qty-val {
  font-size: 1.1rem;
  font-weight: 700;
  width: 20px;
  text-align: center;
}

/* SPICE QUIZ */
.quiz-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.quiz-progress {
  height: 6px;
  background-color: var(--border);
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}

.quiz-bar {
  height: 100%;
  background-color: var(--accent);
  width: 0%;
  transition: var(--transition);
}

.quiz-q {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--txt-light);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quiz-opt {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 18px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
  color: var(--txt-light);
}

.quiz-opt:hover {
  background-color: rgba(255, 199, 44, 0.05);
  border-color: var(--primary);
  padding-left: 32px;
}

.quiz-result-title {
  font-size: 3.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 20px;
}

.quiz-result-desc {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 30px;
}

/* DYNAMIC DETAIL PAGE */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.detail-gallery {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.detail-info h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.detail-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.detail-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 2rem;
}

.detail-cal {
  background-color: var(--border);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.95rem;
}

.detail-desc {
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.nutrition-table {
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.nutrition-table th {
  background-color: rgba(255,255,255,0.02);
  padding: 12px 15px;
}

.nutrition-table td {
  padding: 12px 15px;
}

/* BLOG DESIGN */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.blog-card-meta {
  padding: 15px 20px 5px;
  font-size: 0.85rem;
  color: var(--txt-muted);
  display: flex;
  gap: 15px;
}

.blog-card-body {
  padding: 0 20px 20px;
}

.blog-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--txt-light);
  line-height: 1.3;
}

.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.blog-readmore {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SINGLE BLOG VIEW */
.blog-post-view {
  max-width: 800px;
  margin: 40px auto;
}

.blog-post-meta {
  color: var(--txt-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.blog-post-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--txt-light);
}

.blog-post-content p {
  color: var(--txt-muted);
  margin-bottom: 20px;
}

.blog-post-content h3 {
  color: var(--accent);
  margin: 35px 0 15px;
  font-size: 1.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.blog-post-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.blog-post-content li {
  margin-bottom: 10px;
}

/* SEARCH BAR */
.search-wrapper {
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
}

.search-input {
  flex-grow: 1;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--txt-light);
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 199, 44, 0.15);
}

/* NEW FOOTER DESIGN */
footer {
  background-color: #c8102e;
  background-image: url('https://cdn.sanity.io/images/ysupxjc9/production/a00283d86dea733aad1e392e56d130731021b487-4000x4000.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 0 40px;
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fce300 !important;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ffffff !important;
}

.footer-col {
  text-align: left !important;
}

.footer-col ul {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-col ul li {
  list-style: none !important;
  list-style-type: none !important;
  margin-bottom: 10px !important;
  padding-left: 0 !important;
}

.footer-col ul li a {
  color: #ffffff;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: #fce300;
}

.footer-brand-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-title img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand-title h3 {
  margin: 0;
  color: #fce300;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* Real brand colors for socials */
.footer-social-btn[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-social-btn[aria-label="TikTok"] {
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-social-btn[aria-label="YouTube"] {
  background-color: #ff0000;
}

.footer-social-btn[aria-label="Facebook"] {
  background-color: #1877f2;
}

.footer-social-btn:hover {
  background-color: #ffffff !important;
  background-image: none !important;
  color: #c8102e !important;
  border-color: #ffffff !important;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-bottom-links {
  text-align: center;
  margin: 30px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.footer-bottom-links a {
  color: #ffffff;
  margin: 0 12px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: #fce300;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
  color: #ffffff !important;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  .detail-layout, .calc-container {
    grid-template-columns: 1fr;
  }
  .calc-sidebar {
    position: static;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .navlinks {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 15px;
  }
  
  .navlinks.active {
    display: flex;
  }
  
  .nav-burger {
    display: block;
  }
  
  .funfact {
    flex-direction: column;
    text-align: center;
  }
}

/* COMPETITOR SEARCH FINDER */
.search-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  .search-section-grid {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 25px;
  }
}

/* COMPETITOR HEADER STYLE OVERRIDES */
header.topbar {
  background-color: #2d2926 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 12px 0 !important;
}

header.topbar .nav {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.header-left-group {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
}

.logo {
  border: none !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  margin-right: 12px !important;
}

.logo-img-competitor {
  height: 18px !important;
  width: auto !important;
  display: block !important;
}
@media (min-width: 1280px) {
  .logo-img-competitor {
    height: 20px !important;
  }
}

.select-venue-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: #ffffff !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  text-transform: none !important;
}

.select-venue-link i {
  color: #c8102e !important; /* red location pin icon */
  font-size: 0.95rem !important;
}

.nav-right-actions {
  display: flex !important;
  align-items: center !important;
  gap: 25px !important;
}

.navlinks {
  display: flex !important;
  gap: 20px !important;
  align-items: center !important;
}
@media (min-width: 1400px) {
  .navlinks {
    gap: 40px !important;
  }
}

.navlinks a {
  position: relative !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 8px 0 !important;
  transition: color 0.15s ease, transform 0.15s ease !important;
  display: inline-block !important;
}

.navlinks a::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background-color: #fedb00 !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.15s ease-in-out !important;
}

.navlinks a:hover {
  color: #fedb00 !important;
  transform: translateY(-2px) !important;
}

.navlinks a:hover::after {
  transform: scaleX(1) !important;
}

.btn-view-menu {
  background-color: #fedb00 !important;
  color: #2d2926 !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  border-radius: 9999px !important;
  padding: 0 20px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: background-color 0.15s ease, color 0.15s ease !important;
  border: none !important;
  cursor: pointer !important;
}

.btn-view-menu:hover {
  background-color: #e5c500 !important;
  color: #2d2926 !important;
}

.nav-burger span {
  background-color: #ffffff !important; /* white hamburger lines */
}

/* RESPONSIVE LAYOUT FOR NEW HEADER */
@media (max-width: 991px) {
  .nav-right-actions {
    gap: 15px !important;
  }
  .navlinks {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    background-color: #2d2926 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 20px !important;
    gap: 15px !important;
    z-index: 1000 !important;
  }
  
  .navlinks.active {
    display: flex !important;
  }
  
  .nav-burger {
    display: block !important;
    order: 2 !important;
  }
}

/* ABOUT US PAGE STYLES */
.about-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 410px;
  background-image: url('https://cdn.sanity.io/images/ysupxjc9/production/7df9c8bbe17ef35bd46a3bc16fae3aaa8cfaa410-1920x883.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
}

.about-hero-mobile-bg {
  display: none;
}

.about-hero-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.about-hero-card {
  max-width: 690px;
  background-color: #2d2926;
  color: #ffffff;
  padding: 40px;
  border-radius: 4px;
}

.about-hero-card .overline {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-hero-card h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section {
  width: 100%;
  background-color: #ffffff;
  color: #2d2926;
  padding: 80px 0;
  border-bottom: 1px solid #e2e8f0;
}

.about-section-alt {
  width: 100%;
  background-color: #f7fafc;
  color: #2d2926;
  padding: 80px 0;
  border-bottom: 1px solid #e2e8f0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text-col h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.2;
  color: #2d2926;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 1px;
}

.about-text-col p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

.about-text-col strong {
  font-size: 1.25rem;
  color: #2d2926;
  display: block;
  margin-top: 15px;
}

.about-image-col {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1/1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    background-image: none;
    background-color: #c8102e;
    padding: 0;
  }
  
  .about-hero-mobile-bg {
    width: 100%;
    height: 250px;
    background-image: url('https://cdn.sanity.io/images/ysupxjc9/production/7df9c8bbe17ef35bd46a3bc16fae3aaa8cfaa410-1920x883.avif');
    background-size: cover;
    background-position: center;
    display: block !important;
  }

  .about-hero-card {
    max-width: 100%;
    border-radius: 0;
    padding: 40px 20px;
    text-align: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-col {
    order: -1; /* image on top on mobile */
  }
  
  .about-text-col h2 {
    font-size: 1.8rem;
  }
}

/* ===================== DHC VIRAL VIDEO SECTION ===================== */
.dhc-video-section {
  background: linear-gradient(135deg, #100e0e 0%, #1a080a 100%);
  padding: 90px 20px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  border-top: 5px solid var(--accent);
  position: relative;
}
.dhc-video-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.dhc-video-header {
  text-align: center;
  margin-bottom: 50px;
}
.dhc-video-header h2 {
  font-family: var(--font-heading) !important;
  font-size: 3.2rem !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  margin: 0 0 15px 0 !important;
  letter-spacing: 0.5px;
}
.dhc-video-header h2 em {
  color: var(--primary);
  font-style: normal;
}
.dhc-video-header p {
  font-size: 1.15rem;
  color: #cbd5e0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.dhc-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.dhc-video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.dhc-video-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(254, 219, 0, 0.15);
}
.dhc-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background-color: #000;
}
.dhc-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.dhc-video-body {
  padding: 25px;
}
.dhc-video-body h3 {
  font-family: var(--font-heading) !important;
  font-size: 1.5rem !important;
  color: #ffffff !important;
  margin: 0 0 10px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
}
.dhc-video-body p {
  font-size: 0.95rem;
  color: #a0aec0;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .dhc-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .dhc-video-grid {
    grid-template-columns: 1fr;
  }
  .dhc-video-header h2 {
    font-size: 2.3rem !important;
  }
}

/* ===================== FAQ ACCORDION SECTION ===================== */
.faq-accordion-section {
  background-color: #ffffff;
  padding: 80px 20px;
  border-top: 1px solid #e2e8f0;
  font-family: 'Outfit', sans-serif;
}
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-accordion-header {
  text-align: center;
  margin-bottom: 50px;
}
.faq-accordion-header h2 {
  font-family: var(--font-heading) !important;
  font-size: 2.2rem !important;
  color: #1a1a1a !important;
  text-transform: uppercase !important;
  font-weight: normal !important;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.faq-accordion-header h2 em {
  color: var(--accent);
  font-style: normal;
}
.faq-accordion-header p {
  font-size: 1.1rem;
  color: #718096;
  margin: 0;
}
.faq-accord-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fafafa;
  margin-bottom: 15px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-accord-item:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.faq-accord-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
  color: #1a1a1a;
  outline: none;
}
.faq-accord-icon {
  font-size: 1.2rem;
  color: #a0aec0;
  transition: transform 0.3s ease, color 0.2s ease;
  font-weight: normal;
}
.faq-accord-item.active {
  border-color: var(--accent);
  background: #ffffff;
}
.faq-accord-item.active .faq-accord-trigger {
  border-bottom: 1px solid #e2e8f0;
}
.faq-accord-item.active .faq-accord-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-accord-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-accord-inner {
  padding: 24px 28px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #4a5568;
}
.faq-accord-inner p {
  margin: 0 0 14px 0;
}
.faq-accord-inner p:last-child {
  margin-bottom: 0;
}
.faq-accord-inner strong {
  color: #1a1a1a;
}
.faq-accord-inner a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s ease;
}
.faq-accord-inner a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .faq-accord-trigger {
    padding: 18px 20px !important;
    font-size: 0.98rem !important;
  }
  .faq-accord-inner {
    padding: 18px 20px !important;
    font-size: 0.92rem !important;
  }
}
