/* ==========================================================================
   Baker's Cottage Style Sheets
   Color Palette:
   - Black (text/borders): #000000
   - White (page backgrounds): #ffffff
   - Blue (CTAs/Buttons): #b8cbdb
   - Yellow (Awning Accent): #e8e8da
   ========================================================================== */

/* Custom Font Declarations */
@font-face {
  font-family: 'Gotham';
  src: local('Gotham'), local('Gotham Medium'), local('Gotham-Medium');
  font-weight: 500;
  font-style: normal;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-blue: #b8cbdb;
  --color-yellow: #e8e8da;
  --color-gray-bg: #f5f5f5;
  --color-gray-border: #e8e8e8;
  
  --font-stack: 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-height: 100px;
  --app-side-padding: 40px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100%;
  overflow-x: hidden !important;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-stack);
  font-weight: 400;
  line-height: 1.5;
}

/* Lenis Smooth Scroll Recommended Styles */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Unified Expandable Header Awning & Page Transition Overlay */
.header-awning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 105;
  display: flex;
  flex-direction: column;
  transition: height 1.4s cubic-bezier(0.85, 0, 0.15, 1), background-color 0s 1.4s;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--color-white); /* Solid white mask behind stripes by default */
}

.header-awning.active {
  height: 120vh; /* Covers the page completely, even during scroll bounces */
  pointer-events: all;
  background-color: transparent; /* Turns off background mask smoothly during transition sweep */
  transition: height 1.4s cubic-bezier(0.85, 0, 0.15, 1), background-color 1.4s cubic-bezier(0.85, 0, 0.15, 1);
}

.header-awning-body {
  width: 100%;
  height: calc(100% - 50px); /* Leaves space for scallop curves at bottom */
  background-image: linear-gradient(
    90deg,
    var(--color-blue) 50%,
    var(--color-yellow) 50%
  );
  background-size: 10vw 100%;
  background-repeat: repeat-x;
}

.header-awning-scallop {
  width: 100%;
  height: 50px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50' preserveAspectRatio='none'><path d='M0 0 L100 0 A50 50 0 0 1 0 0 Z' fill='%23b8cbdb'/><path d='M100 0 L200 0 A50 50 0 0 1 100 0 Z' fill='%23e8e8da'/></svg>");
  background-repeat: repeat-x;
  background-size: 10vw 50px;
  flex-shrink: 0;
}

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0; /* Cover the absolute top of the screen */
  left: 0;
  width: 100%;
  height: calc(var(--header-height) + 50px); /* Account for awning height in total layout height */
  padding-top: 50px; /* Offset navigation contents below the fixed top awning */
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-black);
  z-index: 100;
}

.header-container {
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-self: start;
}

.header-logo {
  height: 58px;
  width: auto;
}

.main-nav-centered {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-self: center;
}

.nav-link {
  color: var(--color-black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav-link.active, .nav-link:hover {
  border-bottom-color: var(--color-black);
}

.wishlist-trigger-btn {
  background: none;
  border: none;
  color: var(--color-black);
  font-family: var(--font-stack);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--color-black);
  transition: background-color 0.3s, color 0.3s;
}

.wishlist-trigger-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Main Layout Views */
#app-container {
  margin-top: calc(var(--header-height) + 50px);
  min-height: calc(100vh - var(--header-height) - 50px);
  padding: 60px var(--app-side-padding);
  width: 100%;
  max-width: 100%;
}

.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-view.active {
  display: block;
  opacity: 1;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 60px;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
}

/* Catalogue Search and Filter Controls Layout */
.catalogue-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 45px;
  border-bottom: 1px solid var(--color-gray-border);
  padding-bottom: 24px;
}

@media (max-width: 768px) {
  .catalogue-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.search-bar-wrapper {
  flex-grow: 1;
  max-width: 400px;
}

.search-bar-wrapper input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-stack);
  font-size: 13px;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  color: var(--color-black);
}

.search-bar-wrapper input::placeholder {
  color: #999;
}

.search-bar-wrapper input:focus {
  outline: none;
  border-color: var(--color-blue);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-stack);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  cursor: pointer;
  padding: 6px 12px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  color: var(--color-black);
  border-bottom-color: var(--color-black);
}

/* Product Catalogue Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .header-container {
    padding: 0 20px;
  }
  #app-container {
    padding: 40px 20px;
  }
}

/* Featured Products grid 4-column layout */
#featured-products-list {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  #featured-products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #featured-products-list {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-black);
  cursor: pointer;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-gray-bg);
  border: 1px solid var(--color-gray-border);
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  position: relative;
}

.placeholder-image::after {
  content: 'Image Placeholder';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}

.product-card:hover .placeholder-image {
  background-color: #dcdcdc;
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
}

.product-title {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 15px;
}

.product-price {
  font-weight: 400;
  color: #555;
  white-space: nowrap;
}

/* Product Detail Page */
/* Product Detail Page */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 20px;
}

.product-gallery-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-gallery-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.product-detail-gallery {
  width: 100%;
  max-width: 850px;
  aspect-ratio: 1 / 1;
  background-color: var(--color-gray-bg);
  border: 1px solid var(--color-gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
}

.back-to-shop {
  background: none;
  border: none;
  font-family: var(--font-stack);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #777;
  cursor: pointer;
  align-self: flex-start;
  margin-bottom: 24px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.back-to-shop:hover {
  color: var(--color-black);
  border-bottom-color: var(--color-black);
}

.detail-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.detail-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.detail-price {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 24px;
}

.product-options-wrapper {
  margin-bottom: 24px;
  border-top: 1px solid var(--color-gray-border);
  padding-top: 20px;
}

.options-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.option-pills {
  display: flex;
  gap: 12px;
}

.option-pill {
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  padding: 10px 20px;
  font-family: var(--font-stack);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.option-pill:hover {
  background-color: var(--color-gray-bg);
}

.option-pill.active {
  background-color: var(--color-black);
  color: var(--color-white);
}

.detail-description {
  font-size: 16px; /* Larger description font */
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  border-top: 1px solid var(--color-gray-border);
  padding-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(3 * 1.8em);
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Primary buttons styled with the custom blue #b8cbdb */
.button-primary {
  display: block;
  width: 100%;
  background-color: var(--color-blue);
  color: var(--color-black);
  border: 1px solid var(--color-black);
  padding: 16px;
  font-family: var(--font-stack);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s, background-color 0.2s;
}

.button-primary:hover {
  opacity: 0.9;
}

.button-secondary {
  display: block;
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-black);
  padding: 16px;
  font-family: var(--font-stack);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.button-secondary:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Wishlist Drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 100%;
  height: 100%;
  background-color: var(--color-white);
  box-shadow: -4px 0 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.drawer-overlay.active .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--color-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.close-drawer-btn {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  color: var(--color-black);
}

.drawer-body {
  flex-grow: 1;
  padding: 30px;
  overflow-y: auto;
}

.drawer-footer {
  padding: 30px;
  border-top: 1px solid var(--color-black);
  background-color: var(--color-white);
}

.wishlist-summary {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.whatsapp-cta-btn {
  display: block;
  width: 100%;
  background-color: var(--color-blue);
  color: var(--color-black);
  border: 1px solid var(--color-black);
  padding: 16px;
  font-family: var(--font-stack);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
}

.whatsapp-cta-btn:hover {
  opacity: 0.9;
}

/* Wishlist Item Card */
.wishlist-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray-border);
}

.wishlist-item-img {
  width: 80px;
  height: 80px;
  background-color: var(--color-gray-bg);
  border: 1px solid var(--color-gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wishlist-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.wishlist-item-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.wishlist-item-price {
  font-size: 13px;
  color: #555;
  margin-bottom: auto;
}

.remove-wishlist-item {
  background: none;
  border: none;
  font-family: var(--font-stack);
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  cursor: pointer;
  align-self: flex-start;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.remove-wishlist-item:hover {
  color: var(--color-black);
  border-bottom-color: var(--color-black);
}

.empty-wishlist-msg {
  text-align: center;
  color: #777;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-top: 40px;
}

/* ==========================================================================
   Homepage Elements (Hero, About, Featured, Section Titles)
   ========================================================================== */

/* Hero Banner Section */
.hero-banner {
  margin-bottom: 60px;
}

.hero-banner-placeholder {
  width: 100%;
  min-height: 380px;
  background-color: var(--color-gray-bg);
  border: 1px solid var(--color-gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}



/* About Section */
.about-section {
  max-width: 800px;
  margin: 0 auto 80px auto;
  text-align: center;
  padding: 0 20px;
}

.about-line {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-black);
  letter-spacing: 0.03em;
  font-weight: 400;
}

/* Section Common Titles */
.section-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 0 auto 40px auto;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 12px;
  display: table;
}

/* Featured Highlights Section (Carousel) */
.featured-section {
  margin-bottom: 80px;
}

.highlights-carousel-section {
  background-color: transparent;
  border: none;
  padding: 40px 0;
  box-shadow: none;
}

.highlights-carousel-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr; /* 1.5x bigger image column */
  gap: 60px;
  align-items: center;
  max-width: 1200px; /* Sized up container for larger image */
  margin: 0 auto;
}

@media (max-width: 768px) {
  .highlights-carousel-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .highlights-carousel-section {
    padding: 30px 20px;
  }
}

.highlight-slide-image-panel {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--color-gray-border);
  background-color: var(--color-gray-bg);
}

.highlight-slide-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.highlight-slide-info-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.highlight-slide-subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 12px;
}

.highlight-slide-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--color-black);
}

.highlight-slide-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.highlight-slide-actions {
  display: flex;
  gap: 20px;
}

.highlight-slide-actions .button-primary {
  width: auto !important;
  padding: 12px 30px !important;
  font-size: 12px !important;
  display: inline-block !important;
}

.highlight-slide-actions .button-secondary {
  width: auto !important;
  padding: 12px 30px !important;
  font-size: 12px !important;
  display: inline-block !important;
}

.highlight-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.highlight-nav-btn {
  background: none;
  border: 1px solid var(--color-black);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-size: 16px;
  color: var(--color-black);
}

.highlight-nav-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.highlight-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s;
}

.highlight-dot.active {
  background-color: var(--color-black);
}

/* Catalogue Section styling */
.catalogue-section {
  margin-top: 60px;
  border-top: 1px solid var(--color-gray-border);
  padding-top: 60px;
}

/* Image Fitting and Animations */
.product-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-grid-image {
  transform: scale(1.04);
}

.product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Contact & Google Map Layout */
.contact-section {
  margin-top: 80px;
  border-top: 1px solid var(--color-gray-border);
  padding-top: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  align-items: stretch; /* Align map height to match text height panel */
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.contact-subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 4px;
  align-self: flex-start;
}

.contact-subtitle:not(:first-child) {
  margin-top: 24px;
}

.contact-text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.contact-map-panel {
  width: 100%;
  height: 100%;
  background-color: var(--color-gray-bg);
  border: 1px solid var(--color-gray-border);
  line-height: 0;
}

.contact-map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* Suggestions Section on Details Page */
.suggestions-container {
  grid-column: 1 / span 2;
  margin-top: 80px;
  border-top: 1px solid var(--color-gray-border);
  padding-top: 60px;
}

@media (max-width: 768px) {
  .suggestions-container {
    grid-column: 1;
  }
}

.suggestions-heading {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 40px;
}

/* ==========================================================================
   Values Banner Strip
   ========================================================================== */
.values-banner {
  background-color: var(--color-yellow);
  padding: 40px 20px;
  margin-bottom: 80px;
  border-top: 1px solid var(--color-gray-border);
  border-bottom: 1px solid var(--color-gray-border);
  border-left: none;
  border-right: none;
  
  /* Bleed edge-to-edge */
  margin-left: calc(-1 * var(--app-side-padding));
  margin-right: calc(-1 * var(--app-side-padding));
  width: calc(100% + (2 * var(--app-side-padding)));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 100%;
  margin: 0 auto;
  gap: 60px; /* Spaced out further */
  align-items: start;
}

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

.value-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.value-desc {
  font-size: 12px;
  color: #444;
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   Persistent Footer Style
   ========================================================================== */
.main-footer {
  border-top: 1px solid var(--color-black);
  background-color: var(--color-white);
  padding: 60px 40px 30px 40px;
  margin-top: auto;
}

.footer-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  flex: 1.5;
  min-width: 250px;
}

.footer-logo {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 12px;
  color: #666;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 150px;
}

.footer-link {
  color: var(--color-black);
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #666;
}

.footer-contact {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  min-width: 200px;
}

.footer-bottom {
  width: 100%;
  max-width: 100%;
  margin: 40px auto 0 auto;
  border-top: 1px solid var(--color-gray-border);
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  color: #888;
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 20px 20px 20px;
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-page-container {
  max-width: 900px;
  margin: 0 auto;
}

.minimal-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.form-group input, .form-group textarea {
  border: 1px solid var(--color-black);
  padding: 12px;
  font-family: var(--font-stack);
  font-size: 13px;
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}

.contact-map-full {
  margin-top: 60px;
}

/* ==========================================================================
   Custom Orders View Styles
   ========================================================================== */
.custom-orders-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.custom-orders-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
}

.custom-orders-cta-box {
  background-color: var(--color-gray-bg);
  border: 1px solid var(--color-gray-border);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-box-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.cta-box-desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
}

.custom-orders-btn {
  max-width: 320px;
}

/* ==========================================================================
   Ultra-Wide & 4K Resolution Proportional Scaling
   ========================================================================== */

/* QHD & Ultra-wide Screens (1440p / 2K) */
@media (min-width: 1921px) {
  :root {
    --header-height: 120px;
  }
  
  .header-awning {
    height: 50px;
  }
  
  .main-header {
    top: 50px;
    height: calc(var(--header-height) + 50px);
    padding-top: 50px;
  }
  
  #app-container {
    margin-top: calc(var(--header-height) + 50px);
    max-width: 100%;
    padding: 80px 40px;
  }
  
  .header-container, .footer-container, .footer-bottom {
    max-width: 100%;
    padding-left: var(--app-side-padding);
    padding-right: var(--app-side-padding);
  }
  
  /* Bleed background banners edge-to-edge on QHD/4K */
  .hero-carousel, .values-banner, .shop-cta-section {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
  }
  
  .header-logo {
    height: 72px;
  }
  
  body {
    font-size: 18px;
  }
  
  .hero-banner-placeholder {
    min-height: 550px;
  }
  
  .values-grid {
    max-width: 1000px;
  }
  
  .products-grid {
    gap: 60px;
  }
}

/* 4K Resolution Screens (2160p) - Custom Widescreen Experience */
@media (min-width: 3000px) {
  :root {
    --header-height: 160px;
  }
  
  .header-awning {
    height: 50px;
  }
  
  .main-header {
    top: 50px;
    height: calc(var(--header-height) + 50px);
    padding-top: 50px;
  }
  
  #app-container {
    margin-top: calc(var(--header-height) + 50px);
    max-width: 100%;
    padding: 120px 40px;
  }
  
  .header-container, .footer-container, .footer-bottom {
    max-width: 100%;
  }
  
  .header-logo {
    height: 100px;
  }
  
  body {
    font-size: 24px;
  }
  
  .hero-carousel, .hero-banner-placeholder {
    min-height: 850px;
  }
  
  .values-grid {
    max-width: 1000px;
  }
  
  /* 4K Exclusive Grid Enhancements */
  .featured-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 60px;
  }
  
  .products-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 80px;
  }
  
  .occasions-grid {
    grid-template-columns: repeat(8, 1fr) !important;
    gap: 40px;
  }
  
  /* 4K Split editorial about layout */
  .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    padding: 100px 0;
  }
  
  .about-line {
    font-size: 36px !important;
    text-align: left !important;
    line-height: 1.6 !important;
    border-right: 1px solid var(--color-gray-border);
    padding-right: 80px;
  }
  
  .close-drawer-btn {
    font-size: 48px;
  }
}

/* What's the Occasion Section */
.occasions-section {
  margin-bottom: 80px;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
}

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

@media (max-width: 768px) {
  .occasions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.occasion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--color-white);
  transition: transform 0.3s ease;
}

.occasion-card:hover {
  transform: translateY(-4px);
}

.occasion-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--color-gray-border);
  margin-bottom: 16px;
  background-color: var(--color-gray-bg);
}

.occasion-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.occasion-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-black);
}

/* Hero Carousel Styles */
.hero-carousel {
  position: relative;
  width: calc(100% + (2 * var(--app-side-padding)));
  margin-left: calc(-1 * var(--app-side-padding));
  margin-right: calc(-1 * var(--app-side-padding));
  min-height: 500px;
  height: 60vh;
  overflow: hidden;
  margin-top: -60px; /* Counter app-container top padding */
  margin-bottom: 80px;
  border-bottom: 1px solid var(--color-black);
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 2.5s;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

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

.hero-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  color: var(--color-white);
  padding-right: 8%;
  padding-left: 20%;
  z-index: 3;
}

.hero-banner-title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  max-width: 900px;
  line-height: 1.2;
}

.hero-banner-subtitle {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-banner-btn {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
}

.hero-banner-btn:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.carousel-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicators .indicator.active {
  background-color: var(--color-white);
}

/* Shop CTA Section */
.shop-cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--color-gray-bg);
  border-top: 1px solid var(--color-gray-border);
  border-bottom: 1px solid var(--color-gray-border);
  width: calc(100% + (2 * var(--app-side-padding)));
  margin-left: calc(-1 * var(--app-side-padding));
  margin-right: calc(-1 * var(--app-side-padding));
  margin-bottom: 80px;
  margin-top: 40px;
}

.shop-cta-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 30px;
}

.shop-cta-btn {
  display: inline-block;
  text-decoration: none;
}

/* About Page Styles */
.about-page-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.about-page-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .about-page-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-page-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-page-heading {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-page-para {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.about-page-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-gallery-item {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--color-gray-border);
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Services Grid - Vertically Stacked */
.custom-services-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
  text-align: left;
}

.custom-service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-border);
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: transform 0.3s ease;
  width: 100%;
}

.custom-service-card:nth-child(even) {
  flex-direction: row-reverse;
}

.custom-service-card:hover {
  transform: translateY(-4px);
}

.service-image-wrapper {
  width: 45%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-right: 1px solid var(--color-gray-border);
}

.custom-service-card:nth-child(even) .service-image-wrapper {
  border-right: none;
  border-left: 1px solid var(--color-gray-border);
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content {
  width: 55%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .custom-service-card {
    flex-direction: column !important;
  }
  .service-image-wrapper {
    width: 100%;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid var(--color-gray-border);
  }
  .service-content {
    width: 100%;
    padding: 24px;
  }
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--color-black);
}

.service-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-cta-btn {
  font-size: 11px !important;
  padding: 12px !important;
  text-align: center;
}

/* Left-aligned contact section title */
.contact-section-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: left;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 12px;
  display: inline-block;
}

/* Right-aligned header wrapper */
.header-right {
  display: flex;
  align-items: center;
  justify-self: end;
}

/* Limit size of primary buttons on carousel slides */
.hero-banner-btn {
  width: auto !important;
  min-width: 200px;
  max-width: 280px;
  display: inline-block !important;
  text-align: center;
}

/* Product Detail Thumbnail Gallery */
.product-detail-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
  flex-shrink: 0;
}

.detail-thumbnails-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.detail-thumb {
  width: 115px; /* Big thumbnails aligned immediately next to primary image */
  height: 115px;
  border-radius: 6px;
  border: 1px solid var(--color-gray-border);
  object-fit: cover;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
  background-color: var(--color-gray-bg);
}

.detail-thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.detail-thumb.active {
  border-color: var(--color-black);
  border-width: 2px;
}

/* About Philosophy Banner */
.about-philosophy-banner {
  background-color: var(--color-gray-bg);
  padding: 60px 40px;
  margin: 60px 0;
  width: calc(100% + (2 * var(--app-side-padding)));
  margin-left: calc(-1 * var(--app-side-padding));
  margin-right: calc(-1 * var(--app-side-padding));
  border-top: 1px solid var(--color-gray-border);
  border-bottom: 1px solid var(--color-gray-border);
}

.about-kitchen-block {
  margin-top: 80px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.about-kitchen-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.kitchen-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--color-gray-border);
  min-height: 400px;
  display: block;
}

.kitchen-text-panel {
  justify-content: center;
  padding-left: 20px;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.philosophy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.philosophy-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: var(--color-black);
}

.philosophy-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

/* Custom Orders WhatsApp Buttons Width limiters */
.service-cta-btn {
  width: auto !important;
  max-width: 250px !important;
  display: inline-block !important;
  text-align: center !important;
  align-self: flex-start;
}

/* Full Width Views & Containers */
.about-page-container, .contact-page-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.about-section-block, .contact-main-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* 1fr address details, 1.5fr form (makes form wider!) */
  gap: 60px;
  align-items: start;
}

.contact-map-full-bleed {
  width: 100%;
  line-height: 0;
  margin: 60px 0;
}

.contact-map-full-bleed iframe {
  display: block;
  width: 100%;
}

.contact-faq-banner {
  background-color: var(--color-gray-bg);
  padding: 60px 40px;
  border-top: 1px solid var(--color-gray-border);
  border-bottom: 1px solid var(--color-gray-border);
  width: 100%;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.faq-card {
  display: flex;
  flex-direction: column;
}

.faq-question {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-answer {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

/* Mobile Bottom Sticky Navigation Bar */
.mobile-bottom-nav {
  display: none; /* Hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-border);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 9999 !important; /* Ensure always on top of elements */
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
  text-decoration: none;
  color: #777;
  transition: color 0.2s;
  gap: 4px;
}

.bottom-nav-item.active, .bottom-nav-item:hover {
  color: var(--color-black);
}

.bottom-nav-icon {
  width: 20px;
  height: 20px;
}

.bottom-nav-label {
  font-family: var(--font-stack);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Comprehensive Mobile Responsiveness Overrides */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  /* Sticky Bottom Nav is visible only on Mobile */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 64px !important;
    z-index: 99999 !important;
    background-color: var(--color-white) !important;
    transform: none !important;
  }

  body {
    padding-bottom: 84px !important; /* Space for sticky bottom bar */
  }

  /* Drawer mobile overflow fix for Close button */
  .drawer-content {
    width: 100% !important;
    max-width: 85vw !important;
    height: 100% !important;
    padding-top: calc(70px + 35px) !important; /* Offset header height */
    padding-bottom: 74px !important; /* Offset bottom sticky bar */
    box-sizing: border-box !important;
  }
  
  .drawer-header, .drawer-body, .drawer-footer {
    box-sizing: border-box !important;
    padding: 20px 15px !important;
  }

  /* Keep fixed awning decoration but reduce height */
  .header-awning:not(.active) {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 35px !important;
    z-index: 1050 !important; /* Extremely high z-index to stay on top */
    display: flex !important;
  }

  .header-awning.active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 120vh !important;
    z-index: 1050 !important;
    display: flex !important;
  }

  .header-awning-body {
    height: calc(100% - 12px) !important;
  }

  .header-awning-scallop {
    height: 12px !important;
    background-size: 10vw 12px !important;
  }

  .main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(70px + 35px) !important;
    padding-top: 35px !important;
    z-index: 1000 !important; /* Below awning but above other content */
    background-color: var(--color-white) !important;
    border-bottom: 1px solid var(--color-black) !important;
  }

  /* Center the Baker's Cottage Logo on mobile */
  .header-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 15px;
    height: 100%;
    width: 100%;
    position: relative;
  }

  .logo-link {
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: center !important;
  }

  .header-logo {
    height: 32px;
  }

  .main-nav-centered {
    display: none !important; /* Hide horizontal link strip */
  }

  .wishlist-trigger-btn {
    display: none !important; /* Hide top wishlist button as it's in the sticky bottom bar */
  }

  /* Core Layout adjustments offset for awning and header */
  #app-container {
    margin-top: calc(70px + 35px) !important;
    padding: 30px 15px;
  }

  /* Space out vertical values grid items and add padding */
  .values-banner {
    padding: 60px 20px !important;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }

  /* Typographic scales & smaller headings */
  .hero-banner-title {
    font-size: 24px !important;
  }

  .hero-banner-subtitle {
    font-size: 12px !important;
    margin-bottom: 20px !important;
  }

  .section-title {
    font-size: 16px !important;
    margin-bottom: 24px !important;
    padding-bottom: 8px !important;
  }

  .about-page-heading, #highlight-title {
    font-size: 18px !important; /* Make bakes headings smaller */
  }

  .about-page-para {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  /* Catalog details mobile font tweaks */
  .detail-title {
    font-size: 22px !important;
  }

  .detail-price {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }

  .detail-description {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  /* Swipeable Occasions Snapping Carousel on Mobile */
  .occasions-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none !important;
  }

  .occasions-grid::-webkit-scrollbar {
    display: none;
  }

  .occasion-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }

  /* Homepage Featured Bakes cards in 2 columns on Mobile */
  .home-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding-bottom: 0 !important;
  }

  .home-products-grid .product-card {
    border: 1px solid var(--color-gray-border) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background-color: var(--color-white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }

  /* 2 Columns grid layout for Shop page on mobile */
  #catalog-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .about-section-block, .contact-main-block {
    padding: 0 15px;
  }

  .contact-map-full-bleed iframe {
    height: 300px;
  }

  .contact-faq-banner {
    padding: 40px 15px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Horizontal Scrolling for categories filter buttons */
  .filter-bar {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    gap: 15px !important;
    padding-bottom: 10px !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .filter-btn {
    flex: 0 0 auto !important;
  }

  /* Contact Page Order (Details Top, Form Bottom) */
  .contact-page-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    align-items: stretch !important; /* Force children (like form panel) to expand to 100% width */
  }

  .contact-info-panel {
    order: 1 !important;
  }

  .contact-form-panel {
    order: 2 !important;
  }

  /* Align extra product images side-by-side on mobile */
  .product-detail-thumbnails {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 100% !important;
  }

  /* Prevent horizontal scroll layout break on mobile (which breaks position: fixed headers/footers) */
  html, body {
    overflow-x: hidden !important;
  }

  .about-philosophy-banner {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 40px 15px !important;
  }

  /* Stack Cottage Kitchen block full width vertically on mobile */
  .about-kitchen-block {
    padding: 0 15px !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .about-kitchen-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .kitchen-main-img {
    min-height: 250px !important;
    height: auto !important;
  }

  .kitchen-text-panel {
    padding-left: 0 !important;
  }

  /* Center-align Custom Orders cards contents on mobile */
  .service-content {
    text-align: center !important;
    align-items: center !important;
  }

  .service-cta-btn {
    align-self: center !important;
    margin: 0 auto !important;
  }

  /* Add padding around featured bakes on mobile */
  .shop-cta-section {
    padding: 0 15px !important;
  }
}
