/* The Wooden Spoon - Modern Gastropub/Farmhouse Theme */
:root {
  --primary-color: #9c1c34;
  --accent-color: #bfa14a;
  --background: #f8f6f3;
  --surface: #fff;
  --charcoal: #2d2d2d;
  --taupe: #b8a99a;
  --wood-brown: #7c5c3e;
  --font-primary: 'Prata', serif;
  --font-secondary: 'Open Sans', sans-serif;
  --radius: 32px;
  --shadow: 0 4px 16px rgba(44,38,33,0.08);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-size: 17px;
  text-transform: uppercase;
  box-sizing: border-box;
}

.ws-header {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.ws-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
}
.ws-nav-logo img {
  height: 56px;
  width: auto;
}
.ws-nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.ws-nav-list li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.08em;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
}
.ws-nav-list li a:hover, .ws-nav-list li a:focus {
  background: var(--taupe);
  color: var(--primary-color);
}
.ws-nav-order-btn {
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--accent-color) 100%);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 800;
  padding: 10px 28px;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(124, 92, 62, 0.10);
  border: none;
  transition: background 0.2s, color 0.2s;
}
.ws-nav-order-btn:hover, .ws-nav-order-btn:focus {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: var(--charcoal) !important;
}

/* Hero Section */
.ws-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  overflow: hidden;
}
.ws-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ws-hero-img {
  width: 100vw;
  height: 60vh;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) saturate(1.05);
  min-height: 350px;
  max-height: 600px;
  display: block;
}
.ws-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(44,38,33,0.32) 0%, rgba(156,28,52,0.18) 100%);
  z-index: 2;
}
.ws-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.ws-hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(44,38,33,0.10));
}
.ws-hero-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  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-hero-tagline {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--background);
  margin-bottom: 28px;
  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;
}

/* Quick Links */
.ws-quick-links {
  width: 100%;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(124, 92, 62, 0.06);
  margin: 0 0 32px 0;
  z-index: 10;
}
.ws-quick-links ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ws-quick-links li {
  flex: 1 1 120px;
  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: 18px 0 12px 0;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-size: 1.08em;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border-radius: 0;
}
.ws-quick-links a:hover, .ws-quick-links a:focus {
  color: var(--primary-color);
  background: var(--taupe);
  text-decoration: underline;
}
.ws-quick-links i {
  font-size: 2rem;
  margin-bottom: 6px;
  color: var(--primary-color);
  transition: color 0.2s;
}
.ws-quick-links a:hover i, .ws-quick-links a:focus i {
  color: var(--accent-color);
}
.ws-quick-links span {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Locations Page */
.ws-locations-list {
  max-width: 900px;
  margin: 48px auto 0 auto;
  padding: 0 16px 48px 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ws-location {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.ws-location-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 0 8px 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;
}
.ws-location-info {
  font-family: var(--font-secondary);
  font-size: 1.08em;
  color: var(--charcoal);
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ws-location-info a {
  color: var(--primary-color);
  text-decoration: underline;
}
.ws-location-info i {
  color: var(--accent-color);
  margin-right: 8px;
}
.ws-location-map {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44,38,33,0.10);
  margin-top: 8px;
}
.ws-location-featured {
  border: 2.5px solid var(--primary-color);
  background: linear-gradient(90deg, var(--background) 80%, var(--accent-color) 100%);
}
.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);
}

/* Menus Page */
.ws-menus-list {
  max-width: 900px;
  margin: 48px auto 0 auto;
  padding: 0 16px 48px 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ws-menu-section {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  border-left: 6px solid var(--primary-color);
}
.ws-menu-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--primary-color);
  margin: 0 0 8px 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;
}
.ws-menu-title i {
  color: var(--accent-color);
  font-size: 1.2em;
}
.ws-menu-desc {
  font-family: var(--font-secondary);
  font-size: 1.08em;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.ws-menu-items {
  width: 100%;
  min-height: 40px;
  color: var(--charcoal);
  font-size: 1em;
  font-family: var(--font-secondary);
  letter-spacing: 0.5px;
}

/* Menus Quick Links (Buttons) */
.ws-menu-quicklinks {
  background: var(--surface);
  padding: 12px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 56px;
  z-index: 50;
}
.ws-menu-quicklinks ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ws-menu-quicklinks li {
  margin: 0;
}
.ws-menu-quicklinks a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.9em;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--accent-color) 100%);
  border: none;
  box-shadow: 0 2px 8px rgba(124, 92, 62, 0.10);
}
.ws-menu-quicklinks a:hover, .ws-menu-quicklinks a:focus {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(156,28,52,0.16);
  transform: translateY(-2px) scale(1.04);
  text-decoration: underline;
}
.ws-menu-quicklinks i {
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.2s;
}
.ws-menu-quicklinks a:hover i, .ws-menu-quicklinks a:focus i {
  color: var(--charcoal);
}
.ws-menu-quicklinks span {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* About Us Page Styles */
.ws-about-family {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 32px 0;
}
.ws-about-family-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  width: 100%;
}
.ws-about-family-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,38,33,0.13), 0 1.5px 0 #9c1c34;
  border: 4px solid var(--primary-color);
  background: #fff;
}
.ws-about-family-caption {
  margin-top: 12px;
  font-size: 1.1em;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}
.ws-about-story {
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding: 0 18px;
  text-align: center;
}
.ws-about-title {
  font-size: 2rem;
  color: var(--primary-color);
  font-family: var(--font-primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ws-about-title i {
  color: var(--accent-color);
  font-size: 1.3em;
}
.ws-about-desc {
  font-size: 1.15em;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}
.ws-about-carousel-placeholder {
  max-width: 600px;
  margin: 0 auto 48px auto;
  padding: 0 18px;
  text-align: center;
}
.ws-carousel-placeholder {
  border: 2px dashed var(--primary-color);
  border-radius: 16px;
  background: #f8f6f4;
  color: var(--charcoal);
  padding: 36px 0;
  margin-top: 18px;
  font-size: 1.1em;
  font-family: var(--font-secondary);
  opacity: 0.85;
}

/* Staff & Family Carousel Styles */
.ws-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 32px auto 0 auto;
  max-width: 520px;
  position: relative;
}
.ws-carousel-images {
  width: 100%;
  max-width: 420px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,38,33,0.13), 0 1.5px 0 #9c1c34;
  background: #fff;
  border: 4px solid var(--primary-color);
  gap: 18px;
}
.ws-carousel-img {
  width: 120px;
  height: 180px;
  max-width: 30vw;
  max-height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(44,38,33,0.10);
  display: none;
}
.ws-carousel-img[style*="display: block"] {
  display: block;
}
.ws-carousel-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44,38,33,0.10);
  margin: 0 10px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.ws-carousel-btn:hover, .ws-carousel-btn:focus {
  background: var(--accent-color);
  color: var(--charcoal);
  transform: scale(1.08);
}
.ws-carousel-prev {
  left: 0;
}
.ws-carousel-next {
  right: 0;
}

/* Main Card Container for Depth */
.ws-main-card {
  max-width: 900px;
  margin: 48px auto 48px auto;
  background: var(--surface);
  border-radius: 36px;
  box-shadow: 0 8px 32px rgba(44,38,33,0.13), 0 2px 0 #9c1c34;
  padding: 32px 24px 40px 24px;
}
/* Slideshow Image (About Us) */
.ws-about-family-photo.ws-about-slideshow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.ws-about-family-photo.ws-about-slideshow img {
  width: 100%;
  max-width: 520px;
  height: auto;
  min-height: 260px;
  max-height: 380px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(44,38,33,0.16), 0 2px 0 #9c1c34;
  border: 5px solid var(--primary-color);
  background: #fff;
  margin-bottom: 12px;
  transition: opacity 0.5s, transform 0.5s;
}

/* Family Photo (Top) */
.ws-family-img {
  width: 100%;
  max-width: 520px;
  min-height: 260px;
  max-height: 380px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(44,38,33,0.16), 0 2px 0 #9c1c34;
  border: 5px solid var(--primary-color);
  background: #fff;
  margin-bottom: 12px;
  display: block;
}
/* Staff Section */
.ws-about-staff {
  margin: 40px 0 32px 0;
  padding-top: 12px;
  border-top: 2px solid var(--taupe);
}
.ws-staff-gallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 18px;
}
.ws-staff-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(44,38,33,0.13), 0 1.5px 0 #9c1c34;
  border: 4px solid var(--primary-color);
  background: #fff;
  transition: opacity 0.5s, transform 0.5s;
}
/* Story Card */
.ws-about-story-card {
  background: var(--background);
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(44,38,33,0.10);
  padding: 32px 18px 28px 18px;
  margin: 40px 0 0 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-normal {
  text-transform: none !important;
  font-weight: 400;
  font-size: 1.13em;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

/* Breads Page Styles */
.ws-breads-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 48px auto 64px auto;
  padding: 0 16px;
}
.ws-bread-card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(44,38,33,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
  border: 2px solid transparent;
  outline: none;
}
.ws-bread-card:hover, .ws-bread-card:focus {
  box-shadow: 0 8px 32px rgba(156,28,52,0.13);
  border-color: var(--primary-color);
  transform: translateY(-2px) scale(1.03);
}
.ws-bread-img {
  width: 100%;
  max-width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(44,38,33,0.10);
  background: #fff;
}
.ws-bread-info {
  padding: 22px 18px 18px 18px;
  width: 100%;
}
.ws-bread-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  letter-spacing: 1px;
  font-weight: 700;
}
.ws-bread-desc {
  font-size: 1em;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-transform: none;
}

/* Home Page - Featured Products */
.ws-featured-products {
  max-width: 1200px;
  margin: 56px auto 48px auto;
  padding: 0 16px;
}
.ws-section-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 700;
}
.ws-product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.ws-product-card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(44,38,33,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid transparent;
}
.ws-product-card:hover, .ws-product-card:focus-within {
  box-shadow: 0 8px 32px rgba(156,28,52,0.13);
  border-color: var(--primary-color);
  transform: translateY(-2px) scale(1.03);
}
.ws-product-img {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(44,38,33,0.10);
  background: #fff;
}
.ws-product-info {
  padding: 18px 14px 0 14px;
  width: 100%;
}
.ws-product-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  letter-spacing: 1px;
  font-weight: 700;
}
.ws-product-desc {
  font-size: 1em;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 14px 0;
  text-transform: none;
}
.ws-product-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--accent-color) 100%);
  color: #fff;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1em;
  border-radius: 18px;
  padding: 10px 28px;
  margin-top: 8px;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 8px rgba(124, 92, 62, 0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 1px;
  cursor: pointer;
}
.ws-product-btn:hover, .ws-product-btn:focus {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: var(--charcoal);
  transform: scale(1.05);
}
/* Home Page - Retail, Farmers Market, Green Assoc */
.ws-retail, .ws-farmers-market, .ws-green-assoc {
  max-width: 900px;
  margin: 56px auto 0 auto;
  padding: 0 16px 32px 16px;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(44,38,33,0.07);
  text-align: center;
}
.ws-retail-desc, .ws-farmers-desc, .ws-green-desc {
  font-size: 1.08em;
  color: var(--charcoal);
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto 0 auto;
  max-width: 700px;
  text-transform: none;
}
.ws-green-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.ws-green-logo {
  width: 90px;
  height: auto;
  margin-bottom: 0;
}

/* Footer Styles */
.ws-footer {
  width: 100%;
  background: var(--charcoal);
  color: #fff;
  padding: 32px 0 18px 0;
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-secondary);
}
.ws-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}
.ws-footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.ws-footer-nav a:hover, .ws-footer-nav a:focus {
  background: var(--primary-color);
  color: #fff;
}
.ws-footer-copy {
  font-size: 0.98em;
  color: #e0e0e0;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* PDF Viewer Styles */
.ws-pdf-viewer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 32px 0;
}
.ws-pdf-viewer {
  width: 90vw;
  max-width: 900px;
  height: 80vh;
  min-height: 500px;
  border: none;
  box-shadow: 0 4px 24px rgba(44,38,33,0.10);
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 991px) {
  .ws-nav {
    flex-direction: column;
    height: auto;
    padding: 0 8px;
  }
  .ws-nav-list {
    flex-wrap: wrap;
    gap: 0;
  }
  .ws-hero-title {
    font-size: 2.1rem;
  }
  .ws-hero-img {
    height: 38vh;
    min-height: 220px;
  }
  .ws-quick-links a {
    font-size: 1em;
    padding: 14px 0 10px 0;
  }
  .ws-quick-links i {
    font-size: 1.5rem;
  }
  .ws-menu-quicklinks ul {
    gap: 8px;
  }
  .ws-menu-quicklinks a {
    font-size: 1em;
    padding: 16px 10px 12px 10px;
    min-width: 80px;
    min-height: 70px;
  }
  .ws-menu-quicklinks i {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .ws-nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .ws-nav-list li a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }
  .ws-hero {
    min-height: 38vh;
  }
  .ws-hero-title {
    font-size: 1.3rem;
  }
  .ws-hero-logo {
    width: 80px;
  }
  .ws-quick-links ul {
    flex-direction: column;
    border-right: none;
    border-bottom: 1px solid var(--taupe);
  }
  .ws-quick-links li {
    border-right: none;
    border-bottom: 1px solid var(--taupe);
  }
  .ws-quick-links li:last-child {
    border-bottom: none;
  }
  .ws-menu-quicklinks ul {
    flex-direction: column;
    gap: 8px;
  }
  .ws-menu-quicklinks a {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 12px 0 8px 0;
    font-size: 0.95em;
  }
}
@media (max-width: 600px) {
  .ws-locations-list {
    gap: 24px;
    padding: 0 4px 32px 4px;
  }
  .ws-location {
    padding: 18px 8px 16px 8px;
  }
  .ws-location-title {
    font-size: 1.1rem;
  }
  .ws-menus-list {
    gap: 24px;
    padding: 0 4px 32px 4px;
  }
  .ws-menu-section {
    padding: 18px 8px 16px 8px;
  }
  .ws-menu-title {
    font-size: 1.1rem;
  }
  .ws-about-family-photo img {
    max-width: 98vw;
  }
  .ws-about-story, .ws-about-carousel-placeholder {
    padding: 0 4vw;
  }
  .ws-carousel {
    max-width: 98vw;
  }
  .ws-carousel-images, .ws-carousel-img {
    max-width: 98vw;
    min-height: 120px;
    max-height: 180px;
  }
  .ws-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    margin: 0 2px;
  }
  .ws-featured-products {
    padding: 0 2vw;
  }
  .ws-product-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ws-product-card {
    border-radius: 12px;
  }
  .ws-retail, .ws-farmers-market, .ws-green-assoc {
    border-radius: 12px;
    padding: 0 2vw 18px 2vw;
  }
}
@media (max-width: 700px) {
  .ws-main-card {
    padding: 12px 2vw 24px 2vw;
    border-radius: 18px;
  }
  .ws-about-family-photo.ws-about-slideshow img {
    max-width: 98vw;
    min-height: 120px;
    max-height: 220px;
    border-radius: 12px;
  }
  .ws-family-img {
    max-width: 98vw;
    min-height: 120px;
    max-height: 220px;
    border-radius: 12px;
  }
  .ws-staff-gallery {
    gap: 8px;
  }
  .ws-staff-img {
    width: 44vw;
    height: 44vw;
    min-width: 120px;
    min-height: 120px;
    max-width: 180px;
    max-height: 180px;
    border-radius: 10px;
  }
  .ws-about-story-card {
    padding: 18px 2vw 18px 2vw;
    border-radius: 12px;
  }
  .ws-breads-list {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 2vw;
  }
  .ws-bread-img {
    max-width: 98vw;
    height: 140px;
    border-radius: 12px 12px 0 0;
  }
  .ws-bread-card {
    border-radius: 12px;
  }
  .ws-footer {
    padding: 22px 0 10px 0;
  }
  .ws-footer-nav {
    gap: 10px;
    flex-direction: column;
  }
} 