/* ===== CSS RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== ROOT VARIABLES ===== */
:root {
  /* Australian-themed Color Palette */
  --primary-color: #b8860b; /* Golden ochre */
  --secondary-color: #8b4513; /* Saddle brown */
  --accent-color: #228b22; /* Forest green */
  --warm-orange: #cd853f; /* Peru */
  --earth-red: #a0522d; /* Sienna */
  --cream: #f5f5dc; /* Beige */
  --sand: #f4a460; /* Sandy brown */

  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #212529;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 0;
  --border-radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===== FORMS ===== */
.form-input,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

/* ===== HEADER ===== */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--dark-gray);
  transition: var(--transition);
}

/* ===== COINBASE HEADER ===== */
.cb-header {
  background: #ffffff;
  border-bottom: 1px solid #e7e7e7;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
}

.cb-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cb-header .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.cb-header .brand svg {
  height: 32px;
  width: auto;
}

.cb-header .nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.cb-header .nav a {
  color: #0a0b0d;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cb-header .nav a:hover {
  color: #0052ff;
}

.cb-header .spacer {
  flex: 1;
}

.cb-header .actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cb-header .action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 50%;
}

.cb-header .action:hover {
  background: #f4f4f5;
}

.cb-header .action svg {
  width: 20px;
  height: 20px;
  color: #0a0b0d;
}

.cb-header .action.icon-bg {
  background: #f4f4f5;
}

.cb-header .btn {
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0052ff;
  color: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cb-header .btn:hover {
  background: #0041cc;
}

.cb-header .btn img {
  margin-right: 8px;
}

.cb-header .only-mobile {
  display: none;
}

@media (max-width: 768px) {
  .cb-header .only-desktop {
    display: none;
  }

  .cb-header .only-mobile {
    display: flex;
  }

  .cb-header .nav {
    display: none;
  }

  .cb-header .inner {
    gap: 16px;
  }
}

/* ===== MOBILE SUBNAV ===== */
.mobile-subnav {
  display: none;
}

/* ===== SUPPORT BANNER ===== */
.support-banner {
  max-width: 1200px;
  margin: 16px auto;
  padding: 0 24px;
}

.support-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 8px;
  padding: 12px 16px;
  position: relative;
}

.support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #92400e;
}

.support-text {
  flex: 1;
  margin: 0;
  padding-right: 32px;
  font-size: 14px;
  line-height: 1.5;
  color: #78350f;
}

.support-text a {
  color: #78350f;
  text-decoration: underline;
  font-weight: 600;
}

.support-text a:hover {
  color: #92400e;
}

.support-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #92400e;
  transition: color 0.2s ease;
}

.support-close:hover {
  color: #78350f;
}

@media (max-width: 768px) {
  .support-banner-inner {
    align-items: flex-start;
    gap: 8px;
  }

  .support-icon {
    margin-top: 2px;
  }

  .support-text {
    font-size: 13px;
  }
}

/* ===== SUPPORT SECTION ===== */
.support {
  background: #f4f5f7;
  padding: 48px 0 0px;
}

.support .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  position: relative;
}

.support h1 {
  grid-column: 1 / -1;
  font-size: 32px;
  font-weight: 400;
  color: #0a0b0d;
  margin: 0 0 0px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.support h1 span a {
  font-weight: 600;
}

.content-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Info card */
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e7e9ed;
}

.i-badge {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.i-badge svg {
  width: 100%;
  height: 100%;
}

.info-card .title {
  font-size: 16px;
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #5b616e;
  margin: 0;
}

.info-card a {
  color: #0052ff;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

/* Product section */
.product-section {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e7e9ed;
}

.product-header {
  font-size: 14px;
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 16px;
}

.req {
  color: #d93a00;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border: 2px solid #e7e9ed;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: #ffffff;
}

.product-card:hover {
  border-color: #0052ff;
  background: #f7f9fc;
}

.product-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.product-card input[type="radio"]:checked + .product-card,
.product-card:has(input[type="radio"]:checked) {
  border-color: #0052ff;
  background: #eaf1ff;
}

.contact-us__image-container {
  width: 64px;
  height: 64px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card strong {
  font-size: 14px;
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 4px;
  display: block;
}

.product-card small {
  font-size: 12px;
  color: #5b616e;
  line-height: 1.4;
}

/* Sidebar */
.aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.callout {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e7e9ed;
  text-align: center;
}

.callout .art {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout .art img {
  max-width: 100%;
  height: auto;
}

.callout h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0a0b0d;
  margin: 0 0 12px;
}

.callout .cards-text {
  font-size: 14px;
  line-height: 1.5;
  color: #5b616e;
  margin: 0;
}

.callout .cards-text a {
  color: #0052ff;
  text-decoration: none;
  font-weight: 600;
}

.callout .cards-text a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .support .container {
    grid-template-columns: 1fr;
  }

  .aside {
    grid-column: 1;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .support h1 {
    font-size: 24px;
  }

  /* Ensure Top support articles info card stays left-aligned on mobile */
  .info-card {
    text-align: left;
    align-items: flex-start;
  }
  .info-card .title,
  .info-card p,
  .info-card a {
    text-align: left;
  }
}

/* ===== FAQ SECTION ===== */
#coinbase-faq {
  background: #f4f5f7;
  padding: 80px 0;
}

#coinbase-faq .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

#coinbase-faq h2 {
  font-size: 36px;
  font-weight: 400;
  color: #0a0b0d;
  text-align: center;
  margin: 0 0 48px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#coinbase-faq h2 img {
  display: inline-block;
  margin-top: -8px;
  vertical-align: middle;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid #e7e9ed;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f7f9fc;
}

.faq-question span {
  font-size: 18px;
  font-weight: 600;
  color: #0a0b0d;
  flex: 1;
  padding-right: 16px;
  line-height: 1.4;
}

.faq-question span img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #5b616e;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5b616e;
}

.faq-answer p img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}

/* Remove any divider/partition lines between question and answer */
#coinbase-faq .faq-answer,
#coinbase-faq .faq-question {
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

#coinbase-faq .faq-answer::before,
#coinbase-faq .faq-answer::after {
  content: none !important;
  display: none !important;
}

#coinbase-faq .faq-question:focus {
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  #coinbase-faq {
    padding: 60px 0;
  }

  #coinbase-faq h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

/* ===== FLOATING PHONE BUTTON ===== */
.floating-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #113355;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.floating-phone:hover {
  background: #218838;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
  transform: translateY(-2px);
}

.floating-phone svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.floating-phone-number {
  white-space: nowrap;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.6),
    rgba(139, 69, 19, 0.3)
  );
}

.slide-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 600px;
  padding: 0 2rem;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--cream);
}

.hero-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 3;
}

.prev-slide,
.next-slide {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-slide:hover,
.next-slide:hover {
  background-color: var(--primary-color);
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--primary-color);
}

/* ===== SEARCH SECTION ===== */
.search-section {
  padding: 3rem 0;
  background-color: var(--light-gray);
}

.search-box {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.search-box h2 {
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.search-form {
  max-width: 800px;
  margin: 0 auto;
}

.search-input-group {
  position: relative;
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  padding: 1rem 4rem 1rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
}

.search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background-color: var(--secondary-color);
}

.search-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.filter-select {
  padding: 0.875rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-select:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* ===== SECTIONS ===== */
.trending-recipes,
.featured-chefs,
.seasonal-picks {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* ===== RECIPE CARDS ===== */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.recipe-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.recipe-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
  transform: scale(1.05);
}

.recipe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.recipe-card:hover .recipe-overlay {
  opacity: 1;
}

.view-recipe {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.view-recipe:hover {
  background-color: var(--secondary-color);
}

.recipe-info {
  padding: 1.5rem;
}

.recipe-info h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.recipe-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.rating {
  color: var(--primary-color);
  font-weight: 500;
}

.recipe-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background-color: var(--cream);
  color: var(--secondary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== CHEF CARDS ===== */
.chefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.chef-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.chef-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.chef-image {
  height: 250px;
  overflow: hidden;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-info {
  padding: 2rem;
}

.chef-info h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.chef-title {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.chef-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.chef-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===== SEASONAL PICKS ===== */
.seasonal-picks {
  background-color: var(--light-gray);
}

.seasonal-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.seasonal-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.seasonal-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.seasonal-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.seasonal-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.seasonal-recipes {
  list-style: none;
  margin-bottom: 2rem;
}

.seasonal-recipes li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.seasonal-recipes li::before {
  content: "🍽️";
  position: absolute;
  left: 0;
}

.seasonal-recipes a {
  color: var(--secondary-color);
  font-weight: 500;
  transition: var(--transition);
}

.seasonal-recipes a:hover {
  color: var(--primary-color);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 4rem 0;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  color: var(--white);
}

.newsletter-text h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: var(--cream);
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form .form-input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.newsletter-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-input:focus {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
  background-color: var(--white);
  color: var(--secondary-color);
  font-weight: 600;
}

.newsletter-form .btn:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--cream);
  line-height: 1.6;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--cream);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-newsletter h4 {
  color: var(--cream);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--cream);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie-text h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cookie-text p {
  color: var(--cream);
  margin: 0;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    justify-content: start;
    align-items: center;
    transition: var(--transition);
    padding-top: 2rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .hero-controls {
    padding: 0 1rem;
  }

  /* Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* Search */
  .search-box {
    padding: 2rem 1rem;
  }

  .search-filters {
    grid-template-columns: 1fr;
  }

  /* Recipe Grid */
  .recipes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Chef Grid */
  .chefs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Seasonal */
  .seasonal-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .seasonal-image img {
    height: 300px;
  }

  /* Newsletter */
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .search-box {
    padding: 1.5rem 0.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .recipe-info,
  .chef-info {
    padding: 1rem;
  }

  .newsletter-section {
    padding: 3rem 0;
  }

  .footer {
    padding: 2rem 0 1rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ===== ABOUT PAGE STYLES ===== */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 8rem 0 4rem;
  margin-top: 80px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--cream);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--cream);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.separator {
  opacity: 0.7;
}

.current {
  color: var(--white);
}

/* Our Story Section */
.our-story {
  padding: var(--section-padding);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text .lead {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 2rem;
}

.story-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Mission Section */
.mission-section {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.mission-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}

.mission-item h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Values Section */
.values-section {
  padding: var(--section-padding);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background-color: var(--cream);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.value-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.member-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition);
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 2rem;
  text-align: center;
}

.member-info h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.member-bio {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-gray);
  border-radius: 50%;
  color: var(--secondary-color);
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Impact Section */
.impact-section {
  padding: var(--section-padding);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: var(--border-radius);
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.impact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

.impact-text h3 {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.impact-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-item {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.highlight-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.highlight-item h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.highlight-item ul {
  list-style: none;
  padding: 0;
}

.highlight-item li {
  color: var(--gray);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.highlight-item li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-actions .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.cta-actions .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-actions .btn-outline:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-image img {
    height: 300px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .impact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .mission-item {
    padding: 1.5rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .member-info {
    padding: 1.5rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .highlight-item {
    padding: 1.5rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for keyboard navigation */
button:focus,
a:focus,
input:focus,
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --gray: #555555;
  }
}

/* Footer Contact Info Styles */
.footer-contact-info {
  margin-top: 2rem;
}

.footer-contact-info h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-info-item i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 16px;
}

.contact-info-item a {
  color: var(--cream);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: var(--white);
}

/* Footer links with icons */
.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-links li i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 16px;
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS ===== */

/* Base responsive adjustments */
@media (max-width: 1024px) {
  :root {
    --section-padding: 3rem 0;
  }

  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

/* Tablet and mobile devices */
@media (max-width: 768px) {
  :root {
    --section-padding: 2.5rem 0;
  }

  body {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  /* Header adjustments */
  .cb-header {
    height: 56px;
  }

  .cb-header .inner {
    padding: 0 16px;
    gap: 16px;
  }

  .cb-header .brand svg {
    height: 24px;
  }

  .cb-header .brand span {
    font-size: 20px !important;
  }

  /* Mobile subnav */
  .mobile-subnav {
    display: flex !important;
    background: #ffffff;
    border-bottom: 1px solid #e7e9ed;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-subnav .help-label {
    font-size: 14px;
    font-weight: 600;
    color: #0a0b0d;
  }

  .mobile-subnav .right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-subnav .locale {
    font-size: 14px;
    color: #5b616e;
    font-weight: 500;
  }

  /* Support banner */
  .support-banner {
    padding: 0 16px;
    margin: 12px auto;
  }

  .support-banner-inner {
    padding: 10px 12px;
    font-size: 12px;
  }

  .support-icon svg {
    width: 14px;
    height: 14px;
  }

  .support-close svg {
    width: 14px;
    height: 14px;
  }

  /* Support section - Mobile centered layout */
  .support {
    padding: 24px 0 32px;
    text-align: center;
  }

  .support .container {
    display: block;
    padding: 0 16px;
  }

  .support h1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.3;
  }

  .support h1 span {
    display: block;
    margin-top: 4px;
  }

  .support h1 span a {
    color: #0052ff;
    font-weight: 700;
    font-size: 20px;
  }

  .content-grid {
    gap: 16px;
  }

  .info-card {
    padding: 14px;
    gap: 10px;
    text-align: left;
  }

  .info-card .title {
    font-size: 13px;
    font-weight: 700;
  }

  .info-card p {
    font-size: 12px;
  }

  .i-badge {
    width: 20px;
    height: 20px;
  }

  .product-section {
    padding: 16px;
  }

  .product-header {
    font-size: 12px;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: left;
  }

  /* Product grid - 2 columns on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .product-card {
    padding: 12px 8px;
    min-height: 140px;
  }

  .contact-us__image-container {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }

  .product-card strong {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 4px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card small {
    font-size: 11px;
    line-height: 1.3;
  }

  /* Sidebar - stack below */
  .aside {
    margin-top: 16px;
    gap: 12px;
  }

  .callout {
    padding: 16px;
    text-align: center;
  }

  .callout .art {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .callout h3 {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .callout .cards-text {
    font-size: 12px;
  }

  /* FAQ Section */
  #coinbase-faq {
    padding: 32px 0;
  }

  #coinbase-faq .container {
    padding: 0 16px;
  }

  #coinbase-faq h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .faq-item {
    margin-bottom: 12px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-question span {
    font-size: 14px;
    font-weight: 600;
  }

  .faq-question svg {
    width: 18px;
    height: 18px;
  }

  .faq-answer p {
    padding: 0 16px 14px;
    font-size: 13px;
  }

  /* Floating phone - right corner on mobile */
  .floating-phone {
    bottom: 16px;
    right: 16px;
    left: auto;
    transform: none;
    background: #0052ff;
    padding: 12px 20px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
  }

  .floating-phone:hover {
    background: #0041cc;
  }

  .floating-phone svg circle {
    fill: transparent !important;
  }

  .floating-phone svg path {
    fill: #ffffff !important;
  }

  .floating-phone-number {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
  }

  /* Buttons */
  .btn,
  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Forms */
  input,
  textarea,
  select {
    font-size: 14px;
    padding: 10px;
  }

  /* Cards */
  .recipe-card,
  .category-card {
    margin-bottom: 1rem;
  }

  /* Grid layouts */
  .recipe-grid,
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Search section */
  .search-box {
    padding: 2rem 1.5rem;
  }

  .search-input-group {
    flex-direction: column;
    gap: 1rem;
  }

  .search-input-group input {
    width: 100%;
  }

  .search-input-group button {
    width: 100%;
  }

  /* Hero section */
  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .hero-controls {
    padding: 0 1rem;
  }

  .prev-slide,
  .next-slide {
    width: 40px;
    height: 40px;
  }

  /* Footer */
  .footer {
    padding: 2rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  :root {
    --section-padding: 2rem 0;
  }

  body {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  h4 {
    font-size: 1rem;
  }

  /* Header */
  .cb-header {
    height: 56px;
  }

  .cb-header .inner {
    padding: 0 12px;
  }

  .cb-header .brand svg {
    height: 24px;
  }

  .cb-header .btn {
    padding: 0 12px;
    font-size: 14px;
    height: 36px;
  }

  /* Support section */
  .support h1 {
    font-size: 18px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .product-card {
    padding: 12px 8px;
  }

  .callout {
    padding: 16px;
  }

  /* FAQ */
  #coinbase-faq h2 {
    font-size: 24px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-question span {
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 16px 16px;
    font-size: 13px;
  }

  /* Buttons */
  .btn,
  .btn-primary,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Forms */
  input,
  textarea,
  select {
    font-size: 13px;
    padding: 8px;
  }

  /* Hero */
  .hero {
    height: 50vh;
    min-height: 350px;
  }

  .slide-content {
    padding: 0 1rem;
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .prev-slide,
  .next-slide {
    width: 35px;
    height: 35px;
  }

  .hero-indicators {
    bottom: 1rem;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 0;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Landscape mode adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 80vh;
  }

  .support {
    padding: 24px 0 32px;
  }

  #coinbase-faq {
    padding: 40px 0;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  button,
  a,
  input[type="submit"],
  input[type="button"] {
    min-height: 44px;
    min-width: 44px;
  }

  /* Remove hover effects on touch devices */
  .product-card:hover {
    border-color: #e7e9ed;
    background: #ffffff;
  }

  .faq-question:hover {
    background: transparent;
  }

  /* Larger tap targets for navigation */
  .cb-header .nav a {
    padding: 12px 16px;
  }

  .cb-header .action {
    width: 44px;
    height: 44px;
  }
}

/* Print styles */
@media print {
  .cb-header,
  .floating-phone,
  .support-banner,
  .footer,
  button {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: black;
    background: white;
  }

  .support,
  #coinbase-faq {
    background: white;
  }

  .faq-item,
  .product-card,
  .callout {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
}
