
:root {
  /* Color Palette */
  --wood-50: #fcf9f5;
  --wood-100: #f6efe6;
  --wood-200: #ebdec9;
  --wood-300: #dec4a0;
  --wood-800: #7d432f;
  --wood-900: #65382a;

  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;

  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;

  --forest-50: #f0fdf4;
  --forest-100: #dcfce7;
  --forest-200: #bbf7d0;
  --forest-600: #16a34a;
  --forest-700: #15803d;
  --forest-900: #14532d;

  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-900: #1e3a8a;

  --white: #ffffff;

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Merriweather', serif;
}

/* Base Reset */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--stone-800);
  background-color: var(--wood-50);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  margin-top: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}

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

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

.hidden {
  display: none !important;
}

/* Responsive Visibility Utilities */
.desktop-only {
  display: none;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--wood-200);
}

.header-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background-color: var(--orange-600);
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--white);
  display: flex;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--wood-900);
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--stone-500);
}

/* Navigation */
.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stone-600);
  transition: color 0.2s;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--wood-800);
}

.nav-link.active {
  color: var(--orange-600);
  border-bottom-color: var(--orange-600);
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--wood-100);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  color: var(--wood-900);
  font-weight: 700;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--stone-700);
  display: block;
}

/* Mobile Menu */
#mobile-menu {
  background-color: var(--white);
  border-top: 1px solid var(--stone-100);
  position: absolute;
  width: 100%;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}

.mobile-nav a {
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-weight: 500;
  color: var(--stone-700);
}

.mobile-nav a:hover {
  background-color: var(--orange-50);
  color: var(--orange-600);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: var(--orange-600);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--orange-700);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--wood-900);
}

.btn-secondary:hover {
  background-color: var(--stone-100);
}

.btn-dark {
  background-color: var(--wood-900);
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  background-color: var(--wood-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.4;
  mix-blend-mode: overlay; */
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--wood-100);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* Sections */
.intro-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--stone-600);
  font-size: 1.125rem;
  line-height: 1.75;
}

.intro-section h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--wood-900);
  margin-bottom: 1rem;
}

.intro-section  p {
  margin-bottom: 1.5rem;
}

/* Feature Grid */
.grid-features {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}

.feature-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--stone-100);
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.feature-icon {
  background-color: var(--wood-100);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: var(--wood-800);
}

.feature-title {
  font-size: 1.25rem;
  color: var(--wood-900);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.feature-text {
  color: var(--stone-600);
}

/* About Section */
.about-section {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--stone-100);
  margin-bottom: 3rem;
}

.about-section h2 {
  color: var(--wood-900);
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-text {
  color: var(--stone-700);
  line-height: 1.7;
}
.about-text p {
  margin-bottom: 1rem;
}

/* Notice Section */
.notice-section {
  background-color: var(--orange-500);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--stone-100);
  margin-bottom: 3rem;
}

.notice-section h2 {
  color: var(--white);
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.notice-text {
  color: var(--white);
  line-height: 1.7;
}
.notice-text p {
  text-align: center;
  margin-bottom: 1rem;
}

/* WINZ Box */
.winz-box {
  background: linear-gradient(to bottom right, var(--blue-50), var(--white));
  border-left: 4px solid var(--blue-500);
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 2rem 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.winz-title {
  color: var(--blue-900);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  background-color: var(--blue-600);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.winz-callout {
  background-color: rgba(219, 234, 254, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--blue-100);
  font-weight: 500;
}

/* Ready to order? */
.ready-to-order {
  text-align: center;
  margin-top: 4rem;
}

.ready-to-order p {
  font-size: 1.125rem;
  color: var(--stone-700);
  margin-bottom: 1rem;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  background-color: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--wood-200);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}

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

.pricing-table th {
  background-color: var(--wood-100);
  color: var(--wood-900);
  padding: 1rem;
  border-bottom: 1px solid var(--wood-200);
  font-weight: 600;
  text-align: center;
}

.pricing-table td {
  padding: 1rem;
  color: var(--stone-700);
  border-bottom: 1px solid var(--wood-100);
  text-align: center;
}

.pricing-table td:first-child, .pricing-table th:first-child {
  font-weight: 600;
  color: var(--wood-800);
  text-align: left;
}

.pricing-table tr:nth-child(even) {
  background-color: var(--stone-50);
}

.pricing-table tr:hover {
  background-color: var(--stone-100);
}

.pricing-table .out-of-stock {
  display: block;
  font-size: 0.75rem;
  color: #FF0000;
  font-weight: normal;
  text-transform: uppercase;
}

/* Pricing Cards (Mobile) */
.pricing-cards-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--wood-200);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.mobile-card h3 {
  border-bottom: 1px solid var(--wood-100);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: var(--wood-900);
  font-family: var(--font-sans);
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.pricing-cards-mobile .out-of-stock {
  display: block;
  font-size: 0.75rem;
  color: #FF0000;
  font-weight: normal;
  text-transform: uppercase;
}

/* Bagged Items Grid */
.grid-bagged-items {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.bagged-items-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--stone-100);
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}

.bagged-items-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.bagged-items-card h3 {
  font-size: 1.25rem;
  color: var(--wood-900);
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

.bagged-items-card .bagged-items-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-600);
  margin: 0.5rem 0;
}

.bagged-items-card .bagged-items-pick-up {
  font-size: 0.875rem;
  color: var(--stone-500);
}

/* Delivery Banner */
.delivery-banner {
  background-color: var(--forest-50);
  border: 1px solid var(--forest-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tag {
  background-color: var(--white);
  color: var(--forest-700);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--forest-100);
}

/* Bagged Items Grid */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--wood-200);
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.price-large {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-600);
  margin: 0.5rem 0;
}

/* Free Delivery */
.free-delivery-container {
  background-color: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--wood-200);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.free-delivery {
  display: flex;
  flex-direction: column;
}

.free-delivery > div {
  display: flex;
  justify-content: center;
  padding: 1.25rem 5rem;
  border-bottom: 1px solid var(--stone-100);
  font-weight: 600;
  color: var(--wood-800);
}

/* Delivery Fees */
.delivery-fees-container {
  background-color: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--wood-200);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.delivery-fees {
  display: flex;
  flex-direction: column;
}

.delivery-fees > div {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--stone-100);
}

.delivery-fees > div > span:first-child {
  /* Place name */
  font-weight: 600;
  color: var(--wood-800);
}

/* Contact */
.contact-icon {
  background-color: var(--wood-100);
  padding: 0.75rem;
  border-radius: 50%;
  color: var(--wood-800);
}

.map {
  position: relative;
  height: 400px;
  background-color: var(--stone-200);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--stone-700);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--stone-500);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px var(--orange-100);
}

.form-errors {
  background-color: #FFFFCC;
  border: 1px solid #FF0000;
  margin: 0.5rem 1rem 2rem 1rem;
  padding: 1rem 2rem 1rem 2rem;
}

.form-errors ul {
  list-style: disc;
  margin: 0;
  padding-left: 1.5rem;
}

.error {
  color: #FF0000;
}

.g-recaptcha {
  width: 99%;
  display: inline-block;
}


/* Footer */
footer {
  background-color: var(--wood-900);
  color: var(--wood-100);
  padding: 3rem 0;
  margin-top: auto;
}

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

.footer h3 {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wood-800);
  text-align: center;
  font-size: 0.875rem;
  color: var(--wood-300);
}

/* Responsive Media Queries */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-phone {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .grid-features, .grid-bagged-items {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .delivery-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .md-hidden {
    display: none;
  }

  .md-block {
    display: block;
  }

  .desktop-only {
    display: block;
  }

  .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .map {
    margin-bottom: 0;
  }
}
