@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap");

:root {
  --color-caribbean-green: #16a34a;
  --color-caribbean-yellow: #fbbf24;
  --color-caribbean-red: #ef4444;
  --color-cream: #fef3c7;
}

* {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fafafa;
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-30px) translateX(10px);
  }
}

@keyframes float-slower {

  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }

  50% {
    transform: translateY(-40px) translateX(-15px) scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes text-shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.6);
  }
}

@keyframes pulse-slow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

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

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

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

@keyframes grid-flow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100px);
  }
}

@keyframes star-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.animate-slide-in {
  animation: slide-in 0.3s ease-out;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 8s ease-in-out infinite;
}

.animate-float-slower {
  animation: float-slower 10s ease-in-out infinite;
}

.animate-shimmer {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out forwards;
}

.animate-fade-in-delayed {
  animation: fade-in 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.animate-fade-in-more-delayed {
  animation: fade-in 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.animate-fade-in-most-delayed {
  animation: fade-in 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slide-up 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slide-in-left 1s ease-out forwards;
}

.animate-slide-in-right {
  animation: slide-in-right 1s ease-out 0.3s forwards;
  opacity: 0;
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
  opacity: 0;
}

.animate-text-shimmer {
  animation: text-shimmer 3s linear infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 4s ease-in-out infinite;
}

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

.animate-gradient-shift {
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

.animate-particle-float {
  animation: particle-float linear infinite;
}

.animate-grid-flow {
  animation: grid-flow 20s linear infinite;
}

.animate-star-pulse {
  animation: star-pulse 1.5s ease-in-out infinite;
}

/* Layout */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.flex-1 {
  flex: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.header-logo img {
  height: 6rem;
  /* Reduced from 3rem/4rem as per user feedback */
  width: auto;
  max-width: 100%;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  /* Slightly smaller to match logo */
  font-weight: 700;
  letter-spacing: -0.02em;
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.logo-gradient {
  background: linear-gradient(to right, #16a34a, #ca8a04, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-plain {
  color: #111827;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: #4b5563;
  transition: all 0.2s;
  padding-bottom: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  color: #10b981;
}

.nav-link.active {
  border-bottom: 2px solid #10b981;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: #f9fafb;
  color: #10b981;
}

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

.nav-dropdown:hover .chevron-down {
  transform: rotate(180deg);
}

.phone-cta {
  background: #10b981;
  color: #ffffff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
}

.phone-cta:hover {
  background: #059669;
  transform: translateY(-1px);
}

.cart-btn {
  color: #4b5563;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.cart-btn:hover {
  color: #1a1a1a;
}

.text-caribbean {
  color: #1a1a1a;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  position: relative;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  transition: color 0.2s;
}

.cart-btn:hover {
  color: #16a34a;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  height: 1.25rem;
  width: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: #16a34a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .phone-cta {
    display: flex;
  }
}

.phone-cta:hover {
  background: #15803d;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  color: #16a34a;
}

.mobile-menu {
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

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

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

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #374151;
  transition:
    background 0.2s,
    color 0.2s;
}

.mobile-nav-link:hover {
  background: #f9fafb;
}

.mobile-nav-link.active {
  background: #f0fdf4;
  color: #16a34a;
}

.mobile-phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #16a34a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-phone-cta:hover {
  background: #15803d;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: #16a34a;
  color: #fff;
}

.btn-primary:hover {
  background: #15803d;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-outline {
  background: transparent;
  color: #16a34a;
  border: 2px solid #16a34a;
}

.btn-outline:hover {
  background: #f0fdf4;
}

.btn-secondary {
  background: #fff;
  color: #16a34a;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
}

.form-input.error {
  border-color: #ef4444;
}

.form-error {
  font-size: 0.875rem;
  color: #ef4444;
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  min-height: 6rem;
  resize: vertical;
}

.form-textarea:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.form-select:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
}

/* Catering Section Redesign */
.catering-section {
  background: #ffffff;
  padding: 5rem 1rem;
}

.catering-container {
  max-width: 80rem;
  margin: 0 auto;
}

.catering-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.catering-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}

.catering-subtitle {
  font-size: 1rem;
  color: #6b7280;
  max-width: 44rem;
  margin: 0 auto;
  line-height: 1.6;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.catering-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(22, 163, 74, 0.3);
}

.catering-card-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.catering-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.catering-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catering-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
}

.catering-card-desc {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.catering-card-price {
  color: #16a34a;
  font-weight: 800;
  font-size: 1.125rem;
  margin: 0 0 1.75rem;
  display: block;
}

.catering-btn {
  background: #16a34a;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.2);
}

.catering-btn:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3);
}

/* Herbs & Spices Section Redesign */
.herbs-section {
  background: #fef3c7;
  padding: 5rem 1rem;
}

.herbs-container {
  max-width: 80rem;
  margin: 0 auto;
}

.herbs-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.herbs-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}

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

.spice-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.spice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(22, 163, 74, 0.3);
}

.spice-card-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.spice-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.spice-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spice-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem;
}

.spice-card-price {
  color: #16a34a;
  font-weight: 800;
  font-size: 1.125rem;
  margin: 0 0 1.25rem;
}

.spice-btn-wrap {
  margin-top: auto;
}

.spice-btn {
  background: #16a34a;
  color: #ffffff;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.2);
}

.spice-btn:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3);
}

/* Card */
.card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

/* Footer */
.site-footer {
  width: 100%;
  background: #111827;
  color: #d1d5db;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

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

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand img {
  height: 6rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.footer-text {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.footer-links a:hover {
  color: #4ade80;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item a {
  font-size: 0.875rem;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #4ade80;
}

.footer-contact-item span {
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #4ade80;
}

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

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

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

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

.footer-legal a {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #4ade80;
}

.footer-contact-col {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-contact-col {
    grid-column: span 1;
  }
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .section {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 4rem 2rem;
  }
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

.success-box {
  background: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.success-icon {
  color: #16a34a;
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

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

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

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Page hero variants */
.page-hero {
  background: linear-gradient(135deg, #f0fdf4, #fefce8, #fff1f2);
  padding: 5rem 1rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 1rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero p {
  font-size: 1.125rem;
  color: #374151;
  max-width: 48rem;
  margin: 0 auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card-body {
  padding: 1.25rem;
}

.product-card-name {
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
}

.product-card-price {
  color: #16a34a;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.product-card-actions {
  display: flex;
  gap: 0.5rem;
}

/* Filters sidebar */
.filter-sidebar {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.filter-title {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}

.clear-btn {
  font-size: 0.8rem;
  color: #16a34a;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
}

.clear-btn:hover {
  color: #15803d;
}

.filter-section-title {
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.875rem;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: color 0.15s;
}

.filter-checkbox-label:hover span {
  color: #111827;
}

.filter-checkbox-label input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #16a34a;
  cursor: pointer;
  border-radius: 3px;
  flex-shrink: 0;
}

.filter-checkbox-label span {
  color: #4b5563;
  font-size: 0.9375rem;
  font-weight: 500;
}

.price-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.625rem;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 9999px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #16a34a;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(22, 163, 74, 0.4);
  margin-top: -7px;
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #16a34a;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(22, 163, 74, 0.4);
}

input[type="range"]::-webkit-slider-runnable-track {
  background: #e5e7eb;
  border-radius: 9999px;
  height: 4px;
}

input[type="range"]::-moz-range-track {
  background: #e5e7eb;
  border-radius: 9999px;
  height: 4px;
}

/* Cart specific */
/* Cart styles moved to Tailwind in template-cart.php */

.discount-header {
  background: #f0fdf4;
  margin: -1.25rem -1.25rem 1.25rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem 0.75rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #16a34a;
  font-size: 0.875rem;
}

.free-ship-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdf4;
  color: #16a34a;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  border: 1px solid #dcfce7;
}

.summary-shipping-alert {
  background: #fffcf0;
  border: 1px solid #fde68a;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #854d0e;
  font-weight: 600;
  margin: 1.5rem 0;
}

.trust-badges-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.trust-badge-check {
  width: 1.5rem;
  height: 1.5rem;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-summary-box {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid #f3f4f6;
  padding: 2rem;
  position: sticky;
  top: 6rem;
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.discount-box {
  background: #f0fdf4;
  border-radius: 1rem;
  border: 1px solid #dcfce7;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
}

.trust-badge-icon {
  width: 2rem;
  height: 2rem;
  background: #dcfce7;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #16a34a;
  font-weight: 700;
}

/* Shipping method toggle */
.shipping-option {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  text-align: left;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  margin-bottom: 0.75rem;
}

.shipping-option.selected {
  border-color: #16a34a;
  background: #f0fdf4;
}

.shipping-option:hover:not(.selected) {
  border-color: #86efac;
}

.checkout-mode-btn {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  text-align: center;
  width: 100%;
}

.checkout-mode-btn.selected {
  border-color: #16a34a;
  background: #f0fdf4;
}

.checkout-mode-btn:hover:not(.selected) {
  border-color: #86efac;
}

/* Checkout sections */
.checkout-section {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

/* Stars */
.stars {
  display: flex;
}

.star-icon {
  color: #fbbf24;
}

/* Category filter pills (recipes) */
.cat-pill {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.cat-pill.active {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
  box-shadow: 0 4px 6px rgba(22, 163, 74, 0.3);
}

.cat-pill:hover:not(.active) {
  border-color: #16a34a;
}

/* Recipe card */
.recipe-card {
  background: #fff;
  border-radius: 1rem;
  border: 2px solid #f3f4f6;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.recipe-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  border-color: #bbf7d0;
  transform: translateY(-4px);
}

.recipe-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: #f3f4f6;
}

.recipe-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.recipe-card:hover .recipe-card-img-wrap img {
  transform: scale(1.05);
}

.difficulty-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.diff-easy {
  color: #15803d;
  background: #dcfce7;
}

.diff-medium {
  color: #854d0e;
  background: #fef9c3;
}

.diff-advanced {
  color: #991b1b;
  background: #fee2e2;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #374151;
}

.recipe-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Event gallery */
.gallery-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.gallery-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card-img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}

/* About values */
.value-card {
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  padding: 2rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.value-card:hover {
  border-color: #bbf7d0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Process / stat section */
.stat-num {
  font-size: 3rem;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Hero section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 700px;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    height: 80vh;
  }
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(20, 83, 45, 0.4),
      rgba(113, 63, 18, 0.3),
      rgba(127, 29, 29, 0.4));
}

.hero-mouse-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  transition: transform 0.3s ease-out;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-grid-inner {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: grid-flow 20s linear infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(251, 191, 36, 0.4);
  border-radius: 9999px;
  animation: particle-float linear infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 3rem 1.5rem;
  }
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right,
      rgba(234, 179, 8, 0.2),
      rgba(249, 115, 22, 0.2));
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  backdrop-filter: blur(12px);
}

.hero-badge span {
  color: #fde047;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

@media (min-width: 640px) {
  .hero-h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-h1 {
    font-size: 4rem;
  }
}

.hero-shimmer-white {
  display: block;
  background: linear-gradient(to right, #fff, #fef9c3, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: text-shimmer 3s linear infinite;
}

.hero-shimmer-gold {
  display: block;
  background: linear-gradient(to right, #ef4444, #fb923c, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: text-shimmer 3s linear infinite;
  animation-delay: 0.2s;
  margin-top: 0.25rem;
}

.hero-tonight {
  display: block;
  color: #fff;
  margin-top: 0.25rem;
}

.hero-sub {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-sub {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-sub {
    margin: 0;
    font-size: 1.125rem;
  }
}

.hero-sub strong {
  color: #fbbf24;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-btn-primary {
  position: relative;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #facc15, #f97316, #ef4444);
  color: #000;
  font-weight: 700;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.975rem;
}

.hero-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.5);
}

.hero-btn-secondary {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.975rem;
  backdrop-filter: blur(12px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  border: 2px solid #000;
}

@media (min-width: 768px) {
  .hero-avatar {
    width: 2rem;
    height: 2rem;
  }
}

.hero-visual {
  display: none;
  position: relative;
  height: 400px;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.hero-img-wrap {
  position: relative;
  height: 100%;
}

.hero-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(234, 179, 8, 0.2),
      rgba(239, 68, 68, 0.2));
  border-radius: 1.5rem;
  filter: blur(3rem);
  animation: pulse-slow 4s ease-in-out infinite;
}

.hero-img-frame {
  position: relative;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.6),
      transparent,
      transparent);
}

.hero-float-card {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-float-card.top-right {
  top: 1rem;
  right: 1rem;
  animation: float-slow 8s ease-in-out infinite;
}

.hero-float-card.bottom-left {
  bottom: 1rem;
  left: 1rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-float-text-bold {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

.hero-float-text-sub {
  font-size: 0.75rem;
}

/* Mission box */
.mission-box {
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-radius: 1.5rem;
  padding: 3rem;
  color: #fff;
  text-align: center;
}

.mission-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.mission-box p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #dcfce7;
  max-width: 48rem;
  margin: 0 auto;
}

/* Local pickup info */
.pickup-info {
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

/* Out of stock */
.oos-box {
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 1rem;
  padding: 1.5rem;
}

/* Recipe detail */
.ingredients-box {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
}

.tips-box {
  background: #fefce8;
  border: 2px solid #fde68a;
  border-radius: 1rem;
  padding: 1.5rem;
}

.instruction-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: #16a34a;
  color: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.featured-products-box {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: 1rem;
  padding: 1.5rem;
}

.featured-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem;
}

/* Empty cart */
.empty-cart {
  background: linear-gradient(135deg, #f9fafb, #fff, #f0fdf4);
  min-height: 100vh;
}

.empty-cart-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.empty-cart-icon-bg {
  position: absolute;
  inset: 0;
  background: #dcfce7;
  border-radius: 9999px;
  filter: blur(3rem);
  opacity: 0.5;
  animation: pulse-slow 4s ease-in-out infinite;
}

.empty-cart-icon-wrap {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Order confirmed */
.order-confirmed {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
}

/* Responsive image aspect ratios */
.aspect-video {
  aspect-ratio: 16/9;
}

.aspect-square {
  aspect-ratio: 1/1;
}

.aspect-43 {
  aspect-ratio: 4/3;
}

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

/* Contact page */
.contact-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #16a34a;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}

.social-btn:hover {
  background: #15803d;
}

/* Recipe Details */
.ingredients-box {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.instruction-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
}

.step-num {
  width: 2.25rem;
  height: 2.25rem;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}

.tips-box {
  background: #fffbeb;
  border-left: 4px solid #facc15;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.featured-products-box {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.featured-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #dcfce7;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.featured-product-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.difficulty-badge {
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.diff-easy {
  background: #dcfce7;
  color: #16a34a;
}

.diff-medium {
  background: #fef9c3;
  color: #ca8a04;
}

.diff-advanced {
  background: #fee2e2;
  color: #dc2626;
}

/* Header Branding */
.brand .logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}

.text-jerky {
  background: linear-gradient(to right,
      #009245,
      #8cc63f,
      #fcee21,
      #f7931e,
      #ed1c24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-caribbean {
  color: #1a1a1a;
}