/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

/* Brand Variables */
:root {
  --primary-font: 'Playfair Display', serif;  
  --secondary-font: 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  --primary-color: #ac6c6f;
  --secondary-color: #6a8667;
  --accent-color: #fafafa;
  --button-color: var(--primary-color);
  --button-hover: #cc8c91;
  --text-dark: #363434;
  --text-light: #fcfffc;
}

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


body {
  font-family: var(--secondary-font);
  background-color: var(--accent-color);
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 100px;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1.5rem;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
}

nav a:hover {
  color: var(--primary-color);
}

.logo {
  height: 60px;
  margin: 0 auto;
  display: block;
}

/* Hero Section */
.hero {
  background-color: var(--accent-color);
  text-align: center;
  padding: 4rem 1rem 2rem;
  color: #fff;                 /* ✅ make all text inside hero white */
  text-shadow: 0 1px 2px rgba(0,0,0,.25); /* optional: improves contrast */
}


.hero h1 {
  font-family: var(--primary-font);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
  margin-top: 1rem;
}

.btn:hover {
  background-color: var(--button-hover);
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 1.5rem;
  padding: 0 2rem;
  justify-items: center; /* center cards in their columns */
}

/* Product Card */
.product-card {
  background-color: white;
  padding: 1rem; /* reduce from 1.5rem */
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transform: scale(1); /* Optional: reset if previously set */
  max-width: 400px;  /* was 400px or unset */
  font-size: 0.9rem; /* reduce text size slightly */
}
.product-card img {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 0.75rem;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

.product-card p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.product-card select {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.product-card button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.product-card button:hover {
  background-color: var(--button-hover);
}

/* Checkout Shipping Address */
#shipping-address {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#shipping-address label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 0.95rem;
}

#shipping-address input {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#shipping-address input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 6px rgba(172, 108, 111, 0.2);
  outline: none;
}

/* Two-column layout for city, state, zip */
.address-row {
  display: flex;
  gap: 1rem;
}

.address-row > div {
  flex: 1;
}


/* Cart Page */
.cart {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cart h2 {
  font-family: var(--primary-font);
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-item p {
  margin: 0;
}

.cart-summary {
  text-align: right;
  font-weight: bold;
  margin-top: 2rem;
}

/* Admin / Blog / Orders Page */
.admin-panel,
.blog,
.order-history {
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.admin-panel h2,
.blog h2,
.order-history h2 {
  font-family: var(--primary-font);
  margin-bottom: 1.5rem;
}

/* Form Elements */
input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #777;
}

.reviews-footer {
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--text-dark);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hamburger {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

#mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.mobile-hidden {
  display: none;
}

@media (max-width: 640px) {
  .hamburger {
    display: block;
  }

  #mobile-menu {
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 1rem;
    border-top: 1px solid #ccc;
  }

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

  nav {
    position: relative;
  }
}

/* ABOUT PAGE SECTION */
.about-section {
  padding: 4rem 1rem;
  background-color: #fdfdfd;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
}

.about-section h2 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #363434;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.about-image {
  flex: 1 1 300px;
  max-width: 450px;
  padding: 1rem;
}

.about-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.about-text {
  flex: 1 1 300px;
  max-width: 600px;
  padding: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
}

.about-text strong {
  color: #ac6c6f;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding-top: 0;
  }
}
/* CONTACT PAGE STYLING */
.contact-section {
  padding: 4rem 1rem;
  background-color: #fefefe;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-form-column,
.contact-info-column {
  flex: 1 1 400px;
}

.contact-form-column h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  color: #363434;
}

.contact-form-column p {
  margin-bottom: 2rem;
  color: #4a4a4a;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #363434;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ac6c6f;
  outline: none;
}

.contact-form button.btn {
  background-color: #ac6c6f;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button.btn:hover {
  background-color: #cc8c91;
}

.contact-info-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #363434;
}

.contact-info-column p {
  font-size: 1rem;
  color: #4a4a4a;
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form-column,
  .contact-info-column {
    width: 100%;
  }
}

/* Checkout Page */
.checkout-wrapper {
  display: flex;
  margin-top: 80px; /* Same as padding-top in body */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.checkout-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cart-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
}

.cart-item img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  margin-right: 10px;
}

.cart-item .item-info {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.cart-item .item-info div {
  display: flex;
  flex-direction: column;
}

.cart-item input {
  text-align: center;
  width: 50px;
  margin-left: 10px;
}

button {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: rgb(223, 218, 221);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background-color: var(--primary-color);
}

/* Style for Pickup Day Form */
#pickup-form {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  margin: 20px auto;
}
#pickup-form label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 10px;
}

#pickup-day {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  appearance: none;
  cursor: pointer;
}

#pickup-day:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* was #email-container { … } — needs to be a CLASS */
.email-container {
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  background: #f9f9f9;
  padding: 20px;
  margin-top: 80px;           /* pushes it below the fixed header */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 400px;
}



.email-container label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 10px;
}

.blog-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: var(--secondary-font);
}

.blog-post {
  margin-bottom: 60px;
}

.blog-post h2 {
  font-family: var(--primary-font);
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.blog-post p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2000;
}

.toast.visible {
  opacity: 1;
}

.discount-notification {
  background-color: #fff3cd;
  color: var(--primary-color);
  border: 1px solid #ffeeba;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Venmo Button */
#venmo-button {
  background-color: #3D95CE; /* Venmo blue */
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  width: 100%;
  max-width: 250px;
  margin: 10px auto;
}

#venmo-button:hover {
  background-color: #2C7BBF; /* Slightly darker blue */
}

.venmo-logo {
  width: 24px;
  height: auto;
  margin-right: 8px;
}

/* Stripe Button */
#stripe-button {
  background-color: #635BFF; /* Stripe purple */
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  width: 100%;
  max-width: 250px;
  margin: 10px auto;
}

#stripe-button:hover {
  background-color: #5047E5; /* Slightly darker purple */
}

.stripe-logo {
  width: 24px;
  height: auto;
  margin-right: 8px;
}

/* Keep menu visible on desktop no matter what */
@media (min-width: 641px) {
  #mobile-menu { display: flex !important; }
}

.shop-disclaimer {
  background-color: #fdf7f7;
  color: #4a4a4a;
  font-size: 0.95rem;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid #e0dcdc;
  font-style: italic;
  line-height: 1.6;
}


/* Blog Layout */
.blog-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.blog-image {
  flex: 1;
  text-align: center;
}

.blog-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.blog-image figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.blog-section {
  flex: 2;
  line-height: 1.7;
}

.blog-section h2 {
  margin-top: 1rem;
  color: var(--primary-color);
  font-family: var(--primary-font);
}

/* Stack image above text on mobile */
@media (max-width: 768px) {
  .blog-layout {
    flex-direction: column;
  }

  .blog-image img {
    max-width: 100%;
  }
}


/* About Page Image Collage */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1 1 400px;
  max-width: 600px;
  align-items: stretch;
}

.about-images .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.about-images .landscapes {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}

.about-images .landscapes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Stack on mobile */
@media (max-width: 768px) {
  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-images .landscapes {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
  }

  .about-images .landscapes img {
    height: auto;
  }
}

/* Global font reset */
body, p, li, input, textarea, select, button {
  font-family: var(--secondary-font); /* Open Sans */
  font-weight: 400;
  color: var(--text-dark);
}

/* Headings use brand serif font */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--secondary-font); 
  font-weight: 700;
  color: var(--text-dark);
}

/* Mobile product layout */
@media (max-width: 640px) {
  .grid-container {
    flex-direction: column;
    align-items: center;   /* keeps cards centered */
  }

  .product-card {
    max-width: 90%;        /* take most of the screen width */
    width: 100%;           /* full row */
  }
}


/* === Bigger product cards === */
.product-grid { max-width: 1200px; margin: 0 auto; }

.grid-container {
  /* Wider columns so each card can breathe */
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;             /* a bit more space between cards */
  justify-items: center; /* keep cards centered */
}

/* Card sizing & typography */
.product-card {
  max-width: 540px;  /* allow a wider card */
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;   /* bump base text slightly */
}

.product-card h3 {
  font-size: 1.4rem;  /* larger title */
  margin-top: 0.5rem;
}

.product-card p,
.product-card .product-description {
  font-size: 1.05rem;
}

/* Bigger images */
.product-card img,
.product-card .product-image {
  max-width: 260px;   /* was 160px */
  width: 100%;
  height: auto;
  margin: 0 auto 1rem;
}

/* Bigger button */
.product-card button {
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  border-radius: 10px;
}

/* Desktop: favor two large columns */
@media (min-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, minmax(420px, 1fr));
  }
}

/* Mobile: single column full-width look */
@media (max-width: 640px) {
  .grid-container {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
  .product-card {
    max-width: 92%;
  }
}

/* Click-to-zoom */
.product-card img { cursor: zoom-in; }

/* Lightbox modal */
.lightbox {
  position: fixed; inset: 0;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,.85);
  padding: 2rem; z-index: 10000;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.lightbox__close {
  position: absolute; top: 16px; right: 16px;
  font-size: 2rem; line-height: 1;
  background: rgba(0,0,0,.5);
  color: #fff; border: 0; border-radius: 8px;
  padding: .2rem .6rem; cursor: pointer;
}

/* Lead time callout */
.lead-time {
  background: #fff7e6;              /* soft warm highlight */
  border: 1px solid #f3c27a;
  color: #5a4630;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.98rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.lead-time .icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 2px;
}

.lead-time strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Callout / notice box */
.notice-box {
  --callout-accent: var(--accent-color, #8a5b3d);
  background: #fff8ec;
  border: 1px solid #f2d3a2;
  border-left: 6px solid var(--callout-accent);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 1rem auto; /* centers it on the page */
}

.notice-box p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4a3b30;
}

.notice-icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: .1rem;
}

/* Safe defaults for mobile scrolling */
html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Use dynamic viewport units so the URL bar/keyboard don't crop content */
.page,
main {
  min-height: 100vh;
}
@supports (height: 100dvh) {
  .page,
  main {
    min-height: 100dvh; /* iOS 15+/Android Chrome */
  }
}

/* Header & footer safe areas for notches */
:root {
  --header-h: 64px; /* adjust to your header height */
}
.site-header {
  position: sticky;   /* friendlier than fixed on mobile */
  top: 0;
  z-index: 1000;
  background: #fff;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid #eee;
}

/* Push content below the header */
body,
main {
  padding-top: calc(var(--header-h) + env(safe-area-inset-top));
}

/* If you have a sticky bottom checkout bar / buttons */
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 1000;
  background: #fff;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid #eee;
}
/* Make room so last inputs aren’t hidden behind sticky footer */
main,
.checkout {
  padding-bottom: calc(80px + env(safe-area-inset-bottom)); /* adjust 80px to footer height */
}

/* Form elements: full-width, no zoom-on-focus in iOS */
.checkout input,
.checkout select,
.checkout textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 16px; /* prevents iOS auto-zoom */
}

/* Avoid clipping if a parent accidentally sets overflow: hidden */
body,
main,
.checkout {
  overflow: visible;
}

/* Simple spacing so fields aren’t jammed at the top on mobile */
.form-section,
.form-row {
  margin-block: 12px;
}

/* Force white text inside hero */
.hero { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.25); }

.hero :is(h1,h2,h3,h4,h5,h6,p,li,a,span,strong) {
  color: #fff;
}
.hero a { color: #fff; }

/* HERO: force white no matter what */
.hero,
.hero * {
  color: #fff !important;
}

/* keep links white too */
.hero a:link,
.hero a:visited,
.hero a:hover,
.hero a:active {
  color: #fff !important;
}

/* ——— Feminine hero typography (white) ——— */
.hero, .hero * { color: #fff !important; text-shadow: 0 1px 2px rgba(0,0,0,.25); }

.hero h1 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
}

.hero p {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.95;
}

/* Optional: softer, more “beauty” CTA shape */
.hero .btn {
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

/* === Sitewide: header should not crop content === */
header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding-top: env(safe-area-inset-top); /* iOS notch-safe */
}

/* stop pushing content down with a guess */
body { padding-top: 0 !important; }

/* pages that were compensating with big top margins */
.checkout-wrapper,
.email-container { margin-top: 16px !important; }

/* mobile dropdown should appear just under the nav */
@media (max-width: 640px) {
  nav { position: relative; }
  #mobile-menu {
    position: absolute;
    top: 100% !important;   /* instead of a hardcoded 60px */
    left: 0; right: 0;
  }
}
:root { --header-h: 100px; } /* match your fixed header height */

.hero--full {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
@supports (height: 100dvh) {
  .hero--full { min-height: calc(100dvh - var(--header-h)); }
}
.hero--full .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero--full::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,.40);
}
.hero--full .hero-text { position: relative; z-index: 1; padding: 1.25rem; max-width: 800px; margin: 0 auto; }
.hero--full .hero-text h1 { font-family: "Playfair Display", serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .75rem; color: #fff; }
.hero--full .hero-text p { font-size: clamp(1rem, 2.5vw, 1.125rem); margin-bottom: 1rem; color: #fff; }
.hero--full .btn { background: var(--primary-color); color: #fff; border-radius: 999px; padding: .75rem 1.25rem; display: inline-block; }

.product-gallery { margin-bottom: .75rem; }
.product-main { width: 100%; max-width: 260px; border-radius: 12px; cursor: zoom-in; }
.product-thumbs { display: flex; gap: .5rem; justify-content: center; margin-top: .5rem; }
.product-thumbs img {
  width: 58px; height: 58px; object-fit: cover; border-radius: 8px; opacity: .75;
  border: 1px solid #ddd; cursor: pointer; transition: opacity .15s, transform .15s;
}
.product-thumbs img:hover { opacity: 1; transform: scale(1.03); }
.product-thumbs img.active { opacity: 1; border-color: var(--primary-color); }
