﻿/* Auto-generated CSS bundle */
/* --- base/variables.css --- */
/* The Wooden Spoon - Modern Gastropub/Farmhouse Theme */

/* CSS Custom Properties with Fallbacks for Older Browsers */
:root {
  /* Sticky `.ws-header` height for secondary stickybars (quick links, visit page nav). */
  --ws-site-header-offset: 72px;

  --primary-color: #9c1c34;
  --primary: #9c1c34;
  --accent-color: #bfa14a;
  --background: #f8f6f3;
  --surface: #fff;
  --surface-light: #faf9f7;
  --charcoal: #2d2d2d;
  --taupe: #b8a99a;
  --wood-brown: #7c5c3e;
  --font-primary: 'DM Sans', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(44,38,33,0.08);
  --text-primary: #2d2d2d;
  --text-secondary: #666;
  --border-light: rgba(184, 169, 154, 0.3);
}

@media (max-width: 991px) {
  :root {
    --ws-site-header-offset: 56px;
  }
}

/* Fallback values for browsers that don't support CSS Custom Properties */
html {
  /* Fallback colors for older browsers */
  color: #2d2d2d;
  background: #f8f6f3;
}


/* --- base/reset.css --- */
/* Base HTML and Body Styles */
html, body {
  margin: 0;
  padding: 0;
  background: var(--background);
  background-image: 
    linear-gradient(90deg, transparent 0%, rgba(124, 92, 62, 0.02) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(124, 92, 62, 0.01) 50%, transparent 100%),
    radial-gradient(circle at 20% 50%, rgba(124, 92, 62, 0.015) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(124, 92, 62, 0.015) 0%, transparent 100%);
  background-size: 100px 100px, 50px 50px, 200px 200px, 200px 200px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-size: 17px;
  box-sizing: border-box;
}

/* Main Element Spacing */
main {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

/* General Image Styles */
img {
  max-width: 100%;
  height: auto;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Prevent horizontal overflow on embedded content */
iframe, 
embed, 
object, 
video {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* Ensure tables don't cause horizontal scroll */
table {
  max-width: 100%;
  width: 100%;
  table-layout: fixed;
}

/* Prevent long words from breaking layout */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Ensure all elements respect container bounds */
* {
  box-sizing: border-box;
}


/* --- components/navigation.css --- */
/* Header and Navigation Styles */
.ws-header {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.ws-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 24px 0 16px;
  height: 72px;
  gap: 8px;
}

.ws-nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  gap: 0;
}

.ws-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: min-content;
}

.ws-nav-logo a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.ws-nav-logo img {
  display: block;
  height: 64px;
  width: auto;
  max-width: none;
  max-height: 64px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.3s ease;
}

.ws-nav-logo img:hover {
  transform: scale(1.05);
}

/* --- Account icon (compact, next to location picker) --- */
.ws-nav-account-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px 10px;
  border-left: 1px solid var(--taupe);
  color: var(--charcoal);
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.ws-nav-account-icon:hover,
.ws-nav-account-icon:focus {
  background: var(--taupe);
  color: var(--primary-color);
}

/* --- Location picker (header) --- */
.ws-header-location {
  display: none;
  position: relative;
  margin: 0;
  padding: 0 12px;
  border-left: 1px solid var(--taupe);
}

.ws-header-location-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.ws-header-location-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6c757d;
}

.ws-header-location-status.open {
  background: #28a745;
}

.ws-header-location-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.ws-header-location-change {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.ws-header-location-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 280px;
  padding: 14px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--taupe);
  background: var(--surface);
  opacity: 0;
  visibility: hidden;
  z-index: 1005;
}

.ws-header-location:hover .ws-header-location-dropdown,
.ws-header-location.is-open .ws-header-location-dropdown {
  opacity: 1;
  visibility: visible;
}

.ws-header-location-links {
  display: flex;
  gap: 10px;
  margin: 8px 0;
  flex-wrap: wrap;
}

.ws-header-location-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.ws-header-location-switch-btn {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .ws-header-location {
    display: block;
  }

  .ws-header-location-dropdown {
    left: 0;
    right: auto;
  }
}

/* --- Section Logos --- */
.ws-section-logo {
  height: 32px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
  object-fit: contain;
  max-width: 120px;
}

/* --- Primary nav links (desktop inline, hidden on mobile) --- */
.ws-nav-primary {
  display: none;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  align-items: center;
  gap: 4px;
}

@media (min-width: 992px) {
  .ws-nav-primary {
    display: flex;
  }
}

.ws-nav-primary li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.05em;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.ws-nav-primary li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.ws-nav-primary li a:hover::before {
  left: 100%;
}

.ws-nav-primary li a:hover,
.ws-nav-primary li a:focus {
  background: var(--taupe);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.ws-nav-primary li a[aria-current="page"] {
  background: rgba(156, 28, 52, 0.12);
  color: var(--primary-color);
  box-shadow: inset 0 0 0 1px rgba(156, 28, 52, 0.25);
}

/* --- Order Now CTA --- */
.ws-nav-order-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--accent-color) 100%);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 24px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(124, 92, 62, 0.10);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.ws-nav-order-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.ws-nav-order-cta:hover::before {
  left: 100%;
}

.ws-nav-order-cta:hover,
.ws-nav-order-cta:focus {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124, 92, 62, 0.20);
}

.ws-nav-order-cta[aria-current="page"] {
  box-shadow: 0 0 0 2px rgba(156, 28, 52, 0.35), 0 4px 16px rgba(124, 92, 62, 0.20);
}

/* --- Hamburger Toggle (always visible) --- */
.ws-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: background 0.3s ease;
  border-radius: 4px;
  flex-shrink: 0;
  margin-left: 12px;
}

.ws-nav-toggle:hover {
  background: rgba(184, 169, 154, 0.15);
}

.ws-nav-toggle-line {
  width: 100%;
  height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.ws-nav-toggle-active .ws-nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.ws-nav-toggle-active .ws-nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.ws-nav-toggle-active .ws-nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Hamburger Menu Panel (slides from right) --- */
.ws-nav-list {
  position: fixed;
  top: 72px;
  right: 0;
  width: 320px;
  max-width: 90vw;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -4px 8px 32px rgba(44,38,33,0.15);
  border-radius: 0 0 0 var(--radius);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.ws-nav-list-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.ws-nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  min-height: 48px;
  border-bottom: 1px solid rgba(184, 169, 154, 0.3);
}

.ws-nav-list li:last-child a {
  border-bottom: none;
}

.ws-nav-list li a i {
  width: 20px;
  text-align: center;
  font-size: 1.1em;
  color: var(--primary-color);
}

.ws-nav-list li a:hover,
.ws-nav-list li a:focus {
  background: var(--taupe);
  color: var(--primary-color);
  transform: translateX(4px);
}

.ws-nav-list li a[aria-current="page"] {
  background: rgba(156, 28, 52, 0.08);
  color: var(--primary-color);
  border-left: 3px solid var(--primary-color);
}

/* Primary items in hamburger: hidden on desktop, shown on mobile */
.ws-nav-menu-primary-item {
  display: none;
}

/* Divider line in hamburger */
.ws-nav-menu-divider {
  height: 1px;
  background: var(--taupe);
  margin: 4px 16px;
  list-style: none;
  border-bottom: none;
}

/* Body scroll lock when menu is open */
body.ws-menu-open {
  overflow: hidden;
}

/* --- Mobile overrides (<=991px) --- */
@media (max-width: 991px) {
  .ws-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 8px;
    height: 56px;
    padding: 0 12px 0 8px;
    position: relative;
  }

  .ws-nav-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 8px;
    justify-self: start;
    max-width: 100%;
  }

  .ws-nav-logo {
    justify-self: unset;
    align-self: center;
    min-width: min-content;
    flex-shrink: 0;
  }

  .ws-nav-logo img {
    display: block;
    width: auto;
    height: 48px;
    max-width: none;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
  }

  .ws-header-location {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: unset;
    margin: 0;
    padding: 0 6px;
    border-left: none;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 auto;
  }

  .ws-header-location-trigger {
    cursor: pointer;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 8px;
    max-width: 100%;
  }

  .ws-header-location-name {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(36vw, 180px);
  }

  .ws-header-location-change {
    flex-shrink: 0;
    font-size: 0.7rem;
  }

  .ws-header-location-chevron {
    flex-shrink: 0;
    font-size: 0.75rem;
  }

  /* Hide location hover dropdown on mobile */
  .ws-header-location-dropdown {
    display: none !important;
    visibility: hidden !important;
  }

  /* Show primary items in hamburger on mobile */
  .ws-nav-menu-primary-item {
    display: list-item;
  }

  /* Order CTA: compact on mobile */
  .ws-nav-order-cta {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .ws-nav-toggle {
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .ws-nav-toggle-line {
    background: var(--charcoal) !important;
  }

  /* Hamburger panel: full width on mobile */
  .ws-nav-list {
    top: 56px;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 56px);
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(44,38,33,0.15);
    transform: translateY(-100%);
  }

  .ws-nav-list-open {
    transform: translateY(0);
  }
}

/* Small phones */
@media (max-width: 480px) {
  .ws-nav {
    padding: 0 10px 0 6px;
    height: 52px;
    gap: 6px;
  }

  .ws-nav-logo img {
    height: 44px;
    max-height: 44px;
  }

  .ws-nav-toggle {
    width: 28px;
    height: 28px;
    margin-left: 6px;
  }

  .ws-nav-order-cta {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .ws-nav-list {
    top: 52px;
    max-height: calc(100vh - 52px);
  }

  .ws-nav-list li a {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .ws-nav {
    padding: 0 8px 0 4px;
    height: 48px;
    gap: 4px;
  }

  .ws-nav-logo img {
    height: 40px;
    max-height: 40px;
  }

  .ws-nav-toggle {
    width: 26px;
    height: 26px;
  }

  .ws-nav-order-cta {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .ws-nav-list {
    top: 48px;
    max-height: calc(100vh - 48px);
  }

  .ws-nav-list li a {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 991px) {
  .ws-nav {
    padding: 0 20px;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .ws-nav {
    padding: 0 32px 0 12px;
  }

  .ws-nav-primary li a {
    padding: 10px 18px;
    font-size: 1.08em;
  }

  .ws-nav-order-cta {
    padding: 10px 28px;
    font-size: 1rem;
  }
}

@media (min-width: 1600px) {
  .ws-nav {
    padding: 0 40px 0 16px;
  }

  .ws-nav-primary li a {
    padding: 12px 22px;
    font-size: 1.12em;
  }

  .ws-nav-order-cta {
    padding: 12px 32px;
    font-size: 1.05rem;
  }
}

/* Leaving site notice for external Skytab / delivery ordering links */
.ws-ordering-leave-toast {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(44, 38, 33, 0.96);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  z-index: 10050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  text-align: center;
}

@media (max-width: 768px) {
  .ws-ordering-leave-toast {
    bottom: max(108px, calc(20px + env(safe-area-inset-bottom, 0px)));
  }
}

.ws-ordering-leave-toast--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .ws-ordering-leave-toast {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
}


/* --- components/hero.css --- */
/* Hero Section Styles */
.ws-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  overflow: hidden;
  z-index: 10;
  margin-top: 0;
  padding-top: 0;
}

.ws-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: var(--taupe);
}

/* Carousel container */
.ws-hero-carousel {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.ws-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) saturate(1.05);
  display: block;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ws-hero-img:not([src]),
.ws-hero-img[src=""],
.ws-hero-img[src*="undefined"] {
  display: none;
}

/* Slide transitions */
.ws-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.ws-slide.active {
  opacity: 1;
  z-index: 2;
}

.ws-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3;
}

.ws-hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.ws-hero-logo {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(44,38,33,0.10));
  object-fit: contain;
}

.ws-hero-title {
  font-family: var(--font-secondary);
  font-size: 3.2rem;
  color: var(--background);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 0 3px 16px #222, 0 1px 0 #222, 0 0px 2px rgba(255,255,255,0.12);
}

.ws-perfect-text {
  color: var(--primary-color);
  font-weight: 600;
}

.ws-hero-tagline {
  font-family: var(--font-secondary);
  font-size: 1.35rem;
  color: var(--background);
  margin-bottom: 32px;
  font-weight: 500;
  text-shadow: 0 2px 8px var(--charcoal), 0 1px 0 #222;
}

.ws-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ws-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(124, 92, 62, 0.10);
  margin-bottom: 8px;
}

.ws-hero-btn-primary {
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--accent-color) 100%);
  color: #fff;
  border-color: var(--primary-color);
}

.ws-hero-btn-primary:hover, .ws-hero-btn-primary:focus {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: var(--charcoal);
  border-color: var(--accent-color);
  text-decoration: none;
}

.ws-hero-btn-secondary {
  background: var(--background);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.ws-hero-btn-secondary:hover, .ws-hero-btn-secondary:focus {
  background: var(--taupe);
  color: var(--charcoal);
  border-color: var(--accent-color);
  text-decoration: none;
}

/* Dot navigation */
.ws-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.ws-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.ws-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.ws-dot.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.2);
}

/* Ensure hero section doesn't overlap with header */
.ws-hero {
  margin-top: 0;
  padding-top: 0;
}

/* Hero Small Variant */
.ws-hero-small {
  min-height: 50vh;
  max-height: 60vh;
}

.ws-hero-small .ws-hero-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--taupe);
}

.ws-hero-small .ws-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ws-hero-small .ws-hero-content {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ws-hero-small .ws-hero-logo {
  width: 90px;
  margin-bottom: 16px;
}

.ws-hero-small .ws-hero-title {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.ws-hero-small .ws-hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.ws-hero-small .ws-hero-actions {
  gap: 16px;
}

.ws-hero-small .ws-hero-btn {
  padding: 12px 28px;
  font-size: 1rem;
}

/* Responsive - hero small */
@media (max-width: 768px) {
  .ws-hero-small {
    min-height: 45vh;
    max-height: 55vh;
  }

  .ws-hero-small .ws-hero-title {
    font-size: 2rem;
  }

  .ws-hero-small .ws-hero-tagline {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .ws-hero-small {
    min-height: 40vh;
    max-height: 50vh;
  }

  .ws-hero-small .ws-hero-title {
    font-size: 1.8rem;
  }

  .ws-hero-small .ws-hero-tagline {
    font-size: 1rem;
  }

  .ws-hero-small .ws-hero-logo {
    width: 70px;
  }
}

/* Responsive - main hero */
@media (max-width: 768px) {
  .ws-hero {
    min-height: 60vh;
  }

  .ws-hero-title {
    font-size: 2.4rem;
  }

  .ws-hero-tagline {
    font-size: 1.2rem;
  }

  .ws-hero-logo {
    width: 110px;
  }

  .ws-hero-actions {
    display: none;
  }

  .ws-slider-dots {
    bottom: 16px;
    gap: 8px;
  }

  .ws-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .ws-hero {
    min-height: 50vh;
  }

  .ws-hero-title {
    font-size: 1.8rem;
  }

  .ws-hero-tagline {
    font-size: 1.1rem;
  }

  .ws-hero-logo {
    width: 80px;
  }

  .ws-hero-actions {
    display: none;
  }
}

/* Quick Links Responsive - Hide on smaller screens */
@media (max-width: 768px) {
  .ws-quick-links {
    display: none;
  }
}


/* --- components/quick-links.css --- */
/* Quick Links Navigation - Compact & Sticky */
.ws-quick-links {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0;
  z-index: 100;
  position: sticky;
  top: var(--ws-site-header-offset);
  border-bottom: 2px solid var(--taupe);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ws-quick-links ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
}

.ws-quick-links li {
  flex: 1 1 100px;
  text-align: center;
  border-right: 1px solid var(--taupe);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-quick-links li:last-child {
  border-right: none;
}

.ws-quick-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px 8px 8px;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border-radius: 0;
  position: relative;
}

.ws-quick-links a:hover, .ws-quick-links a:focus {
  color: var(--primary-color);
  background: rgba(156, 28, 52, 0.08);
  text-decoration: none;
  transform: translateY(-1px);
}

.ws-quick-links i {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--primary-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

.ws-quick-links a:hover i, .ws-quick-links a:focus i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.ws-quick-links span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Responsive: Compact quicklinks on smaller screens */
@media (max-width: 768px) {
  .ws-quick-links {
    background: rgba(255, 255, 255, 0.98);
  }
  
  .ws-quick-links ul {
    max-width: 100%;
    padding: 0 16px;
  }
  
  .ws-quick-links li {
    flex: 1 1 80px;
  }
  
  .ws-quick-links a {
    padding: 8px 4px 6px 4px;
  }
  
  .ws-quick-links i {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  
  .ws-quick-links span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .ws-quick-links li {
    flex: 1 1 70px;
  }
  
  .ws-quick-links a {
    padding: 6px 2px 4px 2px;
  }
  
  .ws-quick-links i {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }
  
  .ws-quick-links span {
    font-size: 0.7rem;
  }
}


/* --- components/back-to-top.css --- */
/* Back to Top Button Component */
.ws-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(156, 28, 52, 0.3);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.ws-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ws-back-to-top:hover,
.ws-back-to-top:focus {
  background: var(--accent-color);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px rgba(191, 161, 74, 0.4);
}

.ws-back-to-top:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.ws-back-to-top i {
  transition: transform 0.3s ease;
}

.ws-back-to-top:hover i {
  transform: translateY(-2px);
}

/* Section Navigation with Back to Top */
.ws-section-nav {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.ws-section-nav-btn {
  width: 48px;
  height: 48px;
  background: var(--surface);
  color: var(--charcoal);
  border: 2px solid var(--taupe);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

.ws-section-nav-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.ws-section-nav-btn:hover,
.ws-section-nav-btn:focus {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateX(0) scale(1.1);
  box-shadow: 0 8px 25px rgba(156, 28, 52, 0.3);
}

.ws-section-nav-btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.ws-section-nav-btn i {
  transition: transform 0.3s ease;
}

.ws-section-nav-btn:hover i {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ws-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  
  .ws-section-nav {
    bottom: 20px;
    left: 20px;
    gap: 8px;
  }
  
  .ws-section-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .ws-back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  
  .ws-section-nav {
    bottom: 16px;
    left: 16px;
  }
  
  .ws-section-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}


/* --- components/footer.css --- */
/* Footer Styles */
.ws-footer {
  background: var(--charcoal);
  color: #fff;
  padding: 60px max(24px, env(safe-area-inset-right, 0px)) 0 max(24px, env(safe-area-inset-left, 0px));
  margin-top: 80px;
  max-width: 100%;
  box-sizing: border-box;
}

.ws-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.ws-footer-col p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.ws-footer-col a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ws-footer-col a:hover {
  color: var(--accent-color);
}

.ws-footer-logo {
  display: block;
  margin-bottom: 16px;
  filter: brightness(10);
  opacity: 0.9;
}

.ws-footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 16px;
}

.ws-footer-social {
  display: flex;
  gap: 16px;
}

.ws-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ws-footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.ws-footer-heading {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.ws-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ws-footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.ws-footer-links a:hover {
  color: var(--accent-color);
}

.ws-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
}

.ws-footer-staff-btn {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.ws-footer-staff-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .ws-footer {
    padding: 40px max(16px, env(safe-area-inset-right, 0px)) 0 max(16px, env(safe-area-inset-left, 0px));
    margin-top: 60px;
  }

  .ws-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .ws-footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .ws-footer {
    padding: 32px max(12px, env(safe-area-inset-right, 0px)) 0 max(12px, env(safe-area-inset-left, 0px));
    margin-top: 40px;
  }

  .ws-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .ws-footer-social {
    justify-content: center;
  }

  .ws-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Sticky mobile footer */
.ws-sticky-footer {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1000;
  border-top: 1px solid #ddd;
  box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.12);
  max-width: 100vw;
  box-sizing: border-box;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.ws-sticky-footer-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px max(10px, env(safe-area-inset-left, 0px)) 8px max(10px, env(safe-area-inset-right, 0px));
  flex-wrap: wrap;
  row-gap: 8px;
  min-width: 0;
}

.ws-sticky-location-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.ws-sticky-location-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ws-sticky-location-name {
  font-size: clamp(0.75rem, 2.8vw, 0.86rem);
  font-weight: 700;
  color: var(--charcoal);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-sticky-location-hours {
  font-size: clamp(0.68rem, 2.4vw, 0.75rem);
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-sticky-switch-location {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: #fff;
  border-radius: 4px;
  padding: 5px clamp(6px, 2vw, 10px);
  font-size: clamp(0.62rem, 2.2vw, 0.72rem);
  font-weight: 700;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ws-sticky-expand {
  border: none;
  background: transparent;
  flex-shrink: 0;
  padding: 4px;
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ws-sticky-footer-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.ws-sticky-footer-expanded.open {
  max-height: 240px;
}

.ws-sticky-location-full {
  padding: 10px 12px;
  border-top: 1px solid #eee;
}

.ws-sticky-map-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ws-sticky-map-links a {
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.ws-sticky-footer-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(4px, 1.5vw, 8px);
  padding: clamp(6px, 2vw, 10px);
  min-width: 0;
}

.ws-sticky-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 8px;
  min-height: clamp(42px, 12vw, 46px);
  font-size: clamp(0.62rem, 2.5vw, 0.7rem);
  font-weight: 700;
  position: relative;
  min-width: 0;
  padding: 4px 2px;
  text-align: center;
  line-height: 1.15;
  word-break: break-word;
  hyphens: auto;
}

.ws-sticky-action-btn span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.ws-location-select-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: flex-end;
  z-index: 1200;
}

.ws-location-select-modal.open {
  display: flex;
}

.ws-location-select-content {
  width: 100%;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 14px;
  padding-bottom: max(14px, env(safe-area-inset-bottom, 0px));
  max-height: 70vh;
  overflow: auto;
}

.ws-location-select-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ws-location-select-item {
  width: 100%;
  text-align: left;
  border: 1px solid #eee;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .ws-sticky-footer {
    display: block;
  }

  body {
    padding-bottom: calc(128px + env(safe-area-inset-bottom, 0px));
  }

  body.ws-page-order-flow {
    padding-bottom: calc(148px + env(safe-area-inset-bottom, 0px));
  }

  body.ws-page-order-flow .ws-sticky-footer-actions {
    display: none !important;
  }

  body.ws-page-order-flow .ws-sticky-footer-order-bar {
    display: block;
  }
}

/* Very narrow phones: stack location row, roomier scroll clearance */
@media (max-width: 400px) {
  .ws-sticky-footer-header {
    padding-left: max(8px, env(safe-area-inset-left, 0px));
    padding-right: max(8px, env(safe-area-inset-right, 0px));
  }

  .ws-sticky-location-info {
    flex: 1 1 100%;
  }

  .ws-sticky-switch-location {
    flex: 1 1 auto;
  }

  body {
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  }

  body.ws-page-order-flow {
    padding-bottom: calc(158px + env(safe-area-inset-bottom, 0px));
  }

  .ws-sticky-footer-actions {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .ws-sticky-footer-actions .ws-sticky-order-online {
    grid-column: 1 / -1;
  }

  .ws-sticky-order-bar-main {
    flex-wrap: wrap;
    gap: 8px;
  }

  .ws-sticky-order-bar-submit {
    flex: 1 1 auto;
    min-width: min(100%, 140px);
    padding: 10px 12px;
    font-size: clamp(0.78rem, 3.2vw, 0.85rem);
  }

  .ws-sticky-order-bar-total {
    font-size: clamp(0.88rem, 4vw, 1rem);
  }
}

.ws-sticky-footer-order-bar {
  display: none;
  border-top: 1px solid #e8e8e8;
  background: #fafafa;
  padding: 8px max(10px, env(safe-area-inset-left, 0px)) 8px max(10px, env(safe-area-inset-right, 0px));
  min-width: 0;
}

.ws-sticky-order-bar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(6px, 2vw, 10px);
  min-width: 0;
}

.ws-sticky-order-bar-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  gap: 2px;
}

.ws-sticky-order-bar-items {
  font-size: clamp(0.7rem, 2.8vw, 0.78rem);
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ws-sticky-order-bar-total {
  font-size: clamp(0.9rem, 3.8vw, 1rem);
  font-weight: 800;
  color: #1a1a1a;
  font-variant-numeric: tabular-nums;
}

.ws-sticky-order-bar-submit {
  flex-shrink: 0;
  padding: 10px clamp(12px, 3.5vw, 16px);
  border: none;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.78rem, 3vw, 0.85rem);
  cursor: pointer;
  font-family: inherit;
  max-width: 100%;
}

.ws-sticky-order-bar-submit:hover {
  filter: brightness(1.05);
}

.ws-sticky-order-bar-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}


/* --- components/location-recommendation.css --- */
/* Location Recommendation System - Shared Component */

/* Recommended Location Highlighting */
.ws-location-recommended {
  border: 3px solid var(--accent-color) !important;
  box-shadow: 0 8px 32px rgba(191,161,74,0.3) !important;
  position: relative;
}

.ws-location-recommended::before {
  content: 'ðŸŒŸ Recommended for you';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--charcoal);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(191,161,74,0.3);
  z-index: 10;
}

/* Location Recommendation Modal */
.ws-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.ws-modal.show {
  display: flex;
}

.ws-modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(44,38,33,0.25);
  padding: 0;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.ws-modal-header {
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid var(--taupe);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ws-modal-header h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.ws-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.ws-modal-close:hover {
  background: var(--taupe);
  color: var(--charcoal);
}

.ws-modal-body {
  padding: 20px 24px;
}

.ws-modal-body p {
  margin: 0 0 20px 0;
  color: var(--charcoal);
  line-height: 1.5;
}

.ws-location-consent {
  margin: 20px 0;
}

.ws-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--charcoal);
}

.ws-checkbox-label input[type="checkbox"] {
  display: none;
}

.ws-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  position: relative;
  background: var(--surface);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ws-checkbox-label input[type="checkbox"]:checked + .ws-checkbox-custom {
  background: var(--primary-color);
}

.ws-checkbox-label input[type="checkbox"]:checked + .ws-checkbox-custom::after {
  content: 'âœ“';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.ws-location-status {
  margin-top: 20px;
  padding: 16px;
  background: var(--background);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent-color);
}

.ws-location-status p {
  margin: 0;
  color: var(--charcoal);
  font-weight: 500;
}

.ws-modal-footer {
  padding: 16px 24px 24px 24px;
  border-top: 1px solid var(--taupe);
}

.ws-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.ws-modal-btn {
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ws-modal-btn-primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.ws-modal-btn-primary:hover:not(:disabled) {
  background: #8a1a2e;
  border-color: #8a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(156,28,52,0.25);
}

.ws-modal-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ws-modal-btn-secondary {
  background: var(--taupe);
  color: var(--charcoal);
  border-color: var(--taupe);
}

.ws-modal-btn-secondary:hover {
  background: #a89a8a;
  border-color: #a89a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(168,154,138,0.25);
}

/* Responsive Modal Adjustments */
@media (max-width: 768px) {
  .ws-modal-content {
    width: 95%;
    max-width: none;
    margin: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
  
  .ws-modal-header,
  .ws-modal-body,
  .ws-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .ws-modal-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .ws-modal-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
    min-height: 44px;
  }
  
  .ws-location-consent {
    margin: 16px 0;
  }
  
  .ws-checkbox-label {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .ws-location-status {
    margin-top: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .ws-modal-content {
    width: 98%;
    margin: 10px;
    max-height: calc(100vh - 20px);
  }
  
  .ws-modal-header,
  .ws-modal-body,
  .ws-modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .ws-modal-header h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  
  .ws-modal-body p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  .ws-checkbox-label {
    font-size: 0.9rem;
    line-height: 1.4;
    gap: 10px;
  }
  
  .ws-checkbox-custom {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  
  .ws-location-status {
    margin-top: 12px;
    padding: 10px;
  }
  
  .ws-location-status p {
    font-size: 0.9rem;
  }
  
  .ws-modal-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
    min-height: 48px;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .ws-modal-content {
    width: 99%;
    margin: 5px;
    max-height: calc(100vh - 10px);
  }
  
  .ws-modal-header,
  .ws-modal-body,
  .ws-modal-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .ws-modal-header h3 {
    font-size: 1.1rem;
  }
  
  .ws-modal-body p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .ws-checkbox-label {
    font-size: 0.85rem;
    gap: 8px;
  }
  
  .ws-checkbox-custom {
    width: 16px;
    height: 16px;
  }
  
  .ws-modal-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
    min-height: 44px;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .ws-modal-content {
    max-height: calc(100vh - 20px);
    margin: 10px;
  }
  
  .ws-modal-header {
    padding: 16px 20px 12px 20px;
  }
  
  .ws-modal-body {
    padding: 16px 20px;
  }
  
  .ws-modal-footer {
    padding: 12px 20px 16px 20px;
  }
  
  .ws-location-consent {
    margin: 12px 0;
  }
}


/* --- layouts/header.css --- */
/* Header Layout Styles */
.ws-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ws-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.ws-header-logo {
  display: flex;
  align-items: center;
}

.ws-header-logo img {
  height: 56px;
  width: auto;
  transition: transform 0.3s ease;
}

.ws-header-logo img:hover {
  transform: scale(1.05);
}

.ws-header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ws-header-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.ws-header-nav-item {
  position: relative;
}

.ws-header-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.ws-header-nav-link:hover {
  color: var(--primary-color);
  background: rgba(156, 28, 52, 0.05);
}

.ws-header-nav-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.ws-header-nav-link:hover i {
  transform: scale(1.1);
}

/* Header Responsive */
@media (max-width: 768px) {
  .ws-header-container {
    padding: 0 16px;
  }
  
  .ws-header-nav {
    gap: 20px;
  }
  
  .ws-header-nav-list {
    gap: 20px;
  }
  
  .ws-header-nav-link {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .ws-header-logo img {
    height: 48px;
  }
  
  .ws-header-nav {
    gap: 16px;
  }
  
  .ws-header-nav-list {
    gap: 16px;
  }
  
  .ws-header-nav-link {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}


/* --- layouts/grid.css --- */
/* Grid System and Container Styles */
.ws-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ws-container-fluid {
  width: 100%;
  padding: 0 24px;
}

.ws-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.ws-col {
  flex: 1;
  padding: 0 12px;
}

.ws-col-1 { flex: 0 0 8.333333%; }
.ws-col-2 { flex: 0 0 16.666667%; }
.ws-col-3 { flex: 0 0 25%; }
.ws-col-4 { flex: 0 0 33.333333%; }
.ws-col-5 { flex: 0 0 41.666667%; }
.ws-col-6 { flex: 0 0 50%; }
.ws-col-7 { flex: 0 0 58.333333%; }
.ws-col-8 { flex: 0 0 66.666667%; }
.ws-col-9 { flex: 0 0 75%; }
.ws-col-10 { flex: 0 0 83.333333%; }
.ws-col-11 { flex: 0 0 91.666667%; }
.ws-col-12 { flex: 0 0 100%; }

/* Grid Layouts */
.ws-grid {
  display: grid;
  gap: 24px;
}

.ws-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.ws-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ws-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ws-grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ws-grid-auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Flexbox Utilities */
.ws-flex {
  display: flex;
}

.ws-flex-column {
  flex-direction: column;
}

.ws-flex-wrap {
  flex-wrap: wrap;
}

.ws-justify-center {
  justify-content: center;
}

.ws-justify-between {
  justify-content: space-between;
}

.ws-justify-around {
  justify-content: space-around;
}

.ws-align-center {
  align-items: center;
}

.ws-align-start {
  align-items: flex-start;
}

.ws-align-end {
  align-items: flex-end;
}

.ws-text-center {
  text-align: center;
}

.ws-text-left {
  text-align: left;
}

.ws-text-right {
  text-align: right;
}

/* Spacing Utilities */
.ws-mt-0 { margin-top: 0; }
.ws-mt-1 { margin-top: 0.25rem; }
.ws-mt-2 { margin-top: 0.5rem; }
.ws-mt-3 { margin-top: 1rem; }
.ws-mt-4 { margin-top: 1.5rem; }
.ws-mt-5 { margin-top: 3rem; }

.ws-mb-0 { margin-bottom: 0; }
.ws-mb-1 { margin-bottom: 0.25rem; }
.ws-mb-2 { margin-bottom: 0.5rem; }
.ws-mb-3 { margin-bottom: 1rem; }
.ws-mb-4 { margin-bottom: 1.5rem; }
.ws-mb-5 { margin-bottom: 3rem; }

.ws-p-0 { padding: 0; }
.ws-p-1 { padding: 0.25rem; }
.ws-p-2 { padding: 0.5rem; }
.ws-p-3 { padding: 1rem; }
.ws-p-4 { padding: 1.5rem; }
.ws-p-5 { padding: 3rem; }

/* Responsive Grid */
@media (max-width: 768px) {
  .ws-container {
    padding: 0 16px;
  }
  
  .ws-container-fluid {
    padding: 0 16px;
  }
  
  .ws-grid-2,
  .ws-grid-3,
  .ws-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .ws-col-1, .ws-col-2, .ws-col-3, .ws-col-4,
  .ws-col-5, .ws-col-6, .ws-col-7, .ws-col-8,
  .ws-col-9, .ws-col-10, .ws-col-11, .ws-col-12 {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .ws-container {
    padding: 0 12px;
  }
  
  .ws-container-fluid {
    padding: 0 12px;
  }
  
  .ws-row {
    margin: 0 -6px;
  }
  
  .ws-col {
    padding: 0 6px;
  }
}


/* --- pages/home.css --- */
/* Home Page Styles */

@media (prefers-reduced-motion: no-preference) {
  html:has(main.ws-index-page) {
    scroll-behavior: smooth;
  }
}

main.ws-index-page > section[id] {
  scroll-margin-top: calc(var(--ws-site-header-offset) + 1rem);
}

/* ============================================
   Section Title
   ============================================ */
.ws-section-title {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 30px;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.ws-section-title::before {
  display: none;
}

.ws-section-title > * {
  position: relative;
  z-index: 2;
}

.ws-section-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   Shared Buttons
   ============================================ */
.ws-btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-color);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-btn-primary:hover,
.ws-btn-primary:focus {
  background: #7a1628;
  border-color: #7a1628;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(156, 28, 52, 0.3);
  text-decoration: none;
}

.ws-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-color);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-btn-outline:hover,
.ws-btn-outline:focus {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(156, 28, 52, 0.25);
  text-decoration: none;
}

.ws-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ws-btn-sm:hover,
.ws-btn-sm:focus {
  background: #7a1628;
  transform: translateY(-1px);
  text-decoration: none;
}

/* ============================================
   2. Featured Products
   ============================================ */
.ws-featured-products {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.ws-product-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.ws-product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(124, 92, 62, 0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ws-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44,38,33,0.12);
}

.ws-product-card:focus,
.ws-product-card:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44,38,33,0.12);
}

.ws-product-card picture {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.ws-product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ws-product-img:hover {
  transform: scale(1.02);
}

.ws-product-info {
  padding: 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.ws-product-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.ws-product-desc {
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 16px;
  font-size: 0.9rem;
  flex: 1;
}

.ws-product-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
  margin-top: auto;
}

.ws-product-btn:hover {
  background: #7a1628;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(156, 28, 52, 0.25);
}

.ws-product-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.ws-featured-cta {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 1200px) {
  .ws-product-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ws-featured-products {
    margin: 40px auto;
    padding: 0 16px;
  }

  .ws-product-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ws-section-title {
    font-size: 1.8rem;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .ws-featured-products {
    margin: 30px auto;
    padding: 0 12px;
  }

  .ws-product-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ws-product-info {
    padding: 16px;
  }

  .ws-section-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 8px;
    padding: 12px 15px;
  }
}

/* ============================================
   4. Our Story + Catering
   ============================================ */
.ws-story-catering {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.ws-story-catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ws-story-block,
.ws-catering-block {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 38, 33, 0.08);
  display: flex;
  flex-direction: column;
}

.ws-story-img-wrap,
.ws-catering-img-wrap {
  line-height: 0;
  overflow: hidden;
}

.ws-story-img,
.ws-catering-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ws-story-block:hover .ws-story-img,
.ws-catering-block:hover .ws-catering-img {
  transform: scale(1.03);
}

.ws-story-text,
.ws-catering-text {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.ws-story-heading,
.ws-catering-heading {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.ws-story-text p,
.ws-catering-text p {
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0;
}

.ws-story-text .ws-btn-outline,
.ws-catering-text .ws-btn-primary {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 768px) {
  .ws-story-catering {
    padding: 40px 16px;
  }

  .ws-story-catering-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ws-story-img,
  .ws-catering-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .ws-story-catering {
    padding: 30px 12px;
  }

  .ws-story-text,
  .ws-catering-text {
    padding: 20px 16px;
  }

  .ws-story-heading,
  .ws-catering-heading {
    font-size: 1.4rem;
  }
}

/* ============================================
   5. Locations + Careers
   ============================================ */
.ws-locations-careers {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.ws-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.ws-location-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(44, 38, 33, 0.08);
  border: 1px solid rgba(124, 92, 62, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.ws-location-card:hover {
  box-shadow: 0 8px 28px rgba(44, 38, 33, 0.12);
  border-color: rgba(156, 28, 52, 0.2);
}

.ws-location-name {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 4px;
}

.ws-location-address {
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.ws-location-hours {
  color: var(--charcoal);
  font-size: 0.88rem;
  margin: 0;
  opacity: 0.85;
}

.ws-location-phone {
  margin: 0;
}

.ws-location-phone a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.ws-location-phone a:hover {
  text-decoration: underline;
}

.ws-location-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Careers Banner */
.ws-careers-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7a1628 100%);
  border-radius: 16px;
  padding: 32px;
  margin-top: 8px;
}

.ws-careers-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ws-careers-banner-text h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.ws-careers-banner-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

.ws-careers-banner .ws-btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--charcoal);
  flex-shrink: 0;
}

.ws-careers-banner .ws-btn-primary:hover,
.ws-careers-banner .ws-btn-primary:focus {
  background: #d4a65e;
  border-color: #d4a65e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .ws-locations-careers {
    padding: 40px 16px 30px;
  }

  .ws-locations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ws-careers-banner {
    padding: 24px 20px;
  }

  .ws-careers-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .ws-locations-careers {
    padding: 30px 12px 20px;
  }

  .ws-location-card {
    padding: 20px 16px;
  }

  .ws-location-name {
    font-size: 1.2rem;
  }

  .ws-careers-banner {
    padding: 20px 16px;
  }

  .ws-careers-banner-text h3 {
    font-size: 1.2rem;
  }
}

/* ============================================
   Order Modal (kept from previous design)
   ============================================ */
.ws-modal {
  display: none !important;
  position: fixed !important;
  z-index: 1000 !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(4px) !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

.ws-modal.show {
  display: flex !important;
  pointer-events: auto !important;
}

#orderModal {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#orderModal.show {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

body:not(.modal-open) #orderModal {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ws-modal-content {
  background-color: var(--surface);
  margin: auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  border: 1px solid rgba(124, 92, 62, 0.1);
  position: relative;
  z-index: 1001;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ws-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid rgba(124, 92, 62, 0.1);
}

.ws-modal-header h3 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.ws-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.ws-modal-close:hover {
  background: rgba(124, 92, 62, 0.1);
  color: var(--primary-color);
  transform: scale(1.1);
}

.ws-modal-body {
  padding: 24px;
}

.ws-modal-body p {
  margin: 0 0 24px 0;
  font-size: 1.1rem;
  color: var(--charcoal);
  text-align: center;
  font-family: var(--font-secondary);
}

.ws-order-modal-location {
  margin: -8px 0 20px;
  padding: 14px 14px 16px;
  border-radius: 12px;
  background: rgba(156, 28, 52, 0.06);
  border: 1px solid rgba(124, 92, 62, 0.15);
  text-transform: none !important;
}

.ws-order-modal-location * {
  text-transform: none !important;
}

.ws-order-modal-location-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

@media (min-width: 440px) {
  .ws-order-modal-location-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}

.ws-order-modal-location-summary {
  margin: 0;
  font-size: 1rem;
  color: var(--charcoal);
  font-family: var(--font-secondary);
}

.ws-order-modal-location-summary strong {
  font-family: var(--font-primary);
  color: var(--primary-color);
}

.ws-order-modal-switch-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 6px 10px;
  border: none;
  border-radius: 8px;
  background: rgba(156, 28, 52, 0.1);
  color: var(--primary-color);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.ws-order-modal-switch-loc i {
  font-size: 0.85rem;
  opacity: 0.9;
}

.ws-order-modal-switch-loc:hover,
.ws-order-modal-switch-loc:focus {
  background: var(--primary-color);
  color: #fff;
  outline: none;
  box-shadow: 0 2px 8px rgba(156, 28, 52, 0.25);
}

.ws-order-modal-switch-loc:hover i,
.ws-order-modal-switch-loc:focus i {
  opacity: 1;
}

.ws-order-modal-location-hint {
  margin: 12px 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--charcoal);
  opacity: 0.88;
  text-align: center;
  font-family: var(--font-secondary);
}

.ws-order-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ws-order-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--background);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  width: 100%;
}

.ws-order-option:hover {
  border-color: var(--primary-color);
  background: rgba(156, 28, 52, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 28, 52, 0.15);
}

.ws-order-option:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.ws-order-option i {
  font-size: 1.5rem;
  color: var(--accent-color);
  width: 24px;
  text-align: center;
}

.ws-order-option h4 {
  margin: 0 0 4px 0;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.ws-order-option p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .ws-modal-content {
    width: 95%;
    margin: 20px;
  }

  .ws-modal-header {
    padding: 20px 20px 12px 20px;
  }

  .ws-modal-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .ws-modal-content {
    width: 98%;
    margin: 10px;
  }

  .ws-modal-header {
    padding: 16px 16px 8px 16px;
  }

  .ws-modal-body {
    padding: 16px;
  }

  .ws-order-option {
    padding: 16px;
    gap: 12px;
  }

  .ws-order-option i {
    font-size: 1.3rem;
    width: 20px;
  }

  .ws-order-option h4 {
    font-size: 1.1rem;
  }

  .ws-order-option p {
    font-size: 0.85rem;
  }
}


/* --- pages/about.css --- */
/* ========================================
   About / Our Story â€” Narrative Sections
   ======================================== */

/* --- Page Sub-Navigation (Sticky) --- */
.ws-page-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: var(--ws-site-header-offset);
  z-index: 99;
  width: 100%;
}

.ws-page-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 960px;
}

.ws-page-nav-list::-webkit-scrollbar {
  display: none;
}

.ws-page-nav-link {
  display: block;
  padding: 12px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.ws-page-nav-link:hover,
.ws-page-nav-link:focus-visible {
  color: var(--primary-color);
}

.ws-page-nav-link.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* --- About Sections (shared) --- */
.ws-about-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
}

.ws-about-section + .ws-about-section {
  border-top: 1px solid var(--border-light);
}

.ws-about-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ws-about-title i {
  color: var(--accent-color);
  font-size: 1.1em;
}

/* --- Our Story: Side-by-Side Layout --- */
.ws-story-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.ws-story-photo {
  text-align: center;
}

.ws-story-photo .ws-family-img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(44, 38, 33, 0.12);
  transition: opacity 0.3s;
}

.ws-story-caption {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 10px;
}

.ws-story-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ws-story-text p {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.ws-story-lead {
  font-size: 1.1rem !important;
  font-weight: 500;
}

/* --- Our Journey: Vertical Timeline --- */
.ws-timeline-v {
  position: relative;
  padding-left: 48px;
}

.ws-timeline-v::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.ws-tl-item {
  position: relative;
  padding-bottom: 36px;
}

.ws-tl-item:last-child {
  padding-bottom: 0;
}

.ws-tl-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--primary-color);
  z-index: 2;
}

.ws-tl-year {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.ws-tl-body h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 6px;
}

.ws-tl-body p {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* --- Our Team: Staff Galleries --- */
.ws-staff-galleries-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.ws-staff-gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 160px;
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}

.ws-staff-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 16px rgba(44, 38, 33, 0.1);
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
}

.ws-staff-img.active {
  opacity: 1;
}

/* --- What People Say: Reuse homepage review styles --- */
.ws-about-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ws-about-reviews .ws-review-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.ws-about-reviews .ws-review-card:hover {
  box-shadow: 0 4px 20px rgba(44, 38, 33, 0.08);
  border-color: var(--accent-color);
}

.ws-about-reviews .ws-review-quote-icon {
  font-size: 1.4rem;
  color: var(--accent-color);
  opacity: 0.35;
}

.ws-about-reviews .ws-review-stars {
  color: var(--accent-color);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.ws-about-reviews .ws-review-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.ws-about-section .ws-review-text {
  text-transform: none !important;
}

.ws-about-section .text-normal,
.ws-about-section .ws-tl-body p,
.ws-about-section .ws-story-text p {
  text-transform: none !important;
}

.ws-about-reviews .ws-review-author {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.ws-about-reviews .ws-review-author i {
  font-size: 1rem;
  color: var(--primary-color);
}

/* --- Social buttons (used in locations panels) --- */
.ws-social-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ws-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
}

.ws-social-btn:hover {
  background: var(--charcoal);
}

.ws-location-reviews {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.ws-reviews-title {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  text-align: center;
}

.ws-review-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ws-review-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--charcoal);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.82rem;
  transition: background 0.2s;
}

.ws-review-btn:hover {
  background: var(--primary-color);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
  .ws-about-section {
    padding: 36px 16px;
  }

  .ws-about-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .ws-story-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ws-story-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .ws-timeline-v {
    padding-left: 36px;
  }

  .ws-timeline-v::before {
    left: 12px;
  }

  .ws-tl-item::before {
    left: -30px;
  }

  .ws-staff-galleries-container {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 280px;
  }

  .ws-gallery-2,
  .ws-gallery-3,
  .ws-gallery-4 {
    display: none !important;
  }

  .ws-about-reviews {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ws-page-nav-list {
    justify-content: flex-start;
    padding: 0 16px;
  }

  .ws-page-nav-link {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .ws-social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ws-review-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ws-review-btn {
    width: 100%;
    max-width: 150px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ws-page-nav-link {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .ws-staff-img {
    width: 160px;
    height: 160px;
  }

  .ws-staff-gallery {
    min-height: 200px;
  }
}


/* --- pages/locations.css --- */
/* Locations Page Styles */
.ws-locations-list {
  max-width: 90% !important;
  margin: 80px auto 0 auto !important;
  padding: 0 24px 48px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 48px !important;
  align-items: center !important;
}

.ws-locations-row {
  display: flex;
  width: 100%;
  gap: 4%;
  justify-content: center;
  align-items: stretch;
}

.ws-location {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  min-height: 500px;
  width: 48%;
  flex-shrink: 0;
}

.ws-location-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(44,38,33,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  justify-content: flex-start;
  width: 100%;
}

.ws-location-title:first-child {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.ws-location-title:not(:first-child) {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 16px;
  font-weight: 600;
}

.ws-location-info {
  font-family: var(--font-secondary);
  font-size: 1.08em;
  color: var(--charcoal);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  line-height: 1.6;
}

.ws-location-info p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-location-info a {
  color: var(--primary-color);
  text-decoration: underline;
}

.ws-location-info i {
  color: var(--accent-color);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.ws-location-map {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44,38,33,0.15);
  margin-top: 20px;
  flex-grow: 1;
  min-height: 220px;
  border: 1px solid var(--taupe);
}

/* Ensure iframe maps don't cause overflow */
.ws-location-map iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 220px;
  border: 0;
  display: block;
}

.ws-location-featured {
  border: 2.5px solid var(--primary-color);
  background: linear-gradient(90deg, var(--background) 80%, var(--accent-color) 100%);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.ws-location-new {
  background: var(--primary-color);
  color: #fff;
  font-size: 0.8em;
  font-weight: 800;
  border-radius: 12px;
  padding: 2px 10px;
  margin-left: 10px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(156,28,52,0.12);
}

/* Location Action Buttons */
.ws-location-actions {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
  width: 100%;
}

.ws-location-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ws-location-carryout {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.ws-location-carryout:hover,
.ws-location-carryout:focus {
  background: #8a1a2e;
  border-color: #8a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(156,28,52,0.25);
}

.ws-location-delivery {
  background: var(--accent-color);
  color: var(--charcoal);
  border-color: var(--accent-color);
}

.ws-location-delivery:hover,
.ws-location-delivery:focus {
  background: #b08f3a;
  border-color: #b08f3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(191,161,74,0.25);
}

.ws-location-coming-soon {
  background: var(--taupe);
  color: var(--charcoal);
  border-color: var(--taupe);
  cursor: not-allowed;
  opacity: 0.7;
}

.ws-location-btn i {
  font-size: 1.1em;
  width: 16px;
  text-align: center;
}

/* Special styling for "Select This Location" buttons on carryout page */
.ws-location-carryout .ws-location-btn i {
  font-size: 1.2em;
  width: 18px;
}

/* Make the carryout buttons on the carryout page more prominent */
.carryout-locations-page .ws-location-carryout {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8a1a2e 100%);
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(156,28,52,0.2);
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 14px 24px;
}

.carryout-locations-page .ws-location-carryout:hover,
.carryout-locations-page .ws-location-carryout:focus {
  background: linear-gradient(135deg, #8a1a2e 0%, #6d1524 100%);
  border-color: #8a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(156,28,52,0.35);
}

/* Location Recommendation Modal and Highlighting - Now imported from components/location-recommendation.css */

/* Responsive adjustments for locations */
@media (min-width: 1200px) {
  .ws-locations-list {
    max-width: 90%;
    gap: 60px;
    padding: 0 32px 48px 32px;
  }
  
  .ws-locations-row {
    gap: 5%;
  }
  
  .ws-location {
    padding: 40px 32px 32px 32px;
    min-height: 550px;
    width: 47.5%;
  }
  
  .ws-location-title {
    font-size: 1.6rem;
  }
  
  .ws-location-info {
    font-size: 1.1em;
  }
}

@media (max-width: 1199px) and (min-width: 769px) {
  .ws-locations-list {
    max-width: 95%;
    gap: 40px;
    padding: 0 20px 48px 20px;
  }
  
  .ws-locations-row {
    gap: 4%;
  }
  
  .ws-location {
    padding: 32px 24px 24px 24px;
    min-height: 480px;
    width: 48%;
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .ws-locations-list {
    max-width: 95%;
    margin: 32px auto 0 auto;
    padding: 0 16px 32px 16px;
    gap: 32px;
  }
  
  .ws-locations-row {
    flex-direction: column;
    gap: 32px;
  }
  
  .ws-location {
    width: 100%;
    min-height: auto;
    padding: 24px 20px 20px 20px;
  }
  
  .ws-location-title {
    font-size: 1.3rem;
  }
  
  .ws-location-title:first-child {
    font-size: 1.5rem;
  }
  
  .ws-location-title:not(:first-child) {
    font-size: 1.2rem;
  }
  
  .ws-location-info {
    font-size: 1rem;
  }
  
  .ws-location-map {
    margin-top: 16px;
  }
  
  /* Mobile button sizing */
  .ws-location-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
    min-height: 44px; /* Touch target size */
  }
  
  .carryout-locations-page .ws-location-carryout {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
  }
  
  .ws-location-btn i {
    font-size: 1rem;
    width: 16px;
  }
  
  .ws-location-carryout .ws-location-btn i {
    font-size: 1.1rem;
    width: 18px;
  }
}

@media (max-width: 480px) {
  .ws-locations-list {
    max-width: 98%;
    margin: 24px auto 0 auto;
    padding: 0 12px 24px 12px;
    gap: 24px;
  }
  
  .ws-locations-row {
    gap: 24px;
  }
  
  .ws-location {
    padding: 20px 16px 16px 16px;
  }
  
  .ws-location-title {
    font-size: 1.2rem;
  }
  
  .ws-location-title:first-child {
    font-size: 1.4rem;
  }
  
  .ws-location-title:not(:first-child) {
    font-size: 1.1rem;
  }
  
  .ws-location-info {
    font-size: 0.95rem;
  }
  
  /* Even smaller mobile devices */
  .ws-location-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
    min-height: 40px;
  }
  
  .carryout-locations-page .ws-location-carryout {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .ws-location-btn i {
    font-size: 0.9rem;
    width: 14px;
  }
  
  .ws-location-carryout .ws-location-btn i {
    font-size: 1rem;
    width: 16px;
  }
}

/* Additional spacing improvements */
.ws-hero {
  margin-bottom: 0;
}

.ws-locations-list {
  position: relative;
}

.ws-locations-list::before {
  content: '' !important;
  position: absolute !important;
  top: -40px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60px !important;
  height: 4px !important;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color)) !important;
  border-radius: 2px !important;
  opacity: 0.8 !important;
}

.ws-location {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-location:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44,38,33,0.2);
}

/* ---------- Visit page: merged locations + about (tabbed cafes) ---------- */
.ws-visit-locations {
  padding: 48px 16px 40px;
  background: var(--background);
}

.ws-visit-intro {
  text-align: center;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ws-visit-intro h2 {
  margin: 0 0 8px;
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.ws-visit-intro p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Tabs: underline style --- */
.ws-visit-tablist-scroll {
  overflow-x: auto;
  margin-bottom: 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ws-visit-tablist-scroll::-webkit-scrollbar {
  display: none;
}

.ws-visit-tablist {
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 0 auto;
  max-width: 700px;
  border-bottom: 2px solid var(--border-light);
}

.ws-visit-tab {
  cursor: pointer;
  padding: 14px 28px;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -2px;
}

.ws-visit-tab i {
  font-size: 0.85em;
}

.ws-visit-tab:hover,
.ws-visit-tab:focus {
  outline: none;
  color: var(--primary-color);
}

.ws-visit-tab[aria-selected="true"] {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  font-weight: 700;
}

/* --- Panel --- */
.ws-visit-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(44, 38, 33, 0.08);
  max-width: 960px;
  margin: 0 auto;
  animation: wsVisitFade 0.25s ease;
}

.ws-visit-panel[hidden] {
  display: none !important;
}

@keyframes wsVisitFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Detail grid: info left, map right --- */
.ws-visit-detail {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 768px) {
  .ws-visit-detail {
    grid-template-columns: 1fr 1fr;
  }
}

.ws-visit-detail-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ws-visit-kicker {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
}

.ws-visit-info {
  margin-bottom: 8px !important;
}

.ws-visit-info p {
  font-size: 1rem;
  line-height: 1.7;
  text-transform: none !important;
}

.ws-visit-info i {
  width: 20px;
  color: var(--accent-color);
}

.ws-visit-actions {
  margin-top: 16px !important;
  margin-bottom: 0;
}

.ws-visit-note {
  color: var(--text-secondary);
  margin: 0 0 12px;
  line-height: 1.55;
  font-size: 0.95rem;
  text-transform: none !important;
}

/* --- Social / review icon links --- */
.ws-visit-links {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.ws-visit-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ws-visit-link-label {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ws-visit-icon-row {
  display: flex;
  gap: 10px;
}

.ws-visit-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--background);
  color: var(--charcoal);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.ws-visit-icon-link:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Map (right column) --- */
.ws-visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44, 38, 33, 0.1);
  margin-top: 0;
  max-width: none;
}

.ws-visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 1 / 1;
  display: block;
}

@media (min-width: 768px) {
  .ws-visit-map iframe {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

/* --- Crumb variant (no social) --- */
.ws-visit-detail--crumb {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ws-visit-detail--crumb {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .ws-visit-panel {
    padding: 24px 20px;
  }

  .ws-visit-tab {
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  .ws-visit-kicker {
    font-size: 1.3rem;
  }

  .ws-visit-links {
    flex-direction: column;
    gap: 16px;
  }

  .ws-visit-map iframe {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ws-visit-panel {
    animation: none;
  }
}

/* --- pages/menus.css --- */
/* ========================================
   Menus Page â€” Tab-Based HTML Menus
   ======================================== */

/* --- Tab Navigation --- */
.ws-mtabs {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 16px 0;
  position: sticky;
  top: var(--ws-site-header-offset, 72px);
  z-index: 40;
  background: var(--background);
}

.ws-mtabs-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}

.ws-mtabs-scroll::-webkit-scrollbar {
  display: none;
}

.ws-mtab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.ws-mtab:hover,
.ws-mtab:focus-visible {
  color: var(--primary-color);
}

.ws-mtab-active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.ws-mtab i {
  font-size: 1.1em;
}

.ws-mtab-link {
  color: var(--accent-color);
  border-bottom-color: transparent;
}

.ws-mtab-link:hover,
.ws-mtab-link:focus-visible {
  color: var(--wood-brown);
}

/* --- Menu Content Area --- */
.ws-menu-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px 64px;
}

/* --- Panels (tab content) --- */
.ws-mpanel {
  display: none;
}

.ws-mpanel-active {
  display: block;
  animation: wsFadeIn 0.25s ease;
}

@keyframes wsFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Panel Header --- */
.ws-mpanel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.ws-mpanel-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 0.5px;
}

.ws-mpanel-actions {
  display: flex;
  gap: 8px;
}

.ws-mpanel-pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--charcoal);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.ws-mpanel-pdf:hover,
.ws-mpanel-pdf:focus-visible {
  background: var(--background);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* --- Category (section within a menu) --- */
.ws-mcategory {
  margin-bottom: 32px;
}

.ws-mcategory-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 4px;
  padding-left: 12px;
  border-left: 4px solid var(--accent-color);
}

.ws-mcategory-note {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 4px 0 12px;
  padding-left: 16px;
  line-height: 1.5;
}

/* --- Item Grid --- */
.ws-mgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* --- Item Card --- */
.ws-mcard {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.ws-mcard:hover {
  box-shadow: 0 4px 20px rgba(44, 38, 33, 0.1);
  border-color: var(--accent-color);
}

.ws-mcard-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.ws-mcard-name {
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.3;
}

.ws-mcard-price {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
  white-space: nowrap;
  flex-shrink: 0;
}

.ws-mcard-desc {
  font-family: var(--font-secondary);
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.ws-mcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

/* --- Tag Badges --- */
.ws-mtag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 20px;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ws-mtag i {
  font-size: 0.7em;
}

.ws-mtag-signature {
  background: rgba(191, 161, 74, 0.12);
  color: #8a6d1b;
}

.ws-mtag-vegan {
  background: rgba(76, 140, 43, 0.12);
  color: #3d6b1e;
}

.ws-mtag-spicy {
  background: rgba(200, 60, 30, 0.12);
  color: #a33518;
}

.ws-mtag-gf {
  background: rgba(66, 133, 180, 0.12);
  color: #2a6e96;
}

/* --- Extras (add-ons, toast options, etc.) --- */
.ws-mextras {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--surface-light);
  border-radius: var(--radius);
  border: 1px dashed var(--border-light);
}

.ws-mextra {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ws-mextra + .ws-mextra {
  margin-top: 6px;
}

.ws-mextra strong {
  color: var(--charcoal);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
  .ws-mtabs {
    padding: 20px 8px 0;
  }

  .ws-mtab {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .ws-menu-content {
    padding: 0 10px 48px;
  }

  .ws-mpanel-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 12px;
  }

  .ws-mpanel-title {
    font-size: 1.3rem;
  }

  .ws-mgrid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ws-mcategory-title {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .ws-mtabs {
    padding: 16px 4px 0;
  }

  .ws-mtab {
    padding: 8px 12px;
    font-size: 0.84rem;
    gap: 6px;
  }

  .ws-mcard {
    padding: 12px;
  }

  .ws-mcard-name {
    font-size: 0.92rem;
  }

  .ws-mcard-desc {
    font-size: 0.82rem;
  }

  .ws-mpanel-pdf {
    font-size: 0.78rem;
    padding: 6px 10px;
  }
}


/* --- pages/breads.css --- */
/* Breads Page Styles - mobile-first, smooth scroll */
.ws-breads-list {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 1;
  contain: layout style;
}

.ws-bread-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
  contain: layout style;
}

.ws-bread-section-title {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 2px;
  grid-column: 1 / -1; /* Make title span full width */
}

.ws-bread-section-desc {
  text-align: center;
  color: var(--charcoal);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  grid-column: 1 / -1; /* Make description span full width */
}

/* Bread Card Styles */
.ws-bread-card {
  display: flex;
  flex-direction: row;
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease, border-color 0.2s ease;
  border: 1px solid rgba(124, 92, 62, 0.1);
  height: auto;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  max-height: 100px;
  padding: 16px 20px;
  z-index: 1;
  contain: layout style paint;
}

/* Expanded state - fixed max-height for smooth animation (no layout thrash) */
.ws-bread-card.expanded {
  max-height: 1200px;
  flex-direction: column;
  padding: 25px;
}

.ws-bread-card.expanded .ws-bread-img {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  margin-right: 0;
  border-radius: 12px;
}

.ws-bread-card.expanded .ws-bread-info {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.ws-bread-card.expanded .ws-bread-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  width: 100%;
}

.ws-bread-card.expanded .ws-bread-desc,
.ws-bread-card.expanded .ws-bread-options {
  display: block;
  opacity: 1;
  width: 100%;
}

/* Collapsed state */
.ws-bread-card.collapsed {
  max-height: 100px;
  flex-direction: row;
  padding: 16px 20px;
}

.ws-bread-card.collapsed .ws-bread-img {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  margin-right: 16px;
  border-radius: 8px;
}

.ws-bread-card.collapsed .ws-bread-info {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.ws-bread-card.collapsed .ws-bread-title {
  font-size: 1.1rem;
  margin-bottom: 0;
  flex: 1;
}

.ws-bread-card.collapsed .ws-bread-desc,
.ws-bread-card.collapsed .ws-bread-options {
  display: none;
  opacity: 0;
}

.ws-bread-card.collapsed .ws-bread-option-select-wrapper {
  display: none;
}

/* Tablet and up - multi-column grid */
@media (min-width: 600px) {
  .ws-bread-section {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    margin-top: 32px;
  }
  .ws-bread-card {
    max-height: 120px;
    padding: 20px 25px;
  }
  .ws-bread-card.collapsed {
    max-height: 120px;
    padding: 20px 25px;
  }
  .ws-bread-card .ws-bread-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
  .ws-bread-card.collapsed .ws-bread-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
  .ws-bread-card .ws-bread-title {
    font-size: 1.1rem;
  }
}

/* Desktop */
@media (min-width: 900px) {
  .ws-bread-section {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 40px;
  }
}

.ws-bread-card .ws-bread-img {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  margin-right: 16px;
  flex-shrink: 0;
  transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, border-radius 0.3s ease;
  border-radius: 8px;
  object-fit: cover;
}

.ws-bread-card .ws-bread-info {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: flex-direction 0.3s ease, align-items 0.3s ease;
  min-width: 0;
}

.ws-bread-card .ws-bread-title {
  font-size: 1rem;
  margin-bottom: 0;
  flex: 1;
  transition: font-size 0.3s ease, margin 0.3s ease;
  color: var(--primary-color);
  font-family: var(--font-primary);
  line-height: 1.3;
}

.ws-bread-card .ws-bread-desc,
.ws-bread-card .ws-bread-options {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Removed duplicate ::after pseudo-element - using .ws-bread-arrow element instead */

.ws-bread-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44,38,33,0.12);
}

.ws-bread-card:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(44,38,33,0.15);
}

.ws-bread-card:focus .ws-bread-arrow {
  color: var(--accent-color);
}

/* Bread Options Styles */
.ws-bread-options {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(124, 92, 62, 0.1);
}

.ws-bread-option-section {
  margin-bottom: 15px;
}

.ws-bread-option-section:last-child {
  margin-bottom: 0;
}

.ws-bread-option-label {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ws-bread-option-values {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 8px;
}

.ws-bread-option-select-wrapper {
  margin-top: 8px;
}

.ws-bread-option-select {
  width: 100%;
  max-width: 300px;
  padding: 8px 12px;
  border: 1px solid rgba(124, 92, 62, 0.2);
  border-radius: 6px;
  font-size: 0.9rem;
  background: white;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color 0.3s ease;
  font-family: var(--font-secondary);
}

.ws-bread-option-select:hover {
  border-color: var(--primary-color);
}

.ws-bread-option-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(124, 92, 62, 0.1);
}

/* Responsive Design for Bread Cards + mobile-forward hero */
@media (max-width: 768px) {
  /* Compact hero on breads page */
  main .ws-hero-small .ws-hero-content {
    padding: 1.5rem 1rem;
  }
  main .ws-hero-small .ws-hero-title {
    font-size: 1.75rem;
  }
  main .ws-hero-small .ws-hero-tagline {
    font-size: 0.95rem;
  }
  .ws-bread-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
  
  .ws-bread-card {
    max-height: 100px;
    padding: 15px 20px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .ws-bread-card .ws-bread-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
  
  .ws-bread-card .ws-bread-title {
    font-size: 1rem;
  }
  
  .ws-bread-arrow {
    right: 15px;
  }
  
  .ws-bread-arrow i {
    font-size: 1rem;
  }
  
  /* Mobile expanded state */
  .ws-bread-card.expanded {
    max-height: 1200px;
    padding: 20px;
  }
  
  .ws-bread-card.expanded .ws-bread-img {
    width: 100%;
    height: 150px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .ws-bread-card.expanded .ws-bread-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .ws-bread-card.expanded .ws-bread-desc {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .ws-bread-section {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 12px;
  }
  
  .ws-bread-card {
    max-height: 90px;
    padding: 12px 15px;
  }
  
  .ws-bread-card .ws-bread-img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }
  
  .ws-bread-card .ws-bread-title {
    font-size: 0.9rem;
  }
  
  .ws-bread-arrow {
    right: 12px;
  }
  
  .ws-bread-arrow i {
    font-size: 0.9rem;
  }
  
  /* Small mobile expanded state */
  .ws-bread-card.expanded {
    max-height: 1200px;
    padding: 15px;
  }
  
  .ws-bread-card.expanded .ws-bread-img {
    width: 100%;
    height: 120px;
    margin-right: 0;
    margin-bottom: 12px;
  }
  
  .ws-bread-card.expanded .ws-bread-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .ws-bread-card.expanded .ws-bread-desc {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Ensure bread cards don't overlap with header */
.ws-bread-card {
  position: relative;
  z-index: 1;
}

/* Ensure breads list spacing (contain already set at top for scroll perf) */
.ws-breads-list {
  margin-top: 0;
  padding-top: 0;
}

/* Additional spacing fixes */
.ws-hero-small {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Ensure proper container spacing */
.ws-bread-section:first-child {
  margin-top: 0;
  padding-top: 0;
}

/* Dropdown Arrow Indicator */
.ws-bread-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--primary-color);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.ws-bread-arrow i {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
  will-change: transform;
}

.ws-bread-card:hover .ws-bread-arrow {
  color: var(--accent-color);
}

.ws-bread-card.expanded .ws-bread-arrow i {
  transform: rotate(180deg);
}

.ws-bread-card.collapsed .ws-bread-arrow i {
  transform: rotate(0deg);
}

/* Bread Order Controls */
.ws-bread-order-controls {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(124, 92, 62, 0.1);
}

.ws-bread-order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.ws-bread-quantity-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ws-bread-quantity-group label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
  white-space: nowrap;
}

.ws-bread-quantity {
  padding: 10px 12px;
  border: 1px solid rgba(124, 92, 62, 0.2);
  border-radius: 6px;
  font-size: 0.95rem;
  width: 80px;
  text-align: center;
  font-family: var(--font-secondary);
}

.ws-bread-quantity:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(124, 92, 62, 0.1);
}

.ws-add-to-order-btn {
  padding: 12px 24px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ws-add-to-order-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 92, 62, 0.3);
}

.ws-add-to-order-btn:active {
  transform: translateY(0);
}

.ws-remove-from-order-btn {
  padding: 12px 24px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.ws-remove-from-order-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.ws-remove-from-order-btn:active {
  transform: translateY(0);
}

/* Cart Badge in Navigation */
.ws-bread-cart-badge {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}

#breadOrderNavLink {
  position: relative;
}

/* Responsive adjustments for order controls */
@media (max-width: 768px) {
  .ws-bread-order-form {
    gap: 10px;
  }
  
  .ws-bread-quantity-group {
    flex-wrap: wrap;
  }
  
  .ws-add-to-order-btn {
    width: 100%;
  }
  
  .ws-bread-option-select {
    max-width: 100%;
  }
}

/* --- pages/social.css --- */
/* Social Page Styles */
.ws-social-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Social Slider Styles */
.ws-social-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ws-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
}

.ws-slide.active {
  opacity: 1;
}

.ws-slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.ws-slider-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.ws-slider-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ws-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.ws-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ws-dot.active,
.ws-dot:hover {
  background: white;
  transform: scale(1.2);
}

/* Ratings Section */
.ws-ratings-section {
  margin-bottom: 80px;
}

.ws-ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.ws-rating-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(124, 92, 62, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(124, 92, 62, 0.1);
}

.ws-rating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(124, 92, 62, 0.15);
}

.ws-rating-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ws-rating-header i {
  font-size: 2rem;
  color: var(--primary-color);
}

.ws-rating-header h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}

.ws-rating-score {
  margin-bottom: 25px;
}

.ws-rating-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.ws-rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.ws-rating-stars i {
  color: #ffd700;
  font-size: 1.2rem;
}

.ws-rating-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ws-rating-link {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ws-rating-link:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* Reviews Section */
.ws-reviews-section {
  margin-bottom: 80px;
}

.ws-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.ws-review-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(124, 92, 62, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(124, 92, 62, 0.1);
}

.ws-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(124, 92, 62, 0.15);
}

.ws-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.ws-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ws-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.ws-review-author h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 5px 0;
}

.ws-review-stars {
  display: flex;
  gap: 2px;
}

.ws-review-stars i {
  color: #ffd700;
  font-size: 0.9rem;
}

.ws-review-platform {
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.ws-review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-style: italic;
}

.ws-review-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Social Feeds Section */
.ws-social-feeds-section {
  margin-bottom: 80px;
}

.ws-social-feeds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.ws-social-feed-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(124, 92, 62, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(124, 92, 62, 0.1);
}

.ws-social-feed-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(124, 92, 62, 0.15);
}

.ws-social-feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ws-social-feed-header i {
  font-size: 2rem;
  color: var(--primary-color);
}

.ws-social-feed-header h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}

.ws-social-feed-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.ws-social-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ws-social-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ws-social-stats i {
  color: var(--primary-color);
}

.ws-social-feed-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ws-social-feed-link:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* Call to Action Section */
.ws-social-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--charcoal));
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  margin-top: 60px;
}

.ws-social-cta h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.ws-social-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.ws-social-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ws-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-cta-btn-primary {
  background: white;
  color: var(--primary-color);
}

.ws-cta-btn-primary:hover {
  background: #f8f6f3;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ws-cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.ws-cta-btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Social Page */
@media (max-width: 768px) {
  .ws-social-content {
    padding: 40px 20px;
  }
  
  .ws-ratings-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .ws-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ws-social-feeds-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ws-social-cta {
    padding: 40px 20px;
  }
  
  .ws-social-cta h2 {
    font-size: 2rem;
  }
  
  .ws-social-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .ws-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ws-rating-card,
  .ws-review-card,
  .ws-social-feed-card {
    padding: 20px;
  }
  
  .ws-rating-number {
    font-size: 2.5rem;
  }
  
  .ws-social-cta h2 {
    font-size: 1.8rem;
  }
  
  .ws-social-cta p {
    font-size: 1rem;
  }
}


/* --- pages/bread-order.css --- */
/* Bread Order System Styles */
/* Main Form Section */
.ws-form-section {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 24px;
}

.ws-form-wrapper {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44,38,33,0.08);
  padding: 40px;
  border: 1px solid rgba(124, 92, 62, 0.1);
}

.ws-form-top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ws-form-customer-info h3,
.ws-form-pickup-info h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 8px;
}

.ws-form-group {
  margin-bottom: 20px;
}

.ws-form-group label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-size: 1rem;
}

.ws-form-section-header {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-align: center;
  display: block;
}

.ws-form-group input,
.ws-form-group select,
.ws-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(124, 92, 62, 0.2);
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--surface);
}

.ws-form-group input:focus,
.ws-form-group select:focus,
.ws-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(156, 28, 52, 0.1);
}

.ws-form-help {
  display: block;
  font-size: 0.85rem;
  color: var(--taupe);
  margin-top: 4px;
  font-style: italic;
}

/* Optional field styling */
.ws-form-group select:not([required]) {
  border-color: var(--accent-color);
  background-color: rgba(191, 161, 74, 0.05);
}

.ws-form-group select:not([required]):focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(191, 161, 74, 0.1);
}

.ws-form-group select:not([required]) + .ws-form-help {
  color: var(--accent-color);
  font-weight: 500;
}

/* Lenexa Farmers Market specific styling */
.ws-lenexa-note {
  margin-top: 8px;
  padding: 8px 12px;
  background-color: rgba(191, 161, 74, 0.1);
  border-left: 3px solid var(--accent-color);
  border-radius: 4px;
}

.ws-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.ws-btn-primary {
  background: var(--primary-color);
  color: white;
}

.ws-btn-primary:hover {
  background: #7a1628;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(156, 28, 52, 0.25);
}

.ws-btn-secondary {
  background: var(--accent-color);
  color: var(--charcoal);
}

.ws-btn-secondary:hover {
  background: #b08f3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(191, 161, 74, 0.25);
}

.ws-form-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.ws-breads-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
  z-index: 5;
}

.ws-bread-instance {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 16px;
  position: relative;
}

.ws-bread-instance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dee2e6;
}

.ws-bread-name {
  font-weight: 600;
  color: #8B4513;
  font-size: 1.1em;
}

.ws-remove-bread {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.ws-remove-bread:hover {
  background: #c82333;
}

.ws-bread-actions {
  text-align: center;
  margin-top: 16px;
}

/* Bread Selection Modal */
.ws-bread-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.ws-bread-modal-content {
  background: white;
  padding: 32px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.ws-bread-modal-content h3 {
  margin-bottom: 24px;
  color: #8B4513;
  text-align: center;
}

.ws-bread-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

/* Unavailable bread note */
.ws-bread-unavailable-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  border-left: 4px solid #f39c12;
}

.ws-bread-unavailable-note h4 {
  color: #8B4513;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.ws-bread-unavailable-note p {
  margin: 0 0 8px 0;
  color: #5d4e37;
  font-size: 0.95rem;
  line-height: 1.4;
}

.ws-bread-unavailable-note p:last-child {
  margin-bottom: 0;
}

.ws-bread-option-btn {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.ws-bread-option-btn:hover {
  background: #8B4513;
  color: white;
  border-color: #8B4513;
}

/* Order Summary Modal */
.ws-order-summary-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.ws-order-summary-content {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ws-order-summary-header {
  background: #8B4513;
  color: white;
  padding: 24px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ws-order-summary-header h2 {
  margin: 0;
  font-size: 1.5em;
}

.ws-close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.ws-close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ws-order-summary-body {
  padding: 24px;
}

.ws-summary-section {
  margin-bottom: 24px;
}

.ws-summary-section h3 {
  color: #8B4513;
  border-bottom: 2px solid #8B4513;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 1.2em;
}

.ws-bread-instance {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ws-bread-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.ws-bread-item-header h4 {
  margin: 0;
  color: #8B4513;
  font-size: 16px;
}

.ws-remove-bread-btn {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-remove-bread-btn:hover {
  background: #c82333;
}

.ws-bread-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  align-items: end;
}

.ws-bread-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.ws-quantity-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ws-quantity-container label {
  font-weight: 600;
  color: #333;
  font-size: 12px;
}

.ws-quantity-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}

/* Responsive design for bread items */
@media (max-width: 768px) {
  .ws-bread-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.ws-summary-bread-item {
  background: #f8f9fa;
  border-left: 4px solid #8B4513;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 0 4px 4px 0;
}

.ws-summary-bread-name {
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 4px;
}

.ws-summary-bread-options {
  color: #666;
  font-size: 0.9em;
}

.ws-summary-total {
  font-weight: 600;
  font-size: 1.1em;
  color: #8B4513;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #dee2e6;
}

.ws-order-summary-actions {
  padding: 24px;
  border-top: 1px solid #dee2e6;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments for bread order system */
@media (max-width: 768px) {
  .ws-form-section {
    padding: 0 16px;
    margin: 32px auto;
  }
  
  .ws-form-wrapper {
    padding: 24px;
  }
  
  .ws-form-top-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ws-form-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .ws-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .ws-bread-modal-content {
    padding: 20px;
    width: 95%;
  }
  
  .ws-bread-options-grid {
    grid-template-columns: 1fr;
  }
  
  .ws-order-summary-content {
    width: 95%;
    margin: 20px;
  }
  
  .ws-order-summary-header {
    padding: 16px;
  }
  
  .ws-order-summary-body {
    padding: 16px;
  }
  
  .ws-order-summary-actions {
    padding: 16px;
    flex-direction: column;
  }
  
  .ws-order-summary-actions .ws-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ws-bread-instance {
    padding: 12px;
  }
  
  .ws-bread-instance-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .ws-bread-options-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .ws-bread-options-row select,
  .ws-bread-options-row input {
    width: 100%;
  }
}

/* Bread selection options styles */
.ws-bread-options-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.ws-size-select,
.ws-slice-select,
.ws-cut-select,
.ws-pack-select {
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  background-color: #fff;
  min-width: 80px;
  flex-shrink: 0;
}

.ws-size-select:focus,
.ws-slice-select:focus,
.ws-cut-select:focus,
.ws-pack-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.1);
}

.ws-qty-input {
  min-width: 60px;
  flex-shrink: 0;
}

/* Responsive adjustments for bread options */
@media (max-width: 768px) {
  .ws-bread-options-row {
    gap: 6px;
  }
  
  .ws-size-select,
  .ws-slice-select,
  .ws-cut-select,
  .ws-pack-select {
    font-size: 0.85rem;
    padding: 5px 6px;
    min-width: 70px;
  }
  
  .ws-qty-input {
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .ws-bread-options-row {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  
  .ws-size-select,
  .ws-slice-select,
  .ws-cut-select,
  .ws-pack-select,
  .ws-qty-input {
    width: 100%;
    min-width: unset;
  }
}

/* Cinnamon roll note styling */
.ws-cinnamon-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
  line-height: 1.3;
  flex-basis: 100%;
  order: 3;
}

@media (max-width: 768px) {
  .ws-cinnamon-note {
    font-size: 0.75rem;
    margin-top: 2px;
  }
}

/* Form success/error messages */
#formMessages {
  margin-bottom: 20px;
}

.ws-success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 12px 16px;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  font-weight: 500;
}

.ws-error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 12px 16px;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  font-weight: 500;
}

/* Enhanced Mobile Responsive Design for Bread Order Form */
@media (max-width: 768px) {
  .ws-form-section {
    margin: 24px auto;
    padding: 0 16px;
  }
  
  .ws-form-wrapper {
    padding: 24px 20px;
    border-radius: 12px;
  }
  
  .ws-form-top-section {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .ws-form-customer-info h3,
  .ws-form-pickup-info h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  
  .ws-form-section-header {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  
  .ws-form-group {
    margin-bottom: 20px;
  }
  
  .ws-form-group label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .ws-form-group input,
  .ws-form-group select,
  .ws-form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
    min-height: 44px; /* Touch target size */
  }
  
  .ws-form-help {
    font-size: 0.8rem;
    margin-top: 6px;
  }
  
  .ws-breads-list {
    gap: 16px;
  }
  
  .ws-bread-instance {
    padding: 16px;
    border-radius: 12px;
  }
  
  .ws-bread-instance-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .ws-bread-instance-title {
    font-size: 1.1rem;
  }
  
  .ws-bread-options-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .ws-bread-options-row select,
  .ws-bread-options-row input {
    width: 100%;
    padding: 12px 14px;
    min-height: 44px;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .ws-bread-actions {
    margin-top: 20px;
  }
  
  .ws-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
    min-height: 44px;
  }
  
  .ws-bread-modal-content {
    padding: 20px;
    width: 95%;
    border-radius: 12px;
  }
  
  .ws-bread-options-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ws-order-summary-content {
    width: 95%;
    margin: 20px;
    border-radius: 12px;
  }
  
  .ws-order-summary-header {
    padding: 16px;
    border-radius: 12px 12px 0 0;
  }
  
  .ws-order-summary-body {
    padding: 16px;
  }
  
  .ws-order-summary-actions {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }
  
  .ws-order-summary-actions .ws-btn {
    width: 100%;
    padding: 14px 20px;
    min-height: 44px;
  }
  
  /* Enhanced form validation styling */
  .ws-form-group input:invalid,
  .ws-form-group select:invalid,
  .ws-form-group textarea:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
  }
  
  .ws-form-group input:valid,
  .ws-form-group select:valid,
  .ws-form-group textarea:valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
  }
  
  /* Better spacing for mobile */
  .ws-form-group + .ws-form-group {
    margin-top: 24px;
  }
  
  /* Improved button states */
  .ws-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .ws-btn:active {
    transform: scale(0.98);
  }
}

@media (max-width: 480px) {
  .ws-bread-instance {
    padding: 12px;
    border-radius: 8px;
  }
  
  .ws-bread-instance-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .ws-bread-options-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .ws-bread-options-row select,
  .ws-bread-options-row input {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
  }
  
  .ws-form-wrapper {
    padding: 20px 16px;
  }
  
  .ws-form-section {
    padding: 0 12px;
  }
  
  .ws-form-customer-info h3,
  .ws-form-pickup-info h3 {
    font-size: 1.1rem;
  }
  
  .ws-form-section-header {
    font-size: 1.3rem;
  }
  
  .ws-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .ws-bread-modal-content,
  .ws-order-summary-content {
    width: 98%;
    margin: 10px;
    padding: 16px;
  }
  
  /* Even better touch targets for very small screens */
  .ws-form-group input,
  .ws-form-group select,
  .ws-form-group textarea,
  .ws-btn {
    min-height: 48px;
  }
  
  /* Improved spacing for very small screens */
  .ws-form-group {
    margin-bottom: 16px;
  }
  
  .ws-form-group label {
    margin-bottom: 8px;
  }
  
  /* Better error message display */
  .ws-error-message,
  .ws-success-message {
    padding: 12px 14px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}

/* Landscape orientation fixes for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .ws-form-wrapper {
    padding: 20px 16px;
  }
  
  .ws-form-top-section {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .ws-bread-modal-content,
  .ws-order-summary-content {
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .ws-form-group input,
  .ws-form-group select,
  .ws-form-group textarea {
    border-width: 1px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .ws-btn,
  .ws-bread-instance,
  .ws-modal-content {
    transition: none;
  }
}


/* --- pages/catering-order.css --- */
/* Catering Order Form Styles */

/* Hero Overlay - Background removed for cleaner look */



/* Delivery Address Field */
.ws-full-width {
  width: 100%;
}

.ws-delivery-info {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
}

.ws-delivery-info p {
  margin: 0 0 8px 0;
  font-size: 14px;
}

.ws-delivery-info p:last-child {
  margin-bottom: 0;
}

.ws-delivery-info strong {
  color: var(--primary-color);
}

/* Form Section */
.ws-form-section {
  padding: 48px 0;
  background: var(--background);
}

.ws-form-intro {
  text-align: center;
  margin-bottom: 48px;
}

.ws-form-intro h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-family: var(--font-primary);
}

.ws-form-intro p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 16px;
}

/* Form Groups */
.ws-form-group {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--taupe);
}

.ws-form-group h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 24px;
  font-family: var(--font-primary);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 12px;
}

/* Form Rows and Fields */
.ws-form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ws-form-field {
  flex: 1;
  min-width: 250px;
}

.ws-form-field label {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.ws-form-field input,
.ws-form-field select,
.ws-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--taupe);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-secondary);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--surface);
  color: var(--charcoal);
  box-sizing: border-box;
}

.ws-form-field input:focus,
.ws-form-field select:focus,
.ws-form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.ws-form-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* Menu Categories */
.ws-menu-category {
  margin-bottom: 32px;
}

.ws-menu-category h4 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--taupe);
}

.ws-menu-subheader {
  margin: 24px 0 16px 0;
  padding: 16px 20px;
  background: var(--surface-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.ws-menu-subheader h5 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.ws-menu-subheader p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  font-style: italic;
}

.ws-menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Menu Items */
.ws-menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--taupe);
  transition: border-color 0.2s, box-shadow 0.2s;
  gap: 16px;
  height: fit-content;
}

.ws-menu-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
}

.ws-item-info {
  width: 100%;
  min-width: 0; /* Prevent flex item from overflowing */
}

.ws-item-info h5 {
  color: var(--charcoal);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.ws-item-info p {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.ws-item-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.ws-item-per-person {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 4px;
  font-style: italic;
}

/* Multi-option pricing styles */
.ws-item-price .ws-price-option,
.ws-item-per-person .ws-per-person-option {
  display: block;
  margin-bottom: 2px;
}

.ws-item-price .ws-price-option:last-child,
.ws-item-per-person .ws-per-person-option:last-child {
  margin-bottom: 0;
}

.ws-item-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-width: auto;
}

.ws-item-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.ws-item-options input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  flex-shrink: 0;
}

.ws-item-options select {
  width: 100%;
  max-width: 200px;
  padding: 8px 12px;
  border: 2px solid var(--taupe);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--surface);
  color: var(--charcoal);
}

.ws-item-options select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.ws-item-options select:disabled {
  background: var(--taupe);
  color: var(--text-secondary);
  cursor: not-allowed;
}

.ws-item-options input[type="number"] {
  width: 100%;
  max-width: 120px;
  padding: 8px 12px;
  border: 2px solid var(--taupe);
  border-radius: var(--radius);
  text-align: center;
  font-size: 1rem;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.ws-item-options input[type="number"]:focus {
  outline: none;
  border-color: var(--primary-color);
}

.ws-item-options input[type="number"]:disabled {
  background: var(--taupe);
  color: var(--text-secondary);
  cursor: not-allowed;
}

/* Enhanced pricing display for complex items */
.ws-item-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.ws-price-option {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ws-price-label {
  font-weight: 600;
  color: var(--primary-color);
  min-width: 60px;
}

.ws-price-amount {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.ws-price-detail {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.ws-per-person-option {
  margin-bottom: 4px;
}

.ws-serves-note {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 4px;
}

/* Order Summary */
.ws-order-summary {
  background: var(--background);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--taupe);
}

.ws-order-summary p {
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
  margin: 0;
}

.ws-order-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.ws-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--taupe);
  gap: 16px;
}

.ws-item-name {
  font-weight: 600;
  color: var(--charcoal);
  flex: 1;
  min-width: 0;
}

.ws-item-qty {
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.ws-item-price {
  color: var(--primary-color);
  font-weight: 700;
  white-space: nowrap;
}

/* Total Section */
.ws-total-section {
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.ws-subtotal,
.ws-service-fee,
.ws-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 1.1rem;
}

.ws-subtotal,
.ws-service-fee {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ws-total {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* Form Actions */
.ws-form-actions {
  text-align: center;
  margin-top: 32px;
}

/* Additional Items Section */
.ws-add-item-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ws-add-item-btn:hover,
.ws-add-item-btn:focus {
  background: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.ws-add-item-btn:active {
  transform: translateY(0);
}

.ws-additional-item {
  background: var(--background);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ws-additional-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

.ws-additional-item-content {
  width: 100%;
}

.ws-remove-item-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-secondary);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ws-remove-item-btn:hover,
.ws-remove-item-btn:focus {
  background: #c82333;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.ws-remove-item-btn:active {
  transform: translateY(0);
}

.ws-submit-btn {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  border: none;
  padding: 16px 48px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ws-submit-btn:hover,
.ws-submit-btn:focus {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.3);
}

.ws-submit-btn:active {
  transform: translateY(0);
}

.ws-submit-btn:disabled {
  background: var(--taupe);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Error and Success Messages */
.ws-error-message {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.ws-error-message ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.ws-error-message li {
  margin-bottom: 4px;
}

/* Success Message */
.ws-success-message {
  text-align: center;
  padding: 48px 24px;
  background: #f0f8f0;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
}

.ws-success-message h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 16px;
}

.ws-success-message p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ws-form-section {
    padding: 32px 0;
  }
  
  .ws-form-group {
    padding: 24px 20px;
    margin-bottom: 24px;
  }
  
  .ws-form-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .ws-form-field {
    min-width: auto;
    width: 100%;
  }
  
  /* Mobile: Switch from 2-column grid to single column */
  .ws-menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .ws-menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }
  
  .ws-item-options {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
  }
  
  .ws-item-options select,
  .ws-item-options input[type="number"] {
    width: 100%;
    max-width: 200px;
  }
  
  .ws-additional-item {
    padding: 16px;
  }
  
  .ws-additional-item .ws-form-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .ws-additional-item .ws-form-field {
    min-width: auto;
    width: 100%;
  }
  
  .ws-add-item-btn {
    width: 100%;
    justify-content: center;
  }
  
  .ws-form-intro h2 {
    font-size: 2rem;
  }
  
  .ws-form-group h3 {
    font-size: 1.5rem;
  }
  
  .ws-menu-category h4 {
    font-size: 1.2rem;
  }
  
  .ws-order-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }
  
  .ws-item-name,
  .ws-item-qty,
  .ws-item-price {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .ws-item-per-person {
    font-size: 0.8rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  /* Special handling for complex pricing items like brioche cinnamon rolls */
  .ws-menu-item:has(.ws-item-price:contains("|")) .ws-item-price,
  .ws-menu-item:has(.ws-item-price:contains("Pan:")) .ws-item-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
  }
  
  /* Alternative approach for browsers that don't support :has() */
  .ws-item-price[data-complex="true"] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
  }
  
  .ws-item-price[data-complex="true"]::before {
    content: attr(data-pan-price);
    display: block;
  }
  
  .ws-item-price[data-complex="true"]::after {
    content: attr(data-individual-price);
    display: block;
  }
  .ws-item-pricing {
    gap: 6px;
  }
  
  .ws-price-option {
    gap: 6px;
  }
  
  .ws-price-label {
    min-width: 50px;
    font-size: 0.9rem;
  }
  
  .ws-price-amount {
    font-size: 1rem;
  }
  
  .ws-price-detail {
    font-size: 0.8rem;
  }
  
  .ws-per-person-option {
    font-size: 0.85rem;
  }
  
  .ws-serves-note {
    font-size: 0.75rem;
  }

}


@media (max-width: 480px) {
  .ws-price-label {
    min-width: 45px;
    font-size: 0.85rem;
  }
  
  .ws-price-amount {
    font-size: 0.95rem;
  }
  
  .ws-price-detail {
    font-size: 0.75rem;
  }
  
  .ws-per-person-option {
    font-size: 0.8rem;
  }
  
  .ws-serves-note {
    font-size: 0.7rem;
  }
  .ws-form-section {
    padding: 24px 0;
  }
  
  .ws-form-group {
    padding: 20px 16px;
    margin-bottom: 20px;
  }
  
  .ws-form-intro h2 {
    font-size: 1.8rem;
  }
  
  .ws-submit-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    width: 100%;
  }
  
  .ws-item-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
   /* Fix quantity input sizing on mobile */
   .ws-item-options input[type="number"] {
    width: 80px !important;
    max-width: 80px !important;
    min-width: 80px !important;
    padding: 10px 8px;
    font-size: 0.9rem;
  }
  
  /* Fix select dropdown sizing on mobile */
  .ws-item-options select {
    width: 100% !important;
    max-width: 180px !important;
    min-width: 150px !important;
    padding: 10px 8px;
    font-size: 0.9rem;
  }
  
  /* Make checkbox and label more touch-friendly */
  .ws-item-options label {
    padding: 8px 0;
    min-height: 44px; /* Touch target size */
    align-items: center;
  }
  
  .ws-item-options input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
  
  /* Stack options vertically on mobile for better spacing */
  .ws-item-options {
    gap: 16px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Even smaller mobile devices */
  .ws-item-options input[type="number"] {
    width: 70px !important;
    max-width: 70px !important;
    min-width: 70px !important;
    padding: 8px 6px;
    font-size: 0.85rem;
  }
  
  .ws-item-options select {
    width: 100% !important;
    max-width: 160px !important;
    min-width: 140px !important;
    padding: 8px 6px;
    font-size: 0.85rem;
  }
  
  .ws-item-options {
    gap: 12px;
  }
  
  .ws-item-options label {
    padding: 6px 0;
    min-height: 40px;
  }

  
  .ws-additional-item {
    padding: 12px;
  }
  
  .ws-additional-item .ws-form-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .ws-additional-item .ws-form-field {
    min-width: auto;
    width: 100%;
  }
  
  .ws-add-item-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .ws-menu-item {
    padding: 16px;
  }
  
  .ws-item-info h5 {
    font-size: 1.1rem;
  }
  
  .ws-item-info p {
    font-size: 0.9rem;
  }
  
  .ws-order-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    padding: 12px;
  }
  
  .ws-item-name,
  .ws-item-qty,
  .ws-item-price {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .ws-item-per-person {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  /* Complex pricing items on very small screens */
  .ws-menu-item:has(.ws-item-price:contains("|")) .ws-item-price,
  .ws-menu-item:has(.ws-item-price:contains("Pan:")) .ws-item-price,
  .ws-item-price[data-complex="true"] {
    font-size: 0.75rem;
    gap: 3px;
  }
  
  .ws-total-section {
    padding: 20px;
  }
  
  .ws-subtotal,
  .ws-service-fee,
  .ws-total {
    font-size: 1rem;
  }
}

/* Compatibility Mode Adjustments */
.ws-compatibility-mode .ws-menu-item {
  display: block;
}

.ws-compatibility-mode .ws-form-row {
  display: block;
}

.ws-compatibility-mode .ws-item-options {
  display: block;
  text-align: center;
}

.ws-compatibility-mode .ws-order-item {
  display: block;
  text-align: center;
}

.ws-compatibility-mode .ws-subtotal,
.ws-compatibility-mode .ws-service-fee,
.ws-compatibility-mode .ws-total {
  display: block;
  text-align: center;
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .ws-form-group {
    padding: 16px 12px;
    margin-bottom: 16px;
  }
  
  .ws-menu-item {
    padding: 12px;
  }
  
  .ws-item-info h5 {
    font-size: 1rem;
  }
  
  .ws-item-info p {
    font-size: 0.85rem;
  }
  
  .ws-form-field {
    min-width: auto;
    width: 100%;
  }
  
  .ws-additional-item {
    padding: 10px;
  }
  
  .ws-additional-item .ws-form-row {
    flex-direction: column;
    gap: 6px;
  }
  
  .ws-additional-item .ws-form-field {
    min-width: auto;
    width: 100%;
  }
  
  .ws-add-item-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .ws-submit-btn {
    padding: 12px 24px;
    font-size: 1rem;
    width: 100%;
  }
}

/* Form Validation Styles */
.ws-form-field input:invalid,
.ws-form-field select:invalid,
.ws-form-field textarea:invalid {
  border-color: #dc3545;
}

.ws-form-field input:invalid:focus,
.ws-form-field select:invalid:focus,
.ws-form-field textarea:invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.ws-form-field.required label::after {
  content: ' *';
  color: #dc3545;
}

.ws-tax,
.ws-delivery-charge,
.ws-per-person-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.ws-tax span:first-child,
.ws-delivery-charge span:first-child,
.ws-per-person-total span:first-child {
  color: var(--text-secondary);
  font-weight: 500;
}

.ws-tax span:last-child,
.ws-delivery-charge span:last-child,
.ws-per-person-total span:last-child {
  color: var(--text-primary);
  font-weight: 600;
}

.ws-form-note {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.4;
}

/* Quantity Container and Button Styles */
.ws-form-group .ws-quantity-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  flex-direction: row !important; /* Override bread order CSS */
}

.ws-quantity-container input[type="number"] {
  flex: 1;
  text-align: center;
  min-width: 80px;
}

.ws-quantity-minus,
.ws-quantity-plus {
  width: 36px;
  height: 36px;
  border: 2px solid var(--taupe);
  background: var(--surface);
  color: var(--charcoal);
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ws-quantity-minus:hover:not(:disabled),
.ws-quantity-plus:hover:not(:disabled) {
  background: var(--primary-color);
  color: var(--surface);
  border-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.ws-quantity-minus:focus:not(:disabled),
.ws-quantity-plus:focus:not(:disabled) {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
}

.ws-quantity-minus:disabled,
.ws-quantity-plus:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--border-light);
  color: var(--text-secondary);
}

/* Responsive adjustments for quantity buttons */
@media (max-width: 768px) {
  .ws-form-group .ws-quantity-container {
    gap: 6px;
    flex-direction: row !important; /* Ensure buttons stay side by side */
  }
  
  .ws-quantity-minus,
  .ws-quantity-plus {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .ws-form-group .ws-quantity-container input[type="number"] {
    min-width: 60px;
  }
}

/* Enhanced Mobile Responsive Design for Catering Order Form */
@media (max-width: 768px) {
  .ws-form-section {
    margin: 24px auto;
    padding: 0 16px;
  }
  
  .ws-form-wrapper {
    padding: 24px 20px;
    border-radius: 12px;
  }
  
  .ws-form-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .ws-form-intro p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .ws-form-group {
    padding: 20px 16px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  
  .ws-form-group h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  
  .ws-form-group label {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  
  .ws-form-group input,
  .ws-form-group select,
  .ws-form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
    min-height: 44px; /* Touch target size */
  }
  
  .ws-item-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .ws-item-options input[type="number"] {
    width: 80px !important;
    max-width: 80px !important;
    min-width: 80px !important;
    padding: 10px 8px;
    font-size: 16px;
    min-height: 44px;
  }
  
  .ws-item-options select {
    width: 100% !important;
    max-width: 180px !important;
    min-width: 150px !important;
    padding: 10px 8px;
    font-size: 16px;
    min-height: 44px;
  }
  
  .ws-item-options label {
    padding: 8px 0;
    min-height: 44px;
    align-items: center;
    font-size: 0.9rem;
  }
  
  .ws-item-options input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
  
  .ws-price-display {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
  }
  
  .ws-price-label {
    min-width: 60px;
    font-size: 0.9rem;
  }
  
  .ws-price-amount {
    font-size: 1.1rem;
  }
  
  .ws-price-detail {
    font-size: 0.8rem;
  }
  
  .ws-per-person-option {
    font-size: 0.85rem;
  }
  
  .ws-serves-note {
    font-size: 0.8rem;
  }
  
  .ws-submit-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    min-height: 44px;
  }
  
  /* Enhanced form validation styling */
  .ws-form-group input:invalid,
  .ws-form-group select:invalid,
  .ws-form-group textarea:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
  }
  
  .ws-form-group input:valid,
  .ws-form-group select:valid,
  .ws-form-group textarea:valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
  }
  
  /* Better spacing for mobile */
  .ws-form-group + .ws-form-group {
    margin-top: 24px;
  }
  
  /* Improved button states */
  .ws-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .ws-submit-btn:active {
    transform: scale(0.98);
  }
}

@media (max-width: 480px) {
  .ws-form-section {
    padding: 0 12px;
  }
  
  .ws-form-wrapper {
    padding: 20px 16px;
  }
  
  .ws-form-intro h2 {
    font-size: 1.6rem;
  }
  
  .ws-form-group {
    padding: 16px 12px;
    margin-bottom: 16px;
  }
  
  .ws-form-group h3 {
    font-size: 1.2rem;
  }
  
  .ws-form-group label {
    font-size: 0.9rem;
  }
  
  .ws-item-options {
    gap: 8px;
  }
  
  .ws-item-options input[type="number"] {
    width: 70px !important;
    max-width: 70px !important;
    min-width: 70px !important;
    padding: 8px 6px;
    font-size: 16px;
  }
  
  .ws-item-options select {
    max-width: 160px !important;
    min-width: 120px !important;
    padding: 8px 6px;
    font-size: 16px;
  }
  
  .ws-item-options label {
    font-size: 0.85rem;
    min-height: 48px;
  }
  
  .ws-item-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
  }
  
  .ws-price-label {
    min-width: 45px;
    font-size: 0.85rem;
  }
  
  .ws-price-amount {
    font-size: 0.95rem;
  }
  
  .ws-price-detail {
    font-size: 0.75rem;
  }
  
  .ws-per-person-option {
    font-size: 0.8rem;
  }
  
  .ws-serves-note {
    font-size: 0.7rem;
  }
  
  .ws-submit-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
    min-height: 48px;
  }
  
  /* Even better touch targets for very small screens */
  .ws-form-group input,
  .ws-form-group select,
  .ws-form-group textarea {
    min-height: 48px;
  }
  
  /* Improved spacing for very small screens */
  .ws-form-group {
    margin-bottom: 16px;
  }
  
  .ws-form-group label {
    margin-bottom: 8px;
  }
  
  /* Better error message display */
  .ws-error-message,
  .ws-success-message {
    padding: 12px 14px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}

/* Landscape orientation fixes for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .ws-form-wrapper {
    padding: 20px 16px;
  }
  
  .ws-item-options {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .ws-item-options input[type="number"] {
    width: 60px !important;
  }
  
  .ws-item-options select {
    width: 120px !important;
  }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .ws-form-group input,
  .ws-form-group select,
  .ws-form-group textarea {
    border-width: 1px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .ws-submit-btn,
  .ws-form-group,
  .ws-item-options {
    transition: none;
  }
}

/* Sticky Submit Button */
.ws-sticky-submit {
  position: fixed;
  bottom: 50px;
  right: 45%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-sticky-submit.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ws-sticky-submit-btn {
  background: linear-gradient(135deg, #800020 0%, #B8860B 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 140px;
  justify-content: center;
}

.ws-sticky-submit-btn:hover {
  background: linear-gradient(135deg, #B8860B 0%, #800020 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 35px rgba(128, 0, 32, 0.4);
}

.ws-sticky-submit-btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.ws-sticky-submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.ws-sticky-submit-btn:hover i {
  transform: translateX(2px);
}

/* Responsive adjustments for sticky submit */
@media (max-width: 768px) {
  .ws-sticky-submit {
    bottom: 30px;
    right: 40%;
  }
  
  .ws-sticky-submit-btn {
    padding: 14px 20px;
    font-size: 14px;
    min-width: 120px;
  }
  
  .ws-sticky-submit-btn i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {S
  .ws-sticky-submit {
    bottom: 25px;
    right: 40%;
  }
  
  .ws-sticky-submit-btn {
    padding: 12px 16px;
    font-size: 13px;
    min-width: 100px;
  }
  
  .ws-sticky-submit-btn span {
    display: none;
  }
  
  .ws-sticky-submit-btn i {
    font-size: 18px;
  }
}


/* --- pages/confirmation.css --- */
/* Confirmation Pages Styles */
/* Updated: 2025-01-05 - Moved from embedded styles to dedicated CSS file */

.ws-confirmation-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #800020 0%, #B8860B 100%);
    color: white;
    border-radius: 12px;
}

.ws-success-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.ws-confirmation-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
}

.ws-confirmation-subtitle {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.ws-order-details {
    background: white;
    padding: 0;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.ws-order-header {
    background: #800020;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ws-order-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.ws-order-id-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.ws-order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
}

.ws-info-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
}

.ws-info-icon {
    font-size: 24px;
    margin-right: 15px;
}

.ws-info-content h4 {
    margin: 0 0 5px 0;
    color: #8B4513;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ws-info-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.ws-order-items {
    margin: 30px 0;
    padding: 0 30px;
}

.ws-order-items h4 {
    color: #8B4513;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 8px;
}

.ws-items-list {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.ws-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.ws-item-row:last-child {
    border-bottom: none;
}

.ws-item-name {
    flex: 1;
}

.ws-item-name strong {
    color: #8B4513;
    font-size: 16px;
}

.ws-item-options {
    margin-top: 4px;
}

.ws-option-tag {
    background: #800020;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 6px;
    display: inline-block;
    margin-top: 4px;
}

.ws-item-quantity {
    background: #800020;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: bold;
    font-size: 14px;
}

.ws-total-summary {
    margin-top: 20px;
    padding: 15px;
    background: #800020;
    color: white;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

.ws-pricing-summary {
    margin: 30px 0;
    padding: 0 30px;
}

.ws-pricing-summary h4 {
    color: #800020;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #800020;
    padding-bottom: 8px;
}

.ws-pricing-grid {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.ws-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.ws-price-row:last-child {
    border-bottom: none;
}

.ws-total-row {
    background: #800020;
    color: white;
    margin: 10px -20px -20px -20px;
    padding: 15px 20px;
    border-radius: 0 0 8px 8px;
    font-size: 18px;
}

.ws-tax-exempt-note {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #333;
    background: #fff8e6;
    border: 1px solid #e6cf8f;
    border-radius: 8px;
}

.ws-special-instructions {
    margin: 30px 0;
    padding: 0 30px;
}

.ws-special-instructions h4 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.ws-special-instructions p {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 0;
    font-style: italic;
    color: #856404;
}

.ws-order-info {
    margin-bottom: 20px;
}

.ws-order-info p {
    margin: 8px 0;
    font-size: 16px;
}

.ws-status-pending {
    color: #ffc107 !important;
    font-weight: bold;
}

.ws-next-steps {
    margin: 30px 0;
    padding: 0 30px;
}

.ws-next-steps h4 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.ws-next-steps ol {
    margin-left: 20px;
    padding-left: 0;
}

.ws-next-steps li {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.ws-contact-info {
    background: #e9ecef;
    padding: 20px 30px;
    margin: 0;
}

.ws-contact-info h4 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.ws-contact-info p {
    margin: 8px 0;
    font-size: 16px;
}

.ws-catering-notes {
    background: #fff3cd;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    margin-top: 20px;
}

.ws-catering-notes h4 {
    color: #856404;
    margin-bottom: 10px;
}

.ws-catering-notes ul {
    margin-left: 20px;
}

.ws-catering-notes li {
    margin: 8px 0;
}

.ws-action-buttons {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
}

.ws-action-buttons .ws-btn {
    margin: 8px 12px;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-action-buttons .ws-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ws-action-buttons .ws-btn i {
    margin-right: 8px;
}

/* Additional styling for proper boxed layout */
.ws-order-details .ws-section {
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ws-order-details .ws-section-header {
    background: #8B4513;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
}

.ws-order-details .ws-section-content {
    padding: 20px;
}

/* Ensure proper spacing between sections */
.ws-order-details > * + * {
    margin-top: 20px;
}

/* Print styles */
@media print {
    .ws-hero, .ws-action-buttons {
        display: none !important;
    }
    
    .ws-order-details {
        background: white !important;
        box-shadow: none !important;
        border: 2px solid #8B4513 !important;
        margin: 0 !important;
        page-break-inside: avoid;
    }
    
    .ws-confirmation-header {
        background: #8B4513 !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .ws-order-header {
        background: #8B4513 !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    body {
        font-size: 12pt !important;
        line-height: 1.4 !important;
        background: white !important;
    }
    
    h1, h2, h3, h4 {
        color: #8B4513 !important;
    }
    
    .ws-info-card {
        break-inside: avoid;
        border: 1px solid #ddd !important;
    }
}

@media screen and (max-width: 768px) {
    .ws-order-info-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .ws-order-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .ws-action-buttons .ws-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .ws-next-steps, .ws-contact-info {
        padding: 0 20px;
    }
}


/* --- responsive/mobile.css --- */
/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* General Mobile Adjustments */
  body {
    font-size: 16px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Header Mobile */
  .ws-header {
    height: 56px;
  }
  
  /* Hero Mobile */
  .ws-hero {
    min-height: 50vh;
    max-height: 60vh;
  }
  
  .ws-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .ws-hero-content {
    padding: 20px;
  }
  
  .ws-hero-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 3px 16px #222, 0 1px 0 #222, 0 0px 2px rgba(255,255,255,0.12);
  }
  
  .ws-hero-tagline {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.4;
    text-shadow: 0 2px 8px var(--charcoal), 0 1px 0 #222;
  }
  
  .ws-hero-actions {
    display: none; /* Hide hero buttons on mobile */
  }
  
  /* Quick Links Mobile */
  .ws-quick-links {
    display: none; /* Hide quick links on mobile for cleaner layout */
  }
  
  /* Section Titles Mobile */
  .ws-section-title {
    font-size: 1.5rem;
    padding: 15px 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  /* Content Sections Mobile */
  .ws-retail,
  .ws-farmers-market,
  .ws-green-assoc,
  .ws-local-suppliers,
  .ws-featured-products {
    margin: 30px auto;
    padding: 0 12px;
  }
  
  .ws-retail-desc,
  .ws-green-desc,
  .ws-suppliers-desc {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .ws-farmers-desc {
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  /* Farmers Market Mobile */
  .ws-farmers-content {
    padding: 20px 16px;
    gap: 20px;
  }
  
  .ws-farmers-market .ws-section-title {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 20px;
  }
  
  /* Product Cards Mobile */
  .ws-product-card {
    margin-bottom: 20px;
    border-radius: 16px;
  }
  
  .ws-product-info {
    padding: 16px;
  }
  
  .ws-product-title {
    font-size: 1.2rem;
  }
  
  .ws-product-desc {
    font-size: 0.9rem;
  }
  
  .ws-product-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    min-height: 44px; /* Touch target size */
  }
  
  /* Enhanced Touch Targets */
  button,
  .ws-btn,
  .ws-nav-toggle,
  .ws-back-to-top,
  .ws-modal-close {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Improved Form Handling */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 12px 16px;
    border-radius: 8px;
    -webkit-appearance: none;
    appearance: none;
  }
  
  /* Better Form Spacing */
  .ws-form-group {
    margin-bottom: 24px;
  }
  
  .ws-form-group label {
    margin-bottom: 8px;
    font-size: 1rem;
  }
  
  /* Modal Improvements */
  .ws-modal {
    padding: 16px;
  }
  
  .ws-modal-content {
    width: 100%;
    max-width: 95%;
    margin: 20px auto;
    border-radius: 12px;
  }
  
  .ws-modal-header {
    padding: 16px 20px 12px 20px;
  }
  
  .ws-modal-body {
    padding: 20px;
  }
  
  /* Navigation Enhancements */
  .ws-nav-list {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
  }
  
  .ws-nav-list li a {
    padding: 14px 20px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  /* Improved Accessibility */
  .ws-nav-toggle:focus,
  .ws-btn:focus,
  .ws-modal-close:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
  }
  
  /* Better Image Handling */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Prevent Horizontal Scrolling */
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Enhanced Card Interactions */
  .ws-location,
  .ws-menu-section,
  .ws-bread-card,
  .ws-supplier-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .ws-location:active,
  .ws-menu-section:active,
  .ws-bread-card:active,
  .ws-supplier-card:active {
    transform: scale(0.98);
  }
  
  /* Improved Loading States */
  .ws-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
  }
  
  .ws-loading::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 3px solid var(--taupe);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Better Error Handling */
  .ws-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    border: 1px solid #f5c6cb;
  }
  
  .ws-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    border: 1px solid #c3e6cb;
  }
  
  /* Improved Footer */
  .ws-footer {
    padding: 30px 16px;
    margin-top: 60px;
  }
  
  .ws-footer-nav {
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .ws-footer-nav a {
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }
  
  .ws-footer-nav a:hover,
  .ws-footer-nav a:focus {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Back to Top Button */
  .ws-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  
  /* Enhanced Scroll Behavior */
  html {
    scroll-behavior: smooth;
  }
  
  /* Better Focus Management */
  .ws-nav-list:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: -2px;
  }
  
  /* Improved Text Selection */
  ::selection {
    background-color: var(--primary-color);
    color: white;
  }
  
  ::-moz-selection {
    background-color: var(--primary-color);
    color: white;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .ws-hero {
    min-height: 45vh;
    max-height: 55vh;
  }
  
  .ws-hero-title {
    font-size: 1.6rem;
  }
  
  .ws-hero-tagline {
    font-size: 0.95rem;
  }
  
  .ws-section-title {
    font-size: 1.4rem;
    padding: 12px 16px;
  }
  
  .ws-main-card {
    margin: 16px auto;
    padding: 16px 12px;
  }
  
  .ws-locations-list,
  .ws-menus-list,
  .ws-bread-section {
    padding: 0 8px 24px 8px;
  }
  
  .ws-location,
  .ws-menu-section {
    padding: 16px 12px 12px 12px;
  }
  
  .ws-bread-card {
    padding: 10px 12px;
  }
  
  .ws-bread-card .ws-bread-img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  
  .ws-bread-card .ws-bread-title {
    font-size: 0.85rem;
  }
  
  .ws-social-content,
  .ws-social-cta {
    padding: 30px 16px;
  }
  
  .ws-social-cta h2 {
    font-size: 1.6rem;
  }
  
  .ws-footer {
    padding: 24px 12px;
  }
  
  .ws-bread-modal-content,
  .ws-order-summary-content {
    width: 98%;
    margin: 10px;
    padding: 16px;
  }
  
  .ws-modal {
    margin: 10px;
    padding: 16px;
  }
}

/* Very small mobile devices */
@media (max-width: 360px) {
  .ws-hero-title {
    font-size: 1.4rem;
  }
  
  .ws-hero-tagline {
    font-size: 0.9rem;
  }
  
  .ws-section-title {
    font-size: 1.3rem;
    padding: 10px 12px;
  }
  
  .ws-main-card {
    padding: 12px 8px;
  }
  
  .ws-location,
  .ws-menu-section {
    padding: 12px 8px 8px 8px;
  }
  
  .ws-bread-card {
    padding: 8px 10px;
  }
  
  .ws-bread-card .ws-bread-img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  
  .ws-bread-card .ws-bread-title {
    font-size: 0.8rem;
  }
  
  .ws-social-content,
  .ws-social-cta {
    padding: 24px 12px;
  }
  
  .ws-social-cta h2 {
    font-size: 1.4rem;
  }
  
  .ws-footer {
    padding: 20px 8px;
  }
}

/* Extra extra small mobile devices (for very narrow screens) */
@media (max-width: 320px) {
  .ws-locations-list {
    padding: 0 4px 16px 4px; /* Absolute minimal padding */
  }
  
  .ws-location {
    padding: 10px 6px 6px 6px;
  }
  
  .ws-location-title {
    font-size: 1.1rem;
  }
  
  .ws-location-info {
    font-size: 0.9rem;
  }
  
  .ws-location-map iframe {
    height: 160px; /* Very small map for very small screens */
  }
  
  .ws-location-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
    min-height: 40px;
  }
  
  .ws-hero-title {
    font-size: 1.3rem;
  }
  
  .ws-hero-tagline {
    font-size: 0.85rem;
  }
  
  .ws-section-title {
    font-size: 1.2rem;
    padding: 8px 10px;
  }
  
  .ws-main-card {
    padding: 10px 6px;
  }
}


/* --- responsive/tablet.css --- */
/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 991px) {
  /* General Tablet Adjustments */
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Header Tablet */
  .ws-header {
    height: 56px;
  }
  
  /* Hero Tablet */
  .ws-hero {
    min-height: 55vh;
    max-height: 65vh;
  }
  
  .ws-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .ws-hero-content {
    padding: 30px;
  }
  
  .ws-hero-title {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 3px 16px #222, 0 1px 0 #222, 0 0px 2px rgba(255,255,255,0.12);
  }
  
  .ws-hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.4;
    text-shadow: 0 2px 8px var(--charcoal), 0 1px 0 #222;
  }
  
  .ws-hero-actions {
    display: none; /* Hide hero buttons on tablet */
  }
  
  /* Quick Links Tablet */
  .ws-quick-links ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .ws-quick-links li {
    flex: 1 1 200px;
    max-width: 250px;
  }
  
  .ws-quick-links a {
    padding: 20px 0 16px 0;
    justify-content: center;
  }
  
  /* Section Titles Tablet */
  .ws-section-title {
    font-size: 1.8rem;
    padding: 18px 25px;
    text-align: center;
  }
  
  /* Content Sections Tablet */
  .ws-retail,
  .ws-farmers-market,
  .ws-green-assoc,
  .ws-local-suppliers,
  .ws-featured-products {
    margin: 50px auto;
    padding: 0 20px;
  }
  
  .ws-retail-desc,
  .ws-green-desc,
  .ws-suppliers-desc {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .ws-farmers-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  /* Farmers Market Tablet */
  .ws-farmers-content {
    padding: 30px 25px;
    gap: 30px;
  }
  
  .ws-farmers-market .ws-section-title {
    background: rgba(255, 255, 255, 0.96);
    padding: 18px 25px;
  }
  
  /* Product Cards Tablet */
  .ws-product-card {
    margin-bottom: 24px;
    border-radius: 20px;
  }
  
  .ws-product-info {
    padding: 20px;
  }
  
  .ws-product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .ws-product-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* About Page Tablet */
  .ws-main-card {
    margin: 40px auto;
    padding: 28px 20px;
    border-radius: 30px;
  }
  
  .ws-family-img {
    max-width: 100%;
    min-height: 240px;
    max-height: 340px;
    border-radius: 20px;
  }
  
  .ws-staff-galleries-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Ensure galleries 1 and 2 are visible on tablet */
  .ws-gallery-1,
  .ws-gallery-2 {
    display: block !important;
  }
  
  .ws-staff-gallery {
    padding: 18px;
    min-height: 180px;
  }
  
  .ws-staff-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
  }
  
  /* Hide galleries 3 and 4 on tablet */
  .ws-gallery-3,
  .ws-gallery-4 {
    display: none;
  }
  
  /* Locations Tablet */
  .ws-locations-list {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 12px 32px 12px;
  }
  
  .ws-location {
    padding: 24px 20px 20px 20px;
    border-radius: 24px;
  }
  
  .ws-location-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  
  .ws-location-actions {
    gap: 10px;
    margin-top: 20px;
  }
  
  .ws-location-btn {
    padding: 14px 20px;
    min-height: 48px;
    border-radius: 12px;
  }
  
  /* Menus Tablet */
  .ws-menus-list {
    gap: 30px;
    padding: 0 16px 40px 16px;
  }
  
  .ws-menu-section {
    padding: 24px 20px 20px 20px;
    border-radius: 24px;
  }
  
  .ws-menu-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  
  .ws-menu-download-section {
    justify-content: center;
    margin-top: 20px;
  }
  
  .ws-menu-download-btn {
    padding: 12px 20px;
    font-size: 1em;
    min-height: 48px;
    border-radius: 12px;
  }
  
  /* Breads Tablet */
  .ws-bread-section {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 16px;
  }
  
  .ws-bread-card {
    max-height: 100px;
    padding: 15px 20px;
    border-radius: 20px;
  }
  
  .ws-bread-card .ws-bread-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 10px;
  }
  
  .ws-bread-card .ws-bread-title {
    font-size: 1rem;
    font-weight: 600;
  }
  
  /* Social Tablet */
  .ws-social-content {
    padding: 50px 20px;
  }
  
  .ws-ratings-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .ws-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ws-social-feeds-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ws-social-cta {
    padding: 50px 30px;
    text-align: center;
  }
  
  .ws-social-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  
  .ws-social-cta-buttons {
    gap: 16px;
    justify-content: center;
  }
  
  .ws-cta-btn {
    padding: 16px 24px;
    min-height: 48px;
    border-radius: 12px;
  }
  
  /* Footer Tablet */
  .ws-footer {
    padding: 35px 20px;
    margin-top: 70px;
    text-align: center;
  }
  
  .ws-footer-nav {
    gap: 25px;
    margin-bottom: 20px;
    justify-content: center;
  }
  
  /* Bread Order Tablet */
  .ws-bread-modal-content {
    padding: 24px;
    width: 90%;
    border-radius: 24px;
  }
  
  .ws-order-summary-content {
    width: 90%;
    margin: 30px;
    border-radius: 24px;
  }
  
  .ws-order-summary-header {
    padding: 20px;
    border-radius: 20px 20px 0 0;
  }
  
  .ws-order-summary-body {
    padding: 20px;
  }
  
  .ws-order-summary-actions {
    padding: 20px;
    gap: 16px;
  }
  
  .ws-order-summary-actions .ws-btn {
    padding: 16px 24px;
    min-height: 48px;
    border-radius: 12px;
  }
  
  /* Form improvements for tablet */
  .ws-form-group {
    margin-bottom: 24px;
  }
  
  .ws-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .ws-form-group input,
  .ws-form-group select,
  .ws-form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid var(--taupe);
    min-height: 48px;
  }
  
  /* Button improvements for tablet */
  .ws-btn {
    min-height: 48px;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 12px;
  }
  
  /* Modal improvements for tablet */
  .ws-modal {
    padding: 24px;
    border-radius: 24px;
    margin: 30px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  
  /* Timeline improvements for tablet */
  .ws-timeline-nav {
    overflow-x: auto;
    padding-bottom: 20px;
  }
  
  .ws-timeline-nav-track {
    min-width: max-content;
    padding: 0 24px;
  }
  
  .ws-timeline-nav-item {
    min-width: 90px;
    padding: 10px 14px;
  }
  
  /* Suppliers grid improvements for tablet */
  .ws-suppliers-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 0 16px;
  }
  
  .ws-supplier-card {
    border-radius: 20px;
    padding: 20px;
  }
  
  .ws-supplier-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }
  
  .ws-supplier-name {
    font-size: 1.2rem;
    margin: 16px 0 8px 0;
  }
  
  .ws-supplier-specialty {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Medium tablet specific adjustments */
@media (min-width: 769px) and (max-width: 850px) {
  .ws-hero-title {
    font-size: 1.9rem;
  }
  
  .ws-hero-tagline {
    font-size: 1.05rem;
  }
  
  .ws-section-title {
    font-size: 1.7rem;
  }
  
  .ws-locations-list {
    padding: 0 8px 28px 8px;
  }
  
  .ws-location {
    padding: 20px 16px 16px 16px;
  }
  
  .ws-menus-list {
    padding: 0 12px 36px 12px;
  }
  
  .ws-menu-section {
    padding: 20px 16px 16px 16px;
  }
  
  .ws-bread-section {
    padding: 0 12px;
  }
  
  .ws-bread-card {
    padding: 12px 16px;
  }
  
  .ws-social-content,
  .ws-social-cta {
    padding: 40px 16px;
  }
  
  .ws-social-cta h2 {
    font-size: 2rem;
  }
  
  .ws-footer {
    padding: 30px 16px;
  }
}


/* --- responsive/desktop.css --- */
/* Desktop Responsive Styles */
@media (min-width: 769px) {
  /* General Desktop Adjustments */
  body {
    font-size: 17px;
    line-height: 1.6;
  }
  
  /* Header: height follows .ws-nav (72px at â‰¥992px, 56px at narrower â€” see navigation.css / tablet / mobile).
     Do not fix .ws-header to 56px here; that clipped the 64px logo on large screens. */
  
  /* Hero Desktop */
  .ws-hero {
    min-height: 60vh;
    max-height: 70vh;
  }
  
  .ws-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .ws-hero-content {
    padding: 40px;
  }
  
  .ws-hero-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 3px 16px #222, 0 1px 0 #222, 0 0px 2px rgba(255,255,255,0.12);
  }
  
  .ws-hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 28px;
    line-height: 1.4;
    text-shadow: 0 2px 8px var(--charcoal), 0 1px 0 #222;
  }
  
  .ws-hero-actions {
    gap: 20px;
  }
  
  .ws-hero-btn {
    padding: 18px 32px;
    font-size: 1.1rem;
    min-height: 52px;
    border-radius: 16px;
  }
  
  /* Quick Links Desktop */
  .ws-quick-links ul {
    flex-direction: row;
    justify-content: center;
  }
  
  .ws-quick-links li {
    flex: 1 1 120px;
    border-right: 1px solid var(--taupe);
    max-width: 180px;
  }
  
  .ws-quick-links li:last-child {
    border-right: none;
  }
  
  .ws-quick-links a {
    padding: 18px 0 12px 0;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }
  
  /* Section Titles Desktop */
  .ws-section-title {
    font-size: 2.2rem;
    padding: 20px 30px;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  
  /* Content Sections Desktop */
  .ws-retail,
  .ws-farmers-market,
  .ws-green-assoc,
  .ws-local-suppliers,
  .ws-featured-products {
    margin: 60px auto;
    padding: 0 24px;
    max-width: 1200px;
  }
  
  .ws-retail-desc,
  .ws-green-desc,
  .ws-suppliers-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .ws-farmers-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  }
  
  /* Farmers Market Desktop */
  .ws-farmers-content {
    padding: 40px;
    gap: 40px;
  }
  
  .ws-farmers-market .ws-section-title {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
  }
  
  /* Product Cards Desktop */
  .ws-product-card {
    margin-bottom: 30px;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ws-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,38,33,0.12);
  }
  
  .ws-product-info {
    padding: 24px;
  }
  
  .ws-product-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .ws-product-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* About Page Desktop */
  .ws-main-card {
    margin: 48px auto;
    padding: 32px 24px 40px 24px;
    border-radius: 36px;
    max-width: 1000px;
  }
  
  .ws-family-img {
    max-width: 520px;
    min-height: 260px;
    max-height: 380px;
    border-radius: 24px;
  }
  
  .ws-staff-galleries-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  
  /* Ensure all galleries are visible on desktop */
  .ws-gallery-1,
  .ws-gallery-2,
  .ws-gallery-3,
  .ws-gallery-4 {
    display: block !important;
  }
  
  .ws-staff-gallery {
    padding: 20px;
    min-height: 200px;
  }
  
  .ws-staff-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  
  .ws-staff-img:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }
  
  /* Locations Desktop */
  .ws-locations-list {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 16px 48px 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ws-location {
    padding: 32px 24px 24px 24px;
    border-radius: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ws-location:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,38,33,0.12);
  }
  
  .ws-location-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .ws-location-actions {
    gap: 12px;
    margin-top: 24px;
  }
  
  .ws-location-btn {
    padding: 16px 24px;
    min-height: 52px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ws-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,38,33,0.15);
  }
  
  /* Menus Desktop */
  .ws-menus-list {
    gap: 40px;
    padding: 0 16px 48px 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ws-menu-section {
    padding: 32px 24px 24px 24px;
    border-radius: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ws-menu-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,38,33,0.12);
  }
  
  .ws-menu-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .ws-menu-download-section {
    justify-content: flex-start;
    margin-top: 24px;
  }
  
  .ws-menu-download-btn {
    padding: 10px 16px;
    font-size: 0.9em;
    min-height: 44px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ws-menu-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,38,33,0.15);
  }
  
  /* Breads Desktop */
  .ws-bread-section {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ws-bread-card {
    max-height: 120px;
    padding: 20px 25px;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ws-bread-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,38,33,0.12);
  }
  
  .ws-bread-card .ws-bread-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 12px;
  }
  
  .ws-bread-card .ws-bread-title {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  /* Social Desktop */
  .ws-social-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ws-ratings-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .ws-reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .ws-social-feeds-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .ws-social-cta {
    padding: 60px 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .ws-social-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
  }
  
  .ws-social-cta-buttons {
    gap: 20px;
    justify-content: center;
  }
  
  .ws-cta-btn {
    padding: 18px 32px;
    min-height: 52px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ws-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,38,33,0.15);
  }
  
  /* Footer Desktop */
  .ws-footer {
    padding: 40px 24px;
    margin-top: 80px;
    text-align: center;
  }
  
  .ws-footer-nav {
    gap: 30px;
    justify-content: center;
    margin-bottom: 24px;
  }
  
  /* Bread Order Desktop */
  .ws-bread-modal-content {
    padding: 32px;
    width: 90%;
    border-radius: 28px;
  }
  
  .ws-order-summary-content {
    width: 90%;
    margin: 40px;
    border-radius: 28px;
  }
  
  .ws-order-summary-header {
    padding: 24px;
    border-radius: 24px 24px 0 0;
  }
  
  .ws-order-summary-body {
    padding: 24px;
  }
  
  .ws-order-summary-actions {
    padding: 24px;
    gap: 20px;
  }
  
  .ws-order-summary-actions .ws-btn {
    padding: 18px 28px;
    min-height: 52px;
    border-radius: 16px;
  }
  
  /* Form improvements for desktop */
  .ws-form-group {
    margin-bottom: 28px;
  }
  
  .ws-form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1rem;
  }
  
  .ws-form-group input,
  .ws-form-group select,
  .ws-form-group textarea {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid var(--taupe);
    min-height: 52px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ws-form-group input:focus,
  .ws-form-group select:focus,
  .ws-form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(156, 28, 52, 0.1);
    outline: none;
  }
  
  /* Button improvements for desktop */
  .ws-btn {
    min-height: 52px;
    padding: 16px 28px;
    font-size: 1rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ws-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,38,33,0.15);
  }
  
  /* Modal improvements for desktop */
  .ws-modal {
    padding: 32px;
    border-radius: 28px;
    margin: 40px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  /* Timeline improvements for desktop */
  .ws-timeline-nav {
    overflow-x: auto;
    padding-bottom: 24px;
  }
  
  .ws-timeline-nav-track {
    min-width: max-content;
    padding: 0 32px;
  }
  
  .ws-timeline-nav-item {
    min-width: 100px;
    padding: 12px 16px;
    transition: transform 0.3s ease;
  }

  .ws-timeline-nav-item:hover {
    transform: translateY(-2px);
  }
  
  /* Suppliers grid improvements for desktop */
  .ws-suppliers-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ws-supplier-card {
    border-radius: 24px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ws-supplier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,38,33,0.12);
  }
  
  .ws-supplier-img {
    width: 90px;
    height: 90px;
    border-radius: 16px;
  }
  
  .ws-supplier-name {
    font-size: 1.3rem;
    margin: 20px 0 10px 0;
  }
  
  .ws-supplier-specialty {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Large Desktop Optimizations */
@media (min-width: 1200px) {
  .ws-container {
    max-width: 1400px;
  }
  
  .ws-hero {
    min-height: 70vh;
    max-height: 80vh;
  }
  
  .ws-hero-img {
    height: 70vh;
    min-height: 500px;
  }
  
  .ws-hero-title {
    font-size: 3rem;
  }
  
  .ws-hero-tagline {
    font-size: 1.3rem;
  }
  
  .ws-section-title {
    font-size: 2.5rem;
  }
  
  .ws-locations-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
  }
  
  .ws-bread-section {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 1400px;
  }
  
  .ws-suppliers-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 1400px;
  }
  
  .ws-social-content {
    max-width: 1400px;
  }
  
  .ws-social-cta {
    max-width: 1200px;
  }
  
  .ws-main-card {
    max-width: 1200px;
  }
  
  .ws-retail,
  .ws-farmers-market,
  .ws-green-assoc,
  .ws-local-suppliers,
  .ws-featured-products {
    max-width: 1400px;
  }
}

/* Extra Large Desktop */
@media (min-width: 1600px) {
  .ws-container {
    max-width: 1600px;
  }
  
  .ws-hero {
    min-height: 80vh;
    max-height: 90vh;
  }
  
  .ws-hero-img {
    height: 80vh;
    min-height: 600px;
  }
  
  .ws-hero-title {
    font-size: 3.5rem;
  }
  
  .ws-hero-tagline {
    font-size: 1.4rem;
  }
  
  .ws-section-title {
    font-size: 2.8rem;
  }
  
  .ws-locations-list {
    max-width: 1600px;
  }
  
  .ws-bread-section {
    max-width: 1600px;
  }
  
  .ws-suppliers-grid {
    max-width: 1600px;
  }
  
  .ws-social-content {
    max-width: 1600px;
  }
  
  .ws-social-cta {
    max-width: 1400px;
  }
  
  .ws-main-card {
    max-width: 1400px;
  }
  
  .ws-retail,
  .ws-farmers-market,
  .ws-green-assoc,
  .ws-local-suppliers,
  .ws-featured-products {
    max-width: 1600px;
  }
}

/* Ultra Wide Desktop */
@media (min-width: 1920px) {
  .ws-container {
    max-width: 1800px;
  }
  
  .ws-hero {
    min-height: 85vh;
    max-height: 95vh;
  }
  
  .ws-hero-img {
    height: 85vh;
    min-height: 700px;
  }
  
  .ws-hero-title {
    font-size: 4rem;
  }
  
  .ws-hero-tagline {
    font-size: 1.5rem;
  }
  
  .ws-section-title {
    font-size: 3rem;
  }
  
  .ws-locations-list {
    max-width: 1800px;
  }
  
  .ws-bread-section {
    max-width: 1800px;
  }
  
  .ws-suppliers-grid {
    max-width: 1800px;
  }
  
  .ws-social-content {
    max-width: 1800px;
  }
  
  .ws-social-cta {
    max-width: 1600px;
  }
  
  .ws-main-card {
    max-width: 1600px;
  }
  
  .ws-retail,
  .ws-farmers-market,
  .ws-green-assoc,
  .ws-local-suppliers,
  .ws-featured-products {
    max-width: 1800px;
  }
}


/* --- main.css inline rules --- */
/* The Wooden Spoon - Main CSS File */
/* This file imports all component CSS files */

/* Base Styles */
/* Component Styles */
/* Layout Styles */
/* Page-Specific Styles */
/* Responsive Styles */
/* Accessibility: keyboard focus visibility */
:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* Accessibility: skip link for keyboard users */
.ws-skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 8px 12px;
  z-index: 2000;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.ws-skip-link:focus,
.ws-skip-link:focus-visible {
  top: 12px;
}

/* Accessibility: form-level validation feedback */
.ws-error-summary {
  border: 2px solid #9c1c34;
  background: #fff3f5;
  color: #5e1020;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.ws-error-summary p {
  margin: 0;
  font-weight: 700;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #9c1c34 !important;
  box-shadow: 0 0 0 2px rgba(156, 28, 52, 0.15);
}

/* Global text capitalization */
body, 
body * {
  text-transform: capitalize !important;
}

/* Capitalize headings */
h1, h2, h3, h4, h5, h6 {
  text-transform: capitalize;
}

/* Capitalize navigation */
.ws-nav-list a,
.ws-footer-nav a {
  text-transform: capitalize;
}

/* Capitalize buttons */
.ws-hero-btn,
.ws-submit-btn,
.ws-add-item-btn {
  text-transform: capitalize;
}

/* Capitalize form labels */
label {
  text-transform: capitalize;
}

/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
  /* Ensure text doesn't cause overflow on mobile */
  .ws-location-title,
  .ws-location-info p,
  .ws-location-btn {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  /* Prevent iframe overflow on mobile */
  iframe {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  /* Ensure all content stays within bounds */
  .ws-location,
  .ws-location-map,
  .ws-location-actions {
    max-width: 100%;
    overflow: hidden;
  }
  
  /* Improve touch targets */
  button, 
  .ws-btn,
  .ws-nav-toggle,
  .ws-back-to-top {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Improve form inputs on mobile */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 12px 16px;
    border-radius: 8px;
  }
  
  /* Better spacing for mobile */
  .ws-form-group {
    margin-bottom: 24px;
  }
  
  /* Improve modal positioning */
  .ws-modal {
    padding: 16px;
  }
  
  .ws-modal-content {
    width: 100%;
    max-width: 95%;
    margin: 20px auto;
  }
}

/* Extra small mobile optimizations */
@media (max-width: 480px) {
  /* Reduce padding for very small screens */
  .ws-container,
  .ws-form-section,
  .ws-main-card {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  /* Stack form elements vertically */
  .ws-form-top-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Improve button sizing */
  .ws-btn,
  .ws-hero-btn,
  .ws-submit-btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  /* Better image handling */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Improve navigation on very small screens */
  .ws-nav {
    padding: 0 12px;
  }
  
  .ws-nav-list li a {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
  .ws-hero {
    min-height: 40vh;
    max-height: 50vh;
  }
  
  .ws-hero-title {
    font-size: 1.6rem;
  }
  
  .ws-hero-tagline {
    font-size: 1rem;
  }
  
  /* Adjust modal for landscape */
  .ws-modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .ws-nav-logo img,
  .ws-hero-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* Basic dark mode adjustments */
  .ws-modal {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .ws-modal-content {
    background-color: #2a2a2a;
    color: #ffffff;
  }
}


