/** Shopify CDN: Minification failed

Line 756:12 Expected identifier but found whitespace
Line 756:14 Unexpected "{"
Line 756:23 Expected ":"
Line 756:70 Expected ":"

**/


/* CSS from section stylesheet tags */
/* Design System Variables (from design.json) */
:root {
  --color-brand-primary: #8B4513;
  --color-brand-secondary: #5C4033;
  --color-background-cream: #F5F1E6;
  --color-accent-sand: #D2B48C;
  --color-text-primary: #1C2F24;
  --color-text-muted: #6F6F6F;
  --color-border-grey: #DDD8C8;
  --color-white: #FFFFFF;
  
  --font-h1: 36px;
  --font-h2: 28px;
  --font-h3: 22px;
  --font-body: 16px;
  --font-small: 14px;
  --font-label: 15px;
  --font-button: 17px;
  
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-section: 64px;
  
  --radius-button: 12px;
  --radius-pill: 24px;
  --radius-input: 10px;
  --radius-card: 16px;
  
  --transition-smooth: 160ms ease;
}

.product-page {
  padding: var(--space-section) 0;
  background: var(--color-background-cream);
  width: 100%;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.product-layout {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: var(--space-xxl);
  margin-bottom: var(--space-section);
}

.product-images-column {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.main-product-image {
  background: #F5F1E6;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: var(--space-md);
  position: relative;
}

.main-product-image img {
  width: calc(100% + 4px);
  height: auto;
  display: block;
  border: none;
  outline: none;
  margin: -2px;
  padding: 0;
  vertical-align: bottom;
  max-width: none;
}

.image-placeholder {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F1E6;
  color: var(--color-text-muted);
  font-size: var(--font-small);
  border: none;
  margin: 0;
  padding: 0;
}

.gallery-controls {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
}

.gallery-btn {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--color-border-grey);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-input);
  font-size: var(--font-small);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.gallery-btn:hover {
  background: var(--color-white);
  transform: translateY(-2px);
}

.product-thumbnails {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

/* Square thumbnail container */
.thumbnail {
  background: #F5F1E6;
  border: none;
  border-radius: 6px;    /* adjust if you want rounder */
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  width: 20px;           /* ← new small size */
  aspect-ratio: 1 / 1;   /* perfect square */
  flex: 0 0 auto;
}


/* Image fills the square */
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

/* Keep your hover/active styles */
.thumbnail:hover,
.thumbnail.active {
  box-shadow: 0 0 0 2px var(--color-brand-primary);
  transform: scale(1.02);
}


.product-info-column {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-card);
  box-shadow: none;
}

.product-summary-block {
  margin-bottom: var(--space-xl);
}

.product-title {
  font-size: var(--font-h1);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: 0;
}

.product-price {
  font-size: var(--font-h2);
  font-weight: 700;
  color: var(--color-brand-primary);
  margin-bottom: 0;
}

.product-summary-block .product-divider {
  margin: var(--space-lg) 0;
}

.product-short-description {
  margin-top: 0;
}

.product-short-description p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  color: var(--color-text-primary);
  font-size: var(--font-body);
}
.product-short-description p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  color: var(--color-text-primary);
  font-size: var(--font-body);
}

.ideal-for-section {
  margin-top: var(--space-lg);
}

.ideal-for-title {
  font-size: var(--font-label);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.ideal-for-content {
  font-size: var(--font-small);
  line-height: 1.8;
  color: var(--color-text-primary);
}

.ideal-for-content p {
  margin-bottom: var(--space-xs);
}

.ideal-for-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ideal-for-content li {
  padding-left: 0;
  margin-bottom: var(--space-xxs);
}

.product-divider {
  border: none;
  border-top: 1px solid var(--color-border-grey);
  margin: var(--space-xl) 0;
}

.product-divider {
  border: none;
  border-top: 1px solid var(--color-border-grey);
  margin: var(--space-xl) 0;
}

.profile-section {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-background-cream);
  border-radius: var(--radius-card);
}

.profile-label {
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  font-size: var(--font-label);
}

.scale-dots {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-border-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-small);
  font-weight: 600;
  background: var(--color-white);
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--color-brand-primary);
  color: var(--color-white);
  border-color: var(--color-brand-primary);
  transform: scale(1.05);
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-small);
  color: var(--color-text-muted);
}

.recommended-methods {
  margin-bottom: var(--space-xl);
}

.methods-label {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  font-size: var(--font-label);
}

.method-icons {
  display: flex;
  gap: var(--space-md);
}

.method-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border-grey);
  border-radius: var(--radius-input);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--color-white);
  transition: var(--transition-smooth);
  cursor: help;
  color: var(--color-brand-primary);
}

.method-icon:hover {
  border-color: var(--color-brand-primary);
  transform: translateY(-2px);
  background: var(--color-background-cream);
}

.variant-group {
  margin-bottom: var(--space-lg);
}

.variant-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.label-title {
  font-weight: 500;
  color: var(--color-text-primary);
  font-size: var(--font-label);
}

.selected-value {
  font-size: var(--font-small);
  color: var(--color-text-muted);
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.variant-option {
  position: relative;
}

.variant-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variant-option label {
  display: block;
  padding: 6px 14px;
  border: 1px solid var(--color-border-grey);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: var(--font-small);
  font-weight: 500;
  background: transparent;
  color: var(--color-text-primary);
}

.variant-option input:checked + label {
  border: none;
  background: var(--color-accent-sand);
  color: var(--color-white);
  transform: scale(1.02);
}

.variant-option input:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
}

.variant-option label:hover:not(input:disabled + label) {
  background: var(--color-background-cream);
  border-color: var(--color-brand-primary);
}

/* ↓↓↓ INSERT NEW CSS HERE ↓↓↓ */

.variant-help-section {
  margin-bottom: var(--space-lg);
  text-align: left;
}

.variant-help-link {
  color: var(--color-text-muted);
  font-size: var(--font-small);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
}

.variant-help-link:hover {
  color: var(--color-brand-primary);
  text-decoration: none;
}

/* Help Popup Modal */
.help-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.2s ease;
}

.help-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-modal-content {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-card);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.help-modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  line-height: 1;
}

.help-modal-close:hover {
  color: var(--color-brand-primary);
  transform: rotate(90deg);
}

.help-modal-title {
  font-size: var(--font-h3);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  padding-right: var(--space-xl);
}

.help-modal-body {
  color: var(--color-text-primary);
  font-size: var(--font-body);
  line-height: 1.7;
}

.help-modal-body p {
  margin-bottom: var(--space-md);
}

.help-modal-body ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.help-modal-body li {
  margin-bottom: var(--space-sm);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .help-modal-content {
    width: 95%;
    padding: var(--space-lg);
  }
}

/* ↑↑↑ END OF NEW CSS ↑↑↑ */

.purchase-options {
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-background-cream);
  border-radius: var(--radius-card);
}

.option-label {
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: block;
  color: var(--color-text-primary);
  font-size: var(--font-label);
}

.purchase-option {
  margin-bottom: var(--space-sm);
}

.purchase-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border-grey);
  border-radius: var(--radius-button);
  background: var(--color-white);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.purchase-option input:checked + .option-card {
  border-color: var(--color-brand-primary);
  border-width: 2px;
  padding: calc(var(--space-md) - 1px) calc(var(--space-lg) - 1px);
}

.option-title {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: var(--font-body);
}

.savings-badge {
  display: inline-block;
  margin-left: var(--space-xs);
  padding: 2px var(--space-xs);
  background: var(--color-brand-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--space-xxs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.option-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brand-primary);
}

.subscription-frequencies {
  margin-top: var(--space-sm);
}

.frequency-select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border-grey);
  border-radius: var(--radius-input);
  font-size: var(--font-small);
  background: var(--color-white);
  color: var(--color-text-primary);
}

.subscription-reassurance {
  text-align: center;
  margin-top: var(--space-sm);
  margin-bottom: 0;
  font-size: var(--font-small);
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.6;
}

.quantity-group {
  margin-bottom: var(--space-lg);
}

.quantity-label {
  font-weight: 500;
  margin-bottom: var(--space-sm);
  display: block;
  color: var(--color-text-primary);
  font-size: var(--font-label);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border-grey);
  border-radius: var(--radius-input);
  overflow: hidden;
  width: fit-content;
  background: var(--color-white);
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--color-background-cream);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--color-text-primary);
}

.qty-btn:hover {
  background: var(--color-brand-primary);
  color: var(--color-white);
}

.qty-input {
  width: 60px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--color-border-grey);
  border-right: 1px solid var(--color-border-grey);
  text-align: center;
  font-size: var(--font-body);
  font-weight: 600;
  color: var(--color-text-primary);
  background: var(--color-white);
  -moz-appearance: textfield;
  appearance: textfield;
  padding: 0;
  line-height: 44px;
  display: block;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input:focus {
  outline: none;
  background: var(--color-white);
}

.product-actions {
  margin-bottom: var(--space-lg);
}

.btn-add-to-cart {
  width: 100%;
  padding: 14px 28px;
  background: var(--color-brand-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-button);
  font-size: var(--font-button);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-add-to-cart:hover {
  background: var(--color-brand-secondary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(139,69,19,0.2);
}

.btn-add-to-cart:active {
  transform: translateY(0);
  box-shadow: none;
}

.shipping-notice {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-background-cream);
  border-radius: var(--radius-input);
  font-size: var(--font-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* Emoji-only, no box — size controlled from schema */
.shipping-icon {
  font-size: {{ section.settings.shipping_icon_size | default: 20 }}px;
  color: var(--color-brand-primary);
  display: inline;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 0 !important;
  vertical-align: -0.1em;
}

/* Safety reset for any non-text icon */
.shipping-icon img,
.shipping-icon svg {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: inline;
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
}


.product-secondary-summary {
  margin-bottom: var(--space-xxl);
}

.summary-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-card);
  box-shadow: none;
}

.summary-card h2 {
  font-size: var(--font-h3);
  margin-bottom: var(--space-lg);  /* ← Increased from var(--space-xs) */
  color: var(--color-text-primary);
  font-weight: 700;
}

.variant-info {
  line-height: 1.4;  /* ← Reduced from 1.8 */
  color: var(--color-text-primary);
  font-size: var(--font-body);
  white-space: pre-line;
}

.technical-details {
  margin-bottom: var(--space-xxl);
  margin-top: var(--space-xxl);
}

.details-accordion {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: visible;
  box-shadow: none;
  border: 1px solid var(--color-border);
}

.accordion-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text-primary);
  background: var(--color-white);
  user-select: none;
  list-style: none;
  font-size: var(--font-h3);
  border-radius: var(--radius-card);
  margin: 0;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.details-accordion[open] .accordion-summary {
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.details-accordion[open] .arrow-icon {
  transform: rotate(180deg);
}

.arrow-icon {
  transition: transform var(--transition-smooth);
  font-size: var(--font-small);
  color: var(--color-brand-primary);
}

.details-list {
  padding: 0 var(--space-xl) var(--space-lg) var(--space-xl);
  margin: 0;
  list-style: none;
  background: var(--color-white);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.details-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-grey);
  font-size: var(--font-small);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.details-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.storytelling-section {
  margin-bottom: var(--space-section);
  padding: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.story-grid.reverse {
  direction: rtl;
}

.story-grid.reverse > * {
  direction: ltr;
}

.story-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  overflow: hidden;
  background: #F5F1E6;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.story-grid.reverse .story-image {
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.story-image img {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  min-height: 504px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  border: none;
  outline: none;
  margin: -2px;
  padding: 0;
  vertical-align: bottom;
  max-width: none;
}

.story-content {
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-white);
  margin: 0;
  border: none;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.story-grid.reverse .story-content {
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.story-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: #F5F1E6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--font-small);
  margin: 0;
  padding: 0;
}

.story-content h2 {
  font-size: var(--font-h2);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.story-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
  color: var(--color-text-primary);
  font-size: var(--font-body);
}

.eco-packaging-section {
  margin-bottom: var(--space-section);
  padding: 0;
  background: var(--color-brand-primary);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0;
  padding: 0;
  border: none;
}

.eco-grid.reverse {
  direction: rtl;
}

.eco-grid.reverse > * {
  direction: ltr;
}

.eco-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  overflow: hidden;
  background: #F5F1E6;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.eco-grid.reverse .eco-image {
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.eco-image img {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  min-height: 504px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  border: none;
  outline: none;
  margin: -2px;
  padding: 0;
  vertical-align: bottom;
  max-width: none;
}

.eco-content {
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-white);
  margin: 0;
  border: none;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.eco-grid.reverse .eco-content {
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.eco-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: #F5F1E6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--font-small);
  margin: 0;
  padding: 0;
}

.eco-content h2 {
  font-size: var(--font-h2);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  text-transform: lowercase;
  font-weight: 700;
}

.eco-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
  color: var(--color-white);
  font-size: var(--font-body);
}

.btn-link {
  color: var(--color-accent-sand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: var(--font-body);
  display: inline-block;
  margin-top: var(--space-md);
}

.btn-link:hover {
  color: var(--color-white);
}

.related-products {
  margin-bottom: var(--space-section);
  position: relative;
}

.related-products__header {
  margin-bottom: var(--space-xl);
}

.section-title {
  font-size: var(--font-h1);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 700;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.product-card-featured {
  background: var(--color-white);
  border: 1px solid var(--color-border-grey);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-card-featured__image-wrapper {
  position: relative;
  display: block;
  padding-top: 125%; /* 4:5 aspect ratio */
  background: var(--color-background-cream);
  overflow: hidden;
  text-decoration: none;
}

.product-card-featured__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  display: block;
}

.product-card-featured__image--placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background-cream);
  color: rgba(139, 69, 19, 0.3);
}

.product-card-featured__image--placeholder svg {
  width: 60px;
  height: 60px;
}

.product-card-featured:hover .product-card-featured__image {
  transform: scale(1.05);
}

.product-card-featured__content {
  padding: var(--space-lg);
}

.product-card-featured__title {
  font-size: var(--font-body);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.product-card-featured__title a {
  color: inherit;
  text-decoration: none;
}

.product-card-featured__title a:hover {
  color: var(--color-brand-primary);
}

.product-card-featured__price {
  font-size: var(--font-small);
  color: var(--color-text-primary);
}

.product-card-featured__price-from {
  font-weight: normal;
}

.product-card-featured__price-amount {
  font-weight: 700;
  color: var(--color-brand-primary);
}

@media (max-width: 992px) {
  .product-layout,
  .story-grid,
  .eco-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-images-column {
    position: relative;
    top: 0;
  }

  .product-info-column {
    padding: var(--space-lg);
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

/* AND ADD THIS AT THE END OF @media (max-width: 640px): */

@media (max-width: 640px) {
  /* ... existing mobile styles ... */
  
  .related-products__header {
    padding: 0 20px;
    margin-bottom: 24px;
  }
  
  .related-products-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding-left: 20px;
    padding-right: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .related-products-grid::-webkit-scrollbar {
    display: none;
  }
  
  .product-card-featured {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
    margin-left: 20px;
  }
  
  .product-card-featured:first-child {
    margin-left: 0;
  }
  
  .product-card-featured__content {
    padding: 16px;
  }
}
  
  .story-content,
  .eco-content {
    padding: var(--space-xl);
  }
  
  .story-image,
  .eco-image,
  .story-image img,
  .eco-image img {
    min-height: 300px;
  }
  
  /* Mobile: Stack vertically with rounded corners on top/bottom */
  .story-image,
  .story-grid.reverse .story-image {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
  }
  
  .story-content,
  .story-grid.reverse .story-content {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
  }
  
  .eco-image,
  .eco-grid.reverse .eco-image {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
  }
  
  .eco-content,
  .eco-grid.reverse .eco-content {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
  }
}

@media (max-width: 640px) {
  .product-thumbnails {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  
  .product-title {
    font-size: 24px;
  }

  .product-info-column {
    padding: var(--space-md);
  }

  .variant-options {
    gap: var(--space-xs);
  }
  
  .story-content,
  .eco-content {
    padding: var(--space-lg);
  }
  
  .story-image,
  .eco-image,
  .story-image img,
  .eco-image img {
    min-height: 250px;
  }
}