/* ==============================================
   REBELLION RUM WEBSITE - MAIN CSS
   ==============================================
   Consolidated styles for the Pug-based website
   Using Tailwind CDN for utilities + custom styles
   ============================================== */

/* Global body and html styling to fix white overflow on bounce effect */
html,
body {
  background-color: #000000;
  margin: 0;
  padding: 0;
}

#main-content {
  background-color: #ffffff;
}

/* Ensure the main app container has a light background for content */
#app {
  background-color: #ffffff;
  min-height: 100vh;
}

/* Account for fixed navbar */
.home {
  padding-top: 0;
  /* Hero image should go to top */
}

/* ==============================================
   NAVBAR COMPONENT
   ============================================== */

/* Navbar base styles */
#navbar {
  position: fixed;
  width: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 40;
}

/* Print styles for navbar */
.print-hidden {
  display: block;
}

@media print {
  .print-hidden {
    display: none !important;
  }
}

/* Navbar content container */
#navbar-content {
  transition: all 0.3s ease-in-out;
}

/* Navbar logo transitions */
#navbar-logo {
  transition: all 0.3s ease-in-out;
  max-width: 100%;
  object-fit: contain;
}

/* Responsive logo sizing - prevents distortion on small screens */
@media (max-width: 480px) {
  .h-\[70px\] {
    max-height: 50px !important;
  }

  .h-\[50px\] {
    max-height: 40px !important;
  }
}

@media (max-width: 360px) {
  .h-\[70px\] {
    max-height: 45px !important;
  }

  .h-\[50px\] {
    max-height: 35px !important;
  }
}

/* Ensure logo container doesn't force stretching */
.navbar-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

/* Background color utilities for navbar */
.bg-transparent {
  background-color: transparent;
}

.bg-black {
  background-color: #000000;
}

/* Height utilities for dynamic navbar sizing */
.h-20 {
  height: 5rem;
  /* 80px */
}

.h-\[90px\] {
  height: 90px;
}

.h-\[70px\] {
  height: 70px;
}

.h-\[50px\] {
  height: 50px;
}

/* Padding utilities for logo sizing */
.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* Transition utilities */
.transition-all {
  transition: all 0.3s ease-in-out;
}

.duration-300 {
  transition-duration: 0.3s;
}

/* ==============================================
   UTILITY CLASSES
   ============================================== */

/* Font Family Utilities */
.font-oswald {
  font-family: 'Oswald', serif;
}

.font-domine {
  font-family: 'Domine', serif;
}

/* Line Clamp Utilities for text truncation */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Container utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}



/* ==============================================
   PAGE BANNER COMPONENT
   ============================================== */
.page-banner-container {
  /* Full container for hero and content */
}

.page-banner-hero {
  background-size: cover;
  background-position: center;
  width: 100%;
}

.page-banner-content {
  padding: 2rem 1rem;
  text-align: center;
  color: #333;
}

.page-banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.banner-subtitle {
  font-size: 1.5rem;
  opacity: 0.8;
  margin: 0;
  color: #666;
}

/* ==============================================
   PRODUCT GRID COMPONENT
   ============================================== */
.product-grid {
  width: 100%;
  margin: 2rem 0;
}

.product-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Grid system for featured products */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* Small screens and up */
@media (min-width: 640px) {
  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Large screens and up */
@media (min-width: 1024px) {
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg-gap-12 {
    gap: 3rem;
  }

  .lg-w-96 {
    width: 24rem;
  }

  .lg-w-56 {
    width: 14rem;
  }

  .lg-h-56 {
    height: 14rem;
  }

  .lg-mb-8 {
    margin-bottom: 2rem;
  }

  .lg-w-40 {
    width: 10rem;
  }

  .lg-h-40 {
    height: 10rem;
  }

  .lg-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg-mb-4 {
    margin-bottom: 1rem;
  }

  .lg-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .lg-mb-6 {
    margin-bottom: 1.5rem;
  }

  .lg-max-w-sm {
    max-width: 24rem;
  }
}

/* Extra large screens and up */
@media (min-width: 1280px) {
  .xl-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Vue-style product grid */
.product-item {
  /* Remove any card styling - keep it simple */
}

.product-image-container {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.2s ease;
}

.product-image:hover {
  opacity: 0.8;
}

.product-info {
  /* Simple container without card styling */
}

.product-title {
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.product-title a {
  text-decoration: none;
  color: inherit;
}

.product-title a:hover {
  color: #4f46e5;
}

.product-price {
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  text-align: left;
}

.product-specs {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Loading, Error, and No Products States */
.loading-state,
.error-state,
.no-products-state {
  text-align: center;
  padding: 3rem 1rem;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0.75rem 0;
}

.product-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-content {
  padding: 1.5rem;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.product-card-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  flex: 1;
  margin-right: 1rem;
}

.product-card-name:hover {
  color: #8B4513;
}

.product-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.product-volume,
.product-abv,
.product-price {
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.product-price {
  background: #8B4513;
  color: white;
  font-weight: 600;
}

.product-description {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.product-stock {
  font-size: 0.875rem;
  font-weight: 500;
}

.in-stock {
  color: #10b981;
}

.out-of-stock {
  color: #ef4444;
}

.low-stock {
  color: #f59e0b;
}

/* ==============================================
   REBEL BUTTON COMPONENT
   ============================================== */
.rebel-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: black;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Oswald', serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rebel-button:hover {
  background-color: black;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rebel-button-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.rebel-button-medium {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.rebel-button-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Rebel button variants */
.rebel-button-orange {
  background-color: #f97316;
  color: white;
  border-color: #f97316;
}

.rebel-button-orange:hover {
  background-color: #ea580c;
  border-color: #ea580c;
  color: white;
}

/* ==============================================
   INFO CARD COMPONENT
   ============================================== */
.info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.info-card-primary {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  color: white;
}

.info-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card-header {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Oswald', serif;
}

.info-card-content p {
  line-height: 1.6;
  margin: 0;
}

/* ==============================================
   PROMO SECTION COMPONENT
   ============================================== */

.promo-section-title {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  font-family: 'Inter', sans-serif;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .promo-section-title {
    font-size: 4.5rem;
  }
}

.promo-section-description {
  font-size: 30px;
  line-height: 36px;
  color: oklch(0.967 0.003 264.542);
  font-family: 'Domine', serif;
  font-weight: 400;
}

/* ==============================================
   CALLOUT BOX COMPONENT
   ============================================== */
.callout-box {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.callout-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-box-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 600px;
  padding: 5.25rem;
  text-align: center;
  margin: 0 auto;
}

.callout-box-header {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Oswald', serif;
}

.callout-box-body {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.callout-box-body p {
  margin-bottom: 1rem;
}

.callout-box-body strong {
  font-weight: 600;
}

.callout-box-cta .rebel-button {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1f2937;
}

.callout-box-cta .rebel-button:hover {
  background-color: white;
  transform: translateY(-2px);
}

/* ==============================================
   PARALLAX PROMO COMPONENT
   ============================================== */
.parallax-promo {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.parallax-promo-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax-promo-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  padding: 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.parallax-promo-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  color: white;
  min-height: 80vh;
}

.parallax-promo-content.text-left {
  justify-content: flex-start;
}

.parallax-promo-text {
  flex: 1;
  max-width: 600px;
}

.parallax-promo-title {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: 'Domine', serif;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .parallax-promo-title {
    font-size: 4.5rem;
  }
}

.parallax-promo-description {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 2rem;
  font-family: 'Domine', serif;
  font-weight: 400;
  color: oklch(0.967 0.003 264.542);
}

.parallax-promo-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.parallax-promo-image img {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid white;
}

/* ==============================================
   HOME PAGE SPECIFIC STYLES
   ============================================== */

/* Featured Products Section */
.featured-products {
  padding: 4rem 0;
  background: #f8f9fa;
}

.featured-products h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #2c3e50;
  font-family: 'Oswald', serif;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.view-all {
  text-align: center;
  padding: 2rem 0;
}

/* Center align the featured products grid for exactly 1 or 3 columns */
.featured-products .product-grid>.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .featured-products .product-grid>.grid {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }
}

/* Differentiators Section */
.differentiators {
  padding: 4rem 0;
}

.differentiators h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #2c3e50;
  font-family: 'Oswald', serif;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Community Section */
.community {
  padding: 4rem 0;
  background: #f8f9fa;
}

.community h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #2c3e50;
  font-family: 'Oswald', serif;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #8B4513;
  font-family: 'Oswald', serif;
}

.community-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #555;
}

.community-image {
  display: flex;
  align-items: center;
}

/* Utility classes for common image styles and spacing */
.w-full {
  width: 100%;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.flex {
  display: flex;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.sm-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lg-max-w-7xl {
  max-width: 80rem;
}

.lg-px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.overflow-x-auto {
  overflow-x: auto;
}

.min-w-max {
  min-width: max-content;
}

.flex-none {
  flex: none;
}

.w-80 {
  width: 20rem;
}

.w-48 {
  width: 12rem;
}

.h-48 {
  height: 12rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.w-32 {
  width: 8rem;
}

.h-32 {
  height: 8rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.max-w-xs {
  max-width: 20rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.left-0 {
  left: 0;
}

.top-0 {
  top: 0;
}

.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.w-16 {
  width: 4rem;
}

.object-cover {
  object-fit: cover;
}

.overflow-hidden {
  overflow: hidden;
}

.bg-black {
  background-color: #000;
}

.bg-opacity-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-opacity-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-white {
  color: #fff;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.leading-relaxed {
  line-height: 1.625;
}

.font-light {
  font-weight: 300;
}

.transition-colors {
  transition: color 0.15s ease-in-out;
}

.block {
  display: block;
}

.text-center {
  text-align: center;
}

.justify-center {
  justify-content: center;
}

.flex-col {
  flex-direction: column;
}

.max-w-4xl {
  max-width: 56rem;
}

/* Hover effects for navigation */
.hover-text-amber-400:hover {
  color: #f59e0b;
}

/* Font family utilities */
.font-inter {
  font-family: 'Inter', sans-serif;
}

.font-domine {
  font-family: 'Domine', serif;
}

/* Text size utilities */
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

/* Font weight utilities */
.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

/* Letter spacing utilities */
.tracking-tight {
  letter-spacing: -0.025em;
}

/* Text color utilities */
.text-gray-100 {
  color: #f3f4f6;
}

/* Responsive text sizes */
@media (min-width: 640px) {
  .sm-text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

/* Small screens and up */
@media (min-width: 640px) {
  .sm-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Large screens and up */
@media (min-width: 1024px) {
  .lg-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg-max-w-5xl {
    max-width: 64rem;
  }

  .lg-max-w-6xl {
    max-width: 72rem;
  }

  .lg-max-w-7xl {
    max-width: 80rem;
  }

  /* Additional utility classes for ParallaxPromo component */
  .bg-cover {
    background-size: cover;
  }

  .bg-center {
    background-position: center;
  }

  .bg-no-repeat {
    background-repeat: no-repeat;
  }

  .bg-fixed {
    background-attachment: fixed;
  }

  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .gap-12 {
    gap: 3rem;
  }

  .flex-1 {
    flex: 1;
  }

  .order-1 {
    order: 1;
  }

  .order-2 {
    order: 2;
  }

  .min-h-\[80vh\] {
    min-height: 80vh;
  }

  .max-w-xl {
    max-width: 36rem;
  }

  .p-8 {
    padding: 2rem;
  }

  .rounded-lg {
    border-radius: 0.5rem;
  }

  .mt-8 {
    margin-top: 2rem;
  }

  .mb-8 {
    margin-bottom: 2rem;
  }

  .border-4 {
    border-width: 4px;
  }

  .border-white {
    border-color: #fff;
  }

  @media (min-width: 1024px) {
    .lg-flex-row {
      flex-direction: row;
    }

    .lg-ml-0 {
      margin-left: 0;
    }

    .lg-mr-auto {
      margin-right: auto;
    }

    .lg-mr-0 {
      margin-right: 0;
    }

    .lg-ml-auto {
      margin-left: auto;
    }
  }
}

/* Pepito Section */
.pepito-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
}

.pepito-overlay {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.85) 0%, rgba(160, 82, 45, 0.85) 100%);
  padding: 4rem 0;
  width: 100%;
  height: 100%;
}

.pepito-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.pepito-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pepito-circle-container {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  position: relative;
}

.pepito-circle-container:hover {
  transform: scale(1.05);
}

.pepito-circle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pepito-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Oswald', serif;
}

.pepito-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ==============================================
   BOTANICAL CIRCLES
   ============================================== */

.botanical-circle {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botanical-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Add a subtle border to help define the circle */
.botanical-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
}

/* ==============================================
   HOVER EFFECTS
   ============================================== */

/* Group hover effects for recipe cards */
.group:hover .group-hover-text-amber-400 {
  color: #f59e0b;
}

.group:hover .group-hover-ring-2 {
  box-shadow: 0 0 0 2px currentColor;
}

.group:hover .group-hover-ring-amber-700 {
  box-shadow: 0 0 0 2px #b45309;
}

/* Focus effects */
.focus-outline-none:focus {
  outline: none;
}

.focus-ring-2:focus {
  box-shadow: 0 0 0 2px currentColor;
}

.focus-ring-amber-700:focus {
  box-shadow: 0 0 0 2px #b45309;
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .page-banner-content {
    padding: 1.5rem 1rem;
  }

  .page-banner-content h1 {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.2rem;
  }

  .product-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pepito-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .pepito-circle-container {
    width: 300px;
    height: 300px;
    border: 6px solid white;
  }

  .parallax-promo-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .parallax-promo-title {
    font-size: 2.5rem;
  }

  .parallax-promo-description {
    font-size: 1.2rem;
  }

  .callout-box {
    min-height: 500px;
  }

  .callout-box-content {
    padding: 3.25rem;
  }

  .callout-box-header {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem !important;
  }
}

/* ==============================================
   ABOUT PAGE SECTION
   ============================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.about-section.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.about-section.reverse .about-content {
  direction: ltr;
}

.about-image {
  display: flex;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #8B4513;
}

.about-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {

  .about-section,
  .about-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .container {
    padding: 2rem 1rem;
  }
}

/* ==============================================
   CONTACT PAGE SECTION
   ============================================== */

.contact-section {
  margin-bottom: 4rem;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #8B4513;
  text-align: center;
}

.intro-text {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.social-links {
  text-align: center;
  margin-top: 3rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-icon {
  color: #e67e22;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f9f9f9;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon.facebook:hover {
  color: #1877f2;
}

.social-icon.instagram:hover {
  color: #e4405f;
}

.social-icon.tiktok:hover {
  color: #000000;
}

.phone-link {
  color: #e67e22;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #d35400;
  text-decoration: underline;
}

.phone-icon {
  margin-right: 0.5rem;
}

.visit-note,
.contact-note,
.hours-note,
.social-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
}

.social-note {
  text-align: center;
  margin-top: 1rem;
}

.map-section {
  margin: 4rem 0;
  text-align: center;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #8B4513;
}

.map-placeholder {
  background-color: #f5f5f5;
  border: 2px dashed #ccc;
  padding: 3rem;
  border-radius: 8px;
  color: #666;
}

.map-placeholder p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.faq-section {
  margin-top: 4rem;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #8B4513;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 2rem;
}

.faq-item {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #e67e22;
}

.faq-question {
  font-size: 1.1rem;
  color: #e67e22;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-answer {
  color: #333;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .social-icons {
    gap: 1rem;
  }
}

/* ==============================================
   FOOTER SECTION
   ============================================== */

.footer-section {
  background-color: #000000;
  color: #ffffff;
  padding: 3rem 0 1.5rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 4fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo-section {
  grid-column: span 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-height: 6rem;
  height: auto;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
}

.footer-section-title {
  font-family: 'Oswald', serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-contact-info {
  margin-top: 1rem;
  border-top: 1px solid #374151;
  padding-top: 1rem;
}

.footer-contact-info p {
  margin: 0.25rem 0;
  font-size: 0.875rem;
}

.footer-phone a,
.footer-email a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
  color: #ffffff;
}

.footer-address {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-subscribe-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-email-form {
  display: flex;
  border-bottom: 1px solid #374151;
  padding-bottom: 0.5rem;
}

.footer-email-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
}

.footer-email-input::placeholder {
  color: #9ca3af;
}

.footer-email-submit {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.footer-email-submit:hover {
  color: #f59e0b;
}

.footer-arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  flex: 1;
  transition: border-color 0.2s ease;
}

.footer-badge:hover {
  border-color: #6b7280;
}

.footer-badge-number {
  font-family: 'Oswald', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-badge-icon {
  margin-bottom: 0.75rem;
}

.sustainability-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
}

.footer-badge-title {
  font-family: 'Oswald', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-badge-subtitle {
  font-family: 'Oswald', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-badge-credit {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  color: #d1d5db;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: #ffffff;
}

.footer-social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* ==============================================
   FOOTER RESPONSIVE DESIGN
   ============================================== */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer-logo-section {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-logo img {
    max-height: 4rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
  }

  .footer-subscribe-section {
    text-align: center;
  }

  .footer-badges {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-badge {
    min-width: 200px;
  }

  .footer-section {
    padding: 2.5rem 0;
  }

  .footer-badges {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .footer-badge {
    padding: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==============================================
   PROCESS PAGE STYLES
   ============================================== */

.process-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.intro-section {
  text-align: center;
  margin-bottom: 4rem;
}

.lead {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: #e67e22;
  left: 50px;
  top: 0;
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  margin-bottom: 5rem;
}

.step-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e67e22;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding-left: 2rem;
}

.step-content h2 {
  margin-bottom: 1rem;
  color: #e67e22;
  font-size: 1.8rem;
}

.step-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.local-highlight,
.tech-highlight,
.innovation-highlight,
.sustainability-highlight,
.craft-highlight {
  background: #f8f9fa;
  border-left: 4px solid #e67e22;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
}

.local-highlight strong,
.tech-highlight strong,
.innovation-highlight strong,
.sustainability-highlight strong,
.craft-highlight strong {
  color: #e67e22;
}

.step-content img {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-step-number {
  display: none;
  color: #e67e22;
  font-weight: bold;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .process-timeline::before {
    display: none;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.8rem;
  }

  .mobile-step-number {
    display: none;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
  }

  .step-content h2 {
    margin-top: 0;
    line-height: 1.2;
  }

  .step-content {
    padding-left: 0;
    padding-top: 1rem;
  }
}

/* ==============================================
   ANIMATION UTILITIES
   ============================================== */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.duration-300 {
  transition-duration: 0.3s;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.translate-x-0 {
  transform: translateX(0);
}

.translate-x-full {
  transform: translateX(100%);
}

.text-green-400 {
  color: #4ade80;
}

.text-red-400 {
  color: #f87171;
}

.mt-2 {
  margin-top: 0.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* ==============================================
   404 ERROR PAGE
   ============================================== */
.error-page {
  min-height: calc(100vh - 120px);
  /* Account for navbar/footer */
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.error-container {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.error-title {
  font-size: 6rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1;
}

.error-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.75rem;
}

.error-description {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.625;
  font-size: 1rem;
}

.error-actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .error-title {
    font-size: 4rem;
  }

  .error-subtitle {
    font-size: 1.125rem;
  }

  .error-page {
    padding: 1rem 0.5rem;
  }
}

/* ==============================================
   NEWSLETTER UNSUBSCRIBE PAGE
   ============================================== */
.newsletter-unsubscribe-page {
  background-color: #fafafa;
}

.newsletter-unsubscribe-page .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Success Section */
.success-section {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.success-icon-container {
  margin-bottom: 2rem;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #dcfce7;
  border-radius: 50%;
}

.success-section h2 {
  font-size: 2.5rem;
  color: #8B4513;
  margin-bottom: 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.1rem;
  color: #6b7280;
  font-style: italic;
}

/* Stay Connected Section */
.stay-connected-section {
  margin-bottom: 4rem;
}

.stay-connected-section h2 {
  font-size: 2rem;
  color: #8B4513;
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.connection-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.cta-link {
  display: inline-block;
  margin-top: 1rem;
  color: #8B4513;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: #A0522D;
}

.address {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0.5rem 0;
}

.sustainability-note {
  font-size: 0.9rem;
  color: #059669;
  font-weight: 500;
}

/* Social Section */
.social-section {
  margin-bottom: 4rem;
  text-align: center;
}

.social-section h2 {
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.social-intro {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-section .social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #6b7280;
  transition: all 0.3s ease;
  border: 2px solid #f3f4f6;
  min-width: 120px;
}

.social-section .social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-section .social-icon.facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
}

.social-section .social-icon.instagram:hover {
  color: #e4405f;
  border-color: #e4405f;
}

.social-section .social-icon.tiktok:hover {
  color: #000000;
  border-color: #000000;
}

.social-svg {
  width: 28px;
  height: 28px;
}

.social-section .social-icon span {
  font-size: 0.9rem;
  font-weight: 600;
}

.social-section .social-note {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
}

/* Contact Section */
.newsletter-unsubscribe-page .contact-section {
  margin-bottom: 4rem;
}

.newsletter-unsubscribe-page .contact-section h2 {
  font-size: 2rem;
  color: #8B4513;
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Oswald', sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #f3f4f6;
  min-width: 350px;
}

.contact-item h3 {
  font-size: 1.2rem;
  color: #8B4513;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: #8B4513;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  word-break: break-all;
}

.contact-link:hover {
  color: #A0522D;
}

.contact-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0.5rem 0 0 0;
}

/* Navigation Section */
.navigation-section {
  text-align: center;
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #6b7280;
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.home-button:hover {
  background: #f9fafb;
  border-color: #8B4513;
  color: #8B4513;
}

.button-icon {
  width: 20px;
  height: 20px;
}

/* Success Page Icon Utilities */
.h-12 {
  height: 3rem;
}

.w-12 {
  width: 3rem;
}

.text-green-600 {
  color: #059669;
}

/* Responsive Design for Newsletter Unsubscribe */
@media (max-width: 768px) {
  .newsletter-unsubscribe-page .container {
    padding: 2rem 1rem;
  }

  .success-section h2 {
    font-size: 2rem;
  }

  .connection-methods {
    grid-template-columns: 1fr;
  }

  .social-section .social-icons {
    gap: 1rem;
  }

  .social-section .social-icon {
    min-width: 100px;
    padding: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    min-width: auto;
  }
}

/* VISIT US PAGE */
.visit-us-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.visit-us-page .intro-section {
  text-align: center;
  margin-bottom: 4rem;
}

.visit-us-page .lead {
  font-size: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: #555;
}

.visit-us-page .visit-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.visit-us-page .note {
  font-style: italic;
  opacity: 0.8;
  font-size: 0.9rem;
}

.visit-us-page .directions {
  font-weight: 600;
  color: #8B4513;
}

.visit-us-page .experience-section {
  margin-bottom: 4rem;
}

.visit-us-page .experience-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #8B4513;
}

.visit-us-page .experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.visit-us-page .exclusive-card {
  text-align: center;
}

.visit-us-page .exclusive-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: white;
}

.visit-us-page .abv {
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 1rem;
}

.visit-us-page .practical-info {
  margin-bottom: 4rem;
}

.visit-us-page .practical-info h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #8B4513;
}

.visit-us-page .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.visit-us-page .contact-section {
  margin-bottom: 4rem;
}

.visit-us-page .contact-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #8B4513;
}

.visit-us-page .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Distillery Map Component */
.map-section {
  margin-bottom: 4rem;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #8B4513;
  text-align: center;
}

.location-info {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.location-info p {
  margin-bottom: 0.8rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-fallback {
  text-align: center;
  padding: 1rem;
  background-color: #f9f9f9;
}

/* Responsive Design for Visit Us */
@media (max-width: 768px) {

  .visit-us-page .visit-info-grid,
  .visit-us-page .experience-grid,
  .visit-us-page .info-grid,
  .visit-us-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .visit-us-page .container {
    padding: 2rem 1rem;
  }
}

/* ==============================================
   STRIPE DEMO PAGE
   ============================================== */
.stripe-demo-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 80vh;
}

.stripe-demo-page .header {
  text-align: center;
  margin-bottom: 3rem;
}

.stripe-demo-page .title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.stripe-demo-page .description {
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.stripe-demo {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.demo-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2d3748;
  font-family: 'Oswald', sans-serif;
}

.demo-status {
  color: #2f855a;
  padding: 1rem;
  border: 1px solid #c6f6d5;
  border-radius: 0.25rem;
  background-color: #f0fff4;
}

.success-message {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.key {
  display: inline-block;
  padding: 0.5rem;
  margin-top: 0.5rem;
  background-color: #edf2f7;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.875rem;
  color: #2d3748;
}

.demo-info {
  margin-top: 1rem;
}

.environment-info {
  font-size: 0.875rem;
  color: #4a5568;
  margin-top: 0.5rem;
}

.implementation-details {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #f7fafc;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

.details-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3748;
  font-family: 'Oswald', sans-serif;
}

.code-explanation {
  font-size: 0.95rem;
  line-height: 1.6;
}

.implementation-list {
  list-style: decimal;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.implementation-list li {
  margin-bottom: 0.75rem;
}

.url-list {
  list-style: disc;
  margin-left: 1.5rem;
  margin-top: 0.25rem;
}

.url-list li {
  margin-bottom: 0.25rem;
}

code {
  background-color: #edf2f7;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.9em;
  color: #2d3748;
}

.api-reference {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.375rem;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}

.api-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.api-description {
  margin-bottom: 1rem;
  color: #374151;
}

.code-block {
  background-color: #1f2937;
  color: white;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-family: monospace;
  font-size: 0.875rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.endpoint {
  color: #60a5fa;
  margin-bottom: 0.25rem;
}

.endpoint-description {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.response-label {
  color: #fbbf24;
  margin-bottom: 0.25rem;
}

.response-code {
  color: #34d399;
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 0.5rem 0;
  margin: 0;
}

.testing-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.375rem;
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
}

.testing-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.testing-note p {
  color: #78350f;
  margin: 0;
}

.demo-actions {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .stripe-demo-page {
    padding: 1rem 0.5rem;
  }

  .stripe-demo-page .title {
    font-size: 1.75rem;
  }

  .stripe-demo {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .implementation-details {
    padding: 1rem;
  }

  .code-block {
    font-size: 0.75rem;
    padding: 0.5rem;
  }
}

/* ==============================================
   PROSE STYLES (TERMS & PRIVACY PAGES)
   ============================================== */

.prose {
  color: #374151;
}

.prose h2 {
  border-bottom: 2px solid #f59e0b;
  padding-bottom: 0.5rem;
}

.prose a {
  transition: color 0.2s ease;
}

.prose ul li {
  margin-bottom: 0.5rem;
}

/* ==============================================
   RECIPE PAGE STYLES
   ============================================== */

/* Recipe page container */
.recipe-page {
  min-height: 100vh;
  background-color: #ffffff;
}

/* Desktop Layout */
.recipe-desktop-layout {
  display: none;
  /* Hidden by default, shown on desktop */
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.recipe-image-section {
  position: relative;
  height: 100vh;
}

.recipe-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recipe-content-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.recipe-content-wrapper {
  max-width: 600px;
}

.recipe-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.recipe-description {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.recipe-section {
  margin-bottom: 1.5rem;
}

.recipe-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.recipe-ingredients-list,
.recipe-instructions-list {
  margin: 0;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.recipe-ingredients-list {
  list-style-type: disc;
}

.recipe-instructions-list {
  list-style-type: decimal;
}

.recipe-ingredients-list li,
.recipe-instructions-list li {
  margin-bottom: 0.25rem;
}

.recipe-extra-info {
  margin-bottom: 1rem;
}

.recipe-extra-item {
  font-size: 0.875rem;
  color: #4a5568;
  margin-bottom: 0.25rem;
}

/* Mobile Layout */
.recipe-mobile-layout {
  display: block;
  /* Shown by default */
}

.recipe-mobile-hero {
  position: relative;
  width: 100%;
  height: 16rem;
  /* 256px */
}

.recipe-mobile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recipe-mobile-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.recipe-mobile-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.recipe-mobile-description {
  font-size: 1rem;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.recipe-mobile-content {
  background-color: white;
  padding: 1.5rem;
  margin-top: -2rem;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.recipe-mobile-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.recipe-mobile-ingredients,
.recipe-mobile-instructions {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.recipe-mobile-ingredients {
  list-style-type: disc;
}

.recipe-mobile-instructions {
  list-style-type: decimal;
}

.recipe-mobile-extra {
  margin-bottom: 0.5rem;
}

.recipe-mobile-extra-item {
  font-size: 0.875rem;
  color: #4a5568;
  margin-bottom: 0.25rem;
}

/* Recipe Not Found */
.recipe-not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.not-found-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #2d3748;
}

.not-found-description {
  color: #4a5568;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.not-found-button {
  background-color: #b45309;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}

.not-found-button:hover {
  background-color: #92400e;
}

/* Media Queries */
@media (min-width: 768px) {
  .recipe-desktop-layout {
    display: grid;
    /* Show desktop layout on tablet and up */
  }

  .recipe-mobile-layout {
    display: none;
    /* Hide mobile layout on tablet and up */
  }
}