* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base responsive settings */
html, body {
  font-size: 16px;
  overflow-x: hidden !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-card img,
.product-card .product-image img,
.collection-card img,
.page-heading-image,
.summer-hero-image {
  width: 100%;
  object-fit: cover;
}

body {
  font-family: 'Times New Roman', serif;
  background: #ffffff;
  color: #ffffff;
  line-height: 1.6;
}

/* Splash overlay */
.mono-splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 2000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.mono-splash img { max-width: 60%; height: auto; display: block; }
.mono-splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-open { overflow: hidden; }

nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(248, 244, 237, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #e5d9c0;
  transition: transform 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem 2rem;
}

nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
}

.logo {
  font-family: 'Times New Roman', serif;
  font-size: 2rem;
  color: #5c4634;
  letter-spacing: 3px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c9a66b;
}

.nav-cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #f8f4ed;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.nav-cart-button:hover {
  background: #f8f4ed;
  color: #fff;
}

.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #f8f4ed;
  color: #5c4634;
  font-size: 0.8rem;
}

/* Hero Carousel */
.hero-carousel {
  min-height: 42vh;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.carousel-wrapper {
  position: relative;
  height: 100%;
}

.slides {
  display: flex;
  height: 100%;
  animation: none;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes carousel-slide {
  0% { transform: translateX(0); }
  12.5% { transform: translateX(0); }
  25% { transform: translateX(-100%); }
  37.5% { transform: translateX(-100%); }
  50% { transform: translateX(-200%); }
  62.5% { transform: translateX(-200%); }
  75% { transform: translateX(-300%); }
  87.5% { transform: translateX(-300%); }
  100% { transform: translateX(-400%); }
}

.hero-overlay h1 {
  font-family: 'Times New Roman', serif;
  font-size: clamp(1.6rem, 6vw, 3.2rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.hero-overlay p {
  font-size: clamp(0.95rem, 2.6vw, 1.25rem);
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}
.hero-overlay h1,
.hero-overlay p {
  padding: 0 1rem;
  word-break: break-word;
}

.hero-overlay h1 {
  font-family: 'Times New Roman', serif;
  font-size: 4.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-overlay p {
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.section {
  padding: 3rem 1rem;
}

.section h2 {
  font-family: 'Times New Roman', serif;
  font-size: 3.5rem;
  color: #5c4634;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a66b 0%, #5c4634 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* About Section */
.about-section {
  background: rgba(244, 245, 245, 0);
  padding: 2.5rem 1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-copy {
  max-width: 620px;
}

.about-copy h2 {
  text-align: left;
  margin-bottom: 3.5rem;
}

.about-section p {
  font-size: 1.2rem;
  line-height: 2.1;
  margin-bottom: 5.5rem;
  color: #5c4634;
  max-width: 800px;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

.about-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-media {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.about-media img,
.about-feature-image {
  width: 590px;
  height: 650px;
  object-fit: cover;
  border-radius: 111px;
}

/* About feature: image with adjacent explanatory text */
.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.rating,
.stars,
.rating-stars,
.product-rating {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 4px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin-top: 1rem;
}

.about-feature-image {
  width: 590px;
  height: 650px;
  object-fit: cover;
  border-radius: 111px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.about-feature-text {
  color: #5c4634;
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (min-width: 769px) {
  .about-content {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .about-media img,
  .about-feature-image {
    max-height: 600px;
  }
}

@media (max-width: 768px) {
  .hero,
  .hero-section,
  .hero-banner {
    height: auto !important;
    min-height: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .about-container {
    flex-direction: column !important;
  }

  .about-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 380px !important;
    object-fit: cover !important;
  }

  .products-grid,
  .shop-grid,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .product-rating {
    flex-direction: row !important;
  }
}

.about-button {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  background: #5c4634;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.about-button:hover {
  background: #c9a66b;
  transform: translateY(-2px);
}

.tagline {
  font-size: 1.2rem !important;
  color: #c9a66b !important;
  font-weight: 600;
}

/* Collection Section */
.collection-section {
  background: #F8F4ED;
}

.product-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 2.5rem;
}

.collection-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.collection-card h3 {
  font-family: 'Times New Roman', serif;
  font-size: 1.8rem;
  color: #5c4634;
  margin-bottom: 1rem;
}

/* Page heading images */
.page-heading-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(220px, 32vw, 360px);
  margin: 0 auto 2.5rem;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.summer-hero-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 320px;
  margin: 0 auto 1.5rem;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

@media (max-width: 768px) {
  nav {
    padding: 0.65rem 0.9rem;
  }

  .nav-logo {
    height: 46px;
  }

  .nav-container {
    gap: 0.75rem;
  }

  .logo {
    font-size: 1.4rem;
    letter-spacing: 1.8px;
  }

  .nav-links {
    gap: 0.75rem;
    margin-left: auto;
  }

  .hero-carousel {
    min-height: 32vh;
  }

  .hero-overlay h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    margin-bottom: 0.35rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

  .section {
    padding: 0.9rem 0.85rem;
  }

  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    max-width: none;
    width: 100%;
  }

  .section h2 {
    font-size: 1.85rem;
    margin-bottom: 1.15rem;
    letter-spacing: 1px;
  }

  .about-section {
    padding: 0.15rem 0 1rem;
    margin-top: 0;
  }

  .about-content {
    gap: 0.5rem;
  }

  .about-copy h2 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .about-section p {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .about-media {
    gap: 1rem;
  }

  .about-container,
  .about-feature {
    flex-direction: column;
    gap: 1rem;
  }

  .about-feature-image,
  .about-media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 420px;
    border-radius: 24px;
  }

  .about-feature-text {
    font-size: 0.98rem;
    text-align: center;
  }

  .about-button {
    width: 100%;
  }

  .product-grid,
  .shop-grid,
  .collection-grid,
  .summer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .product-card .product-image {
    aspect-ratio: 4 / 4.3;
    min-height: 0;
    max-height: none;
    border-radius: 24px;
  }

  .product-card .product-image img {
    border-radius: 24px;
  }

  .product-card h3 {
    font-size: 1.45rem;
    line-height: 1.28;
    letter-spacing: 0.2px;
    margin-bottom: 0.45rem;
  }

  .product-card p {
    font-size: 0.96rem;
    line-height: 1.55;
    min-height: auto;
    margin-bottom: 0.8rem;
  }

  .product-card label {
    font-size: 0.82rem;
    letter-spacing: 0.35px;
  }

  .product-card select,
  .product-card input {
    padding: 0.7rem;
    font-size: 0.95rem;
  }

  .page-heading-image,
  .summer-hero-image {
    width: 100vw;
    max-width: none;
    height: clamp(180px, 52vw, 220px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    margin-bottom: 1.25rem;
    box-shadow: none;
    display: block;
  }

  .summer-hero {
    margin-bottom: 1.1rem;
  }

  .summer-hero h1 {
    font-size: 2rem;
  }

  .summer-card {
    padding: 1rem;
    border-radius: 28px;
  }

  .summer-card img {
    border-radius: 20px;
  }

  .contact-info {
    padding: 1.25rem;
  }
}

/* Summer Collection Page */
.summer-collection-page {
  background: #fffaf5;
}

.summer-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.summer-hero h1 {
  font-family: 'Times New Roman', serif;
  font-size: 2.8rem;
  color: #5c4634;
  margin-bottom: 0.75rem;
}

.summer-hero p {
  color: #6b5b45;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.summer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.summer-card {
  background: #fff;
  border-radius: 60px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summer-card img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  border-radius: 50px;
}

.summer-card h3 {
  font-size: 1.85rem;
  color: #5c4634;
}

.buy-now-button {
  display: inline-block;
  margin-top: auto;
  padding: 0.8rem 1rem;
  background: #c9a66b;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}

.buy-now-button:hover {
  background: #5c4634;
  transform: translateY(-2px);
}

.collection-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pricing-list {
  background: rgba(201, 166, 107, 0.05);
  padding: 1.2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #c9a66b;
}

.pricing-list p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #5c4634;
}

.pricing-list p:last-child {
  margin-bottom: 0;
}

.pricing-list strong {
  color: #c9a66b;
  font-weight: 700;
}

/* Contact Section */
.contact-section {
  background: #5c4634;
  color: #f8f4ed;
}

.contact-section h2 {
  color: #f8f4ed;
}

.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-info a {
  color: #c9a66b;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #5c4634 0%, #3d2f23 100%);
  color: white;
  border: none;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 4px 15px rgba(92, 70, 52, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 0;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #3d2f23 0%, #2a1f19 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(92, 70, 52, 0.3);
}

.cta-button.small {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.submit-btn {
  display: inline-block;
  background: linear-gradient(135deg, #5c4634 0%, #3d2f23 100%);
  color: white;
  border: none;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 6px 20px rgba(92, 70, 52, 0.25);
  position: relative;
  overflow: hidden;
  width: 100%;
  letter-spacing: 0.5px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #3d2f23 0%, #2a1f19 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(92, 70, 52, 0.35);
}

/* Shop Page - Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgb(255, 255, 255);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1), box-shadow 0.4s ease, background 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(92, 70, 52, 0.15);
  background: #f5f5f5;
}

.product-card .product-image {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  min-height: 210px;
  max-height: 390px;
  height: auto;
  margin: 0 0 1.25rem;
  overflow: hidden;
  border-radius: 50px 50px 50px 50px;
  background: linear-gradient(135deg, #f5f0e8 0%, #ede8df 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card .product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(201, 166, 107, 0) 0%, rgba(201, 166, 107, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-card:hover .product-image::before {
  opacity: 1;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  z-index: 0;
}

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(2deg);
}

.rating,
.stars,
.rating-stars,
.product-rating {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 3px !important;
  white-space: nowrap !important;
}

.stars span,
.rating-stars span,
.star {
  display: inline-block !important;
}

.product-card h3 {
  font-family: 'Times New Roman', serif;
  color: #5c4634;
  margin-bottom: 0.6rem;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: #c9a66b;
}

.product-card .rating-meta {
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating-value,
.rating-count {
  font-size: 0.78rem;
}

.product-card p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  min-height: 2.8rem;
}

.product-tags {
  display: none;
}

.product-card label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #5c4634;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card select,
.product-card input,
.checkout-card textarea,
.checkout-card input {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.8rem;
  border: 2px solid #f0ece4;
  border-radius: 10px;
  font: inherit;
  background: #fafaf8;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.product-card select:focus,
.product-card input:focus,
.checkout-card textarea:focus,
.checkout-card input:focus {
  outline: none;
  border-color: #c9a66b;
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

/* Product detail page */
.product-detail-page {
  padding-top: 2rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.product-detail-image-frame {
  background: linear-gradient(135deg, #f8f3ea 0%, #f0e9de 100%);
  padding: 1.5rem;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(92, 70, 52, 0.08);
}

.product-detail-image-frame img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.product-detail-panel {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.product-badge {
  display: inline-block;
  background: #f4ead8;
  color: #7a6046;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-detail-panel h1 {
  font-family: 'Times New Roman', serif;
  color: #5c4634;
  margin: 0.9rem 0 0.4rem;
  font-size: 2.5rem;
}

.product-brand {
  color: #7d694f;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.detail-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.detail-rating-score,
.detail-review-count {
  color: #6c5741;
  font-size: 0.95rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1rem 0 1.2rem;
}

.product-price {
  font-size: 2rem;
  font-weight: 800;
  color: #5c4634;
}

.product-price-note {
  color: #6d5840;
  font-size: 0.9rem;
}

.product-overview {
  color: #5f5143;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.product-feature-list {
  margin: 0 0 1.25rem 1rem;
  padding: 0;
  color: #5f5143;
  line-height: 1.7;
}

.product-detail-panel .product-selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-detail-panel .product-selector-grid label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6046;
  font-weight: 700;
}

.product-detail-panel .product-selector-grid select,
.product-detail-panel .product-selector-grid input {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid #e7dccd;
  border-radius: 14px;
  background: linear-gradient(135deg, #fffdfb 0%, #faf7f1 100%);
  color: #4b3828;
  font: inherit;
  box-shadow: inset 0 1px 2px rgba(92, 70, 52, 0.05);
}

.product-detail-panel .product-selector-grid select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7a6046 50%),
    linear-gradient(135deg, #7a6046 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 12px) calc(1em + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.product-detail-panel .product-selector-grid select:focus,
.product-detail-panel .product-selector-grid input:focus {
  outline: none;
  border-color: #c9a66b;
  box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.15);
  background: #fff;
}

.product-detail-panel .product-selector-grid input[type='number'] {
  text-align: center;
  font-weight: 700;
}

.detail-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.buy-now-link,
.view-details-btn,
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  background: #f4ead8;
  color: #5c4634;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.buy-now-link:hover,
.view-details-btn:hover,
.share-button:hover {
  background: #5c4634;
  color: #fff;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.detail-spec-card,
.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.detail-spec-card h2 {
  font-family: 'Times New Roman', serif;
  color: #5c4634;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.spec-table {
  display: grid;
  gap: 0.8rem;
}

.spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #efe9df;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row span {
  color: #7a6a4d;
}

.spec-row strong {
  color: #453525;
}

.review-summary-box {
  background: #fbf9f4;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #efe6d7;
}

.review-form-card {
  background: #fcfbf8;
  border: 1px solid #efe6d7;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.review-form-card h3 {
  margin-top: 0;
  color: #5c4634;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
}

.review-stars .star-btn {
  font-size: 1.6rem;
}

.review-field-label {
  display: block;
  color: #5c4634;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.review-textarea {
  width: 100%;
  min-height: 110px;
  border: 1px solid #e6ddcb;
  border-radius: 12px;
  padding: 0.9rem;
  font: inherit;
  resize: vertical;
}

.submit-review-btn {
  margin-top: 0.8rem;
  border: none;
  background: #5c4634;
  color: #fff;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.review-summary-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.35rem;
}

.review-summary-score {
  font-size: 1.4rem;
  font-weight: 800;
  color: #5c4634;
}

.review-list {
  display: grid;
  gap: 1rem;
}

.review-card p {
  margin: 0.6rem 0 0;
  color: #5f5143;
  line-height: 1.7;
}

.review-top {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-top span {
  color: #7a6a4d;
  font-size: 0.9rem;
}

.shop-price-row {
  margin: 0.6rem 0 0.4rem;
}

.shop-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #5c4634;
}

.product-card-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.detail-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.sort-controls {
  margin: 1.5rem 0 2rem;
}

.filter-controls {
  margin-top: 1rem;
}

.sort-controls-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
}

.sort-label {
  font-weight: 700;
  color: #5c4634;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.sort-btn {
  border: 1px solid #e7dccd;
  background: #fffdfa;
  color: #5c4634;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-btn:hover,
.sort-btn.active {
  background: linear-gradient(135deg, #c9a66b 0%, #8f6944 100%);
  color: #fff;
  border-color: #c9a66b;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.1rem;
  margin: 0.8rem -1rem -1rem;
}

.rating-stars {
  display: flex;
  gap: 0.2rem;
}

.star-btn {
  border: none;
  background: transparent;
  color: #d1c8bb;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.star-btn:hover,
.star-btn.active {
  color: #c9a66b;
  transform: scale(1.08);
}

.rating-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.rating-value {
  color: #7a6046;
  font-weight: 700;
  font-size: 0.95rem;
}

.rating-count {
  color: #8c785b;
  font-size: 0.8rem;
}

/* Checkout Grid */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.cart-sidebar,
.checkout-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 166, 107, 0.1);
  transition: all 0.3s ease;
}

.cart-sidebar:hover,
.checkout-card:hover {
  box-shadow: 0 15px 50px rgba(92, 70, 52, 0.12);
  border-color: rgba(201, 166, 107, 0.3);
}

.cart-sidebar h2,
.checkout-card h3 {
  font-family: 'Times New Roman', serif;
  color: #5c4634;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  border-bottom: 2px solid #f0ece4;
  padding-bottom: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #f0ece4;
  background: rgba(201, 166, 107, 0.02);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}

.cart-item:hover {
  background: rgba(201, 166, 107, 0.05);
  padding-left: 1.2rem;
}

.cart-item strong {
  color: #5c4634;
  font-size: 0.95rem;
}

.remove-btn {
  background: transparent;
  border: none;
  color: #c9a66b;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.remove-btn:hover {
  background: #f0ece4;
  color: #b85a5a;
  transform: scale(1.1) rotate(90deg);
}

.empty-cart {
  color: #999;
  text-align: center;
  padding: 2rem 1rem;
  font-style: italic;
}

.checkout-card form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.checkout-card input {
  padding: 0.9rem;
  border: 2px solid #f0ece4;
  border-radius: 10px;
  background: #fafaf8;
  transition: all 0.3s ease;
}

.checkout-card input:focus {
  border-color: #c9a66b;
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

#form-message {
  margin-top: 1rem;
  font-weight: 600;
  color: #5c4634;
}

.checkout-page .section {
  padding-top: 3rem;
}

.checkout-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.checkout-summary,
.checkout-details {
  background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 166, 107, 0.1);
}

.checkout-summary h2,
.checkout-details h2 {
  font-family: 'Times New Roman', serif;
  color: #5c4634;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #5c4634;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0ece4;
}

.summary-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #f0ece4;
  font-size: 1.1rem;
  font-weight: 700;
  color: #5c4634;
  display: flex;
  justify-content: space-between;
}

.checkout-details form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-details label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: #5c4634;
  font-weight: 600;
}

.checkout-details input,
.checkout-details textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #e5d9c0;
  background: #fff;
  font: inherit;
}

.checkout-details textarea {
  min-height: 110px;
  resize: vertical;
}

.empty-checkout {
  color: #7d6b56;
  text-align: center;
  padding: 2rem 0;
}

/* Refill Page */
.refill-page {
  padding: 4rem 1rem 5rem;
}

.refill-card {
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(92, 70, 52, 0.12);
  border: 1px solid rgba(201, 166, 107, 0.18);
}

.refill-card h1 {
  font-family: 'Times New Roman', serif;
  color: #5c4634;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.refill-subtitle {
  color: #6b5b45;
  margin-bottom: 1.5rem;
}

.refill-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.refill-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.refill-field label,
.refill-card label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: #5c4634;
  font-weight: 600;
}

.refill-fragrance-select {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.refill-custom-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  min-height: 56px;
  border-radius: 16px;
  background: linear-gradient(rgba(255,255,255,0.98), rgba(255,255,255,0.98)), url('naysa_hand.jpeg') center/cover no-repeat;
  background-size: cover;
  border: 1px solid #e5d9c0;
  color: #5c4634;
  cursor: pointer;
}

.refill-custom-select:focus,
.refill-custom-select:hover {
  border-color: #c9a66b;
}

.refill-select-value {
  font-size: 1rem;
  color: #5c4634;
}

.select-arrow {
  font-size: 1.1rem;
  color: #5c4634;
}

.refill-options-popup {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.75rem);
  background: linear-gradient(rgba(255,255,255,0.98), rgba(255,255,255,0.95)), url('naysa_hand.jpeg') center/cover no-repeat;
  background-size: cover;
  border: 1px solid #e5d9c0;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  max-height: 320px;
  overflow: auto;
  z-index: 20;
  display: none;
  padding: 0.75rem;
}

.refill-options-popup.open {
  display: block;
}

.refill-option {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.88);
  color: #5c4634;
  text-align: left;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.refill-option:hover,
.refill-option.selected {
  background: rgba(201,166,107,0.18);
  transform: translateX(2px);
}

.refill-card input,
.refill-card select,
.refill-card textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #e5d9c0;
  background: #fff;
  font: inherit;
}

.refill-card input:focus,
.refill-card select:focus,
.refill-card textarea:focus {
  outline: none;
  border-color: #c9a66b;
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

.refill-step2 {
  display: none;
}

.refill-step2.active {
  display: block;
}

.refill-success {
  color: #27ae60;
  margin-top: 1rem;
  font-weight: 600;
}

.refill-error {
  color: #b85a5a;
  margin-top: 1rem;
  font-weight: 600;
}

/* Footer */
footer {
  background: #5c4634;
  color: #f8f4ed;
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  margin-bottom: 0.5rem;
}

.cart-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 3000;
  background: #5c4634;
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: min(92vw, 360px);
  text-align: center;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 2002;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #5c4634;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-container {
  display: flex;
}

/* Shop submenu */
.shop-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.shop-link {
  color: #5c4634;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
}
.shop-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #5c4634;
  padding: 0.25rem 0.5rem;
}
.shop-submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(248, 244, 237, 0.98);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: none;
  flex-direction: column;
  padding: 0.5rem;
  border-radius: 8px;
  z-index: 1002;
}
.shop-submenu a,
.shop-submenu a:visited {
  padding: 0.35rem 0.6rem;
  white-space: nowrap;
  display: block;
  color: #5c4634;
  text-decoration: none;
}
.shop-submenu a:hover {
  color: #c9a66b;
}
.shop-menu.open .shop-submenu {
  display: flex;
}

/* Mobile nav overlay (slide-in from right) */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(248, 244, 237, 0.98);
  backdrop-filter: blur(6px);
  padding: 1.25rem 1.5rem;
  z-index: 1001;
  transition: right 0.3s ease-in-out;
  box-shadow: -8px 0 30px rgba(0,0,0,0.12);
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav .mobile-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  padding: 0.25rem;
  cursor: pointer;
  color: #5c4634;
}
.mobile-nav a {
  padding: 0.6rem 0.25rem;
  text-decoration: none;
  color: #5c4634;
  font-weight: 600;
}
.mobile-shop-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0;
  border-top: none;
}
.mobile-nav .shop-submenu {
  padding-left: 0;
  margin-top: 0.25rem;
}

.nav-container.mobile-active {
  display: flex;
}

/* When mobile nav is active, hide the regular nav-links to avoid duplication */
.nav-container.mobile-active .nav-links {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    padding: 0.6rem 1rem;
  }

  .nav-container {
    display: flex;
    position: static;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    padding: 0;
    border-bottom: none;
    gap: 0.75rem;
    width: 100%;
  }

  .nav-container.mobile-active,
  .nav-container.open {
    display: flex;
  }

  .nav-container.open .logo,
  .nav-container .logo {
    display: none;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
  }

  .nav-links a {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(92, 70, 52, 0.1);
  }

  .hero-carousel {
    display: block;
    min-height: 0 !important;
    height: auto !important;
  }

  .carousel-wrapper,
  .slides,
  .slide {
    height: auto;
  }

  .slide img {
    height: auto !important;
    max-height: 300px;
    width: 100% !important;
    object-fit: contain;
    object-position: center;
  }

  .hero-overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 0.75rem 0 0.15rem;
    text-align: center;
  }

  .section {
    padding: 0.9rem 0.85rem !important;
  }

  .about-section {
    padding: 0.15rem 0 1rem !important;
  }

  .about-content {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
    align-items: start;
  }

  .about-media {
    gap: 1rem;
  }

  .about-media img,
  .about-feature-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 280px;
    max-height: 420px;
    border-radius: 24px;
    margin-top: 0;
    object-fit: cover;
  }

  .about-feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .product-grid,
  .product-collection-grid,
  .summer-grid,
  #product-list,
  .grid,
  .checkout-shell {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
    padding: 0 !important;
    width: 100%;
  }

  .product-card,
  .collection-card,
  .item,
  .card {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    padding: 0.9rem !important;
    box-sizing: border-box;
  }

  .product-card .product-image {
    aspect-ratio: 4 / 4.3;
    min-height: 0;
    height: auto !important;
    margin: 0 0 0.75rem;
  }

  .product-card h3,
  .product-title {
    font-size: 1.45rem !important;
    line-height: 1.28;
    letter-spacing: 0.2px;
    margin: 0 0 0.45rem 0;
  }

  .product-card p {
    min-height: auto;
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0.8rem;
  }

  .product-card label {
    font-size: 0.82rem;
    letter-spacing: 0.35px;
  }

  .product-card select,
  .product-card input,
  .product-card button,
  .cta-button {
    font-size: 0.95rem !important;
    padding: 0.7rem !important;
  }

  .collection-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .collection-card h3 {
    margin-top: 0.75rem;
  }

  .collection-card p {
    font-size: 0.95rem;
  }

  .collection-card .pricing-list {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .shop-submenu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
    display: none;
  }

  .shop-menu.open .shop-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.5rem;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-carousel {
    height: auto;
    min-height: 28vh;
    margin-top: 0;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .hero-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.35);
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .hero-arrow:hover {
    background: rgba(0,0,0,0.55);
    transform: translateY(-1px);
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: 2rem;
  }

  .product-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collection-card > img.collection-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  display: block;
}

  /* Desktop: ensure hero overlay is perfectly centered over the image */
  @media (min-width: 1024px) {
    .hero-carousel { height: 100vh; margin-top: 0; }
    .carousel-wrapper, .slides, .slide { height: 100%; }
    .slide img { height: 100%; object-fit: cover; }
    .hero-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      max-width: 1100px;
      text-align: center;
      z-index: 10;
      padding: 0 1rem;
    }
    /* Ensure CTA centers horizontally on desktop */
    .hero-arrow {
      margin: 1rem auto 0;
      display: inline-flex;
    }
    .hero-overlay h1 { font-size: clamp(2.2rem, 4.5vw, 4.5rem); }
    .hero-overlay p { font-size: 1.25rem; letter-spacing: 1.5px; }
  }
/* Summer cards */
.summer-card img {
  aspect-ratio: 4 / 4.2;
  border-radius: 50px;
}

/* No generic product-image wrapper styles here; wrapper styles are scoped to product cards */

.collection-card {
  background: white;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.collection-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-card h3 {
  font-family: 'Times New Roman', serif;
  font-size: 1.7rem;
  color: #5c4634;
  margin-bottom: 0.8rem;
}

/* Make hamburger the primary navigation on large screens too */
@media (min-width: 1024px) {
  .hamburger { display: flex; }
  /* ensure mobile-nav overlay positions below nav */
  .mobile-nav { top: 80px; }
}
/* ==================== MOBILE-ONLY IMPROVEMENTS (Compact alignment) ==================== */
@media (max-width: 768px) {
  .hero-carousel {
    margin-top: 0 !important;
    min-height: 32vh;
  }

  .section {
    padding: 0.9rem 0.85rem !important;
  }

  .about-section {
    padding: 0.15rem 0 1rem !important;
  }

  .about-content {
    grid-template-columns: 1.05fr 0.95fr !important;
    gap: 0.75rem !important;
    align-items: start !important;
  }

  .about-media {
    gap: 1rem;
  }

  .about-media img,
  .about-feature-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 280px;
    max-height: 420px;
    border-radius: 24px;
    margin-top: 0;
    object-fit: cover;
  }

  .about-feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .product-card .product-image {
    aspect-ratio: 4 / 4.3;
    min-height: 0;
  }

  .product-card h3 {
    font-size: 1.45rem;
    line-height: 1.28;
    letter-spacing: 0.2px;
    margin-bottom: 0.45rem;
  }

  .product-card p {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 0.8rem;
  }

  .rating-meta {
    font-size: 0.8rem;
  }
}
