/* COCONEAT Modern Minimal Shopify-style CSS */

/* --- Reset & Base Variables --- */
:root {
  /* Color Palette */
  --bg-primary: #FAF9F6;      /* Off-white coconut cream */
  --bg-secondary: #F3F1EC;    /* Soft warm sand grey */
  --text-main: #1D201D;       /* Deep charcoal green-grey */
  --text-muted: #666E65;      /* Subdued grey */
  --accent-gold: #C5A059;     /* Soft luxury gold */
  --accent-gold-light: #EFEBE0;
  --accent-green: #5D8C32;    /* Pure coconut leaf green */
  --accent-green-hover: #4A6E2B;
  --white: #FFFFFF;
  --border-light: #E8E5DF;
  --shadow-sm: 0 2px 8px rgba(29, 32, 29, 0.04);
  --shadow-md: 0 8px 30px rgba(29, 32, 29, 0.08);
  --shadow-lg: 0 16px 40px rgba(29, 32, 29, 0.12);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 12px;
  
  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Typographical System --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

/* --- Layout Containers --- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-description {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--text-main);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--text-main);
}

.btn-secondary:hover {
  background-color: rgba(29, 32, 29, 0.05);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* --- Floating Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(250, 249, 246, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 229, 223, 0.5);
  transition: var(--transition);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

/* Brand Logo (Matching Uploaded Image) */
.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 2px;
  color: var(--text-main);
}

.logo-c {
  margin-right: 1px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg) translateY(2px);
  margin-right: 2px;
}

.logo-text {
  letter-spacing: 4px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.cart-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: var(--transition);
}

.cart-toggle-btn:hover {
  background-color: rgba(29, 32, 29, 0.05);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--accent-green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-color: var(--bg-secondary);
  z-index: 1;
  border-bottom-left-radius: 200px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-green);
  background-color: rgba(93, 140, 50, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text-main);
  animation: fadeInUp 0.8s var(--transition);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeInUp 1s var(--transition);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-trust-bar {
  display: flex;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.trust-icon {
  color: var(--accent-gold);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-backdrop {
  position: absolute;
  width: 320px;
  height: 320px;
  background-color: var(--white);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
  box-shadow: var(--shadow-lg);
  animation: pulse 6s infinite alternate ease-in-out;
}

.hero-product-img {
  width: 100%;
  max-width: 360px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  animation: float 4s infinite ease-in-out;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.95; }
  100% { transform: scale(1.08); opacity: 1; }
}

/* --- Announcement Banner --- */
.announcement-banner {
  background-color: var(--text-main);
  color: var(--bg-primary);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}

.banner-slider {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  animation: slideText 25s linear infinite;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

@keyframes slideText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Why COCONEAT Section --- */
.why-section {
  background-color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background-color: var(--bg-primary);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.why-icon-container {
  color: var(--accent-green);
  background-color: rgba(93, 140, 50, 0.08);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.why-card:hover .why-icon-container {
  background-color: var(--accent-green);
  color: var(--white);
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Catalog Page Specific Styling (`shop.html`) --- */
.catalog-section {
  padding-top: 130px;
  background-color: var(--bg-primary);
  min-height: 80vh;
}

.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  color: var(--text-muted);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--text-main);
  color: var(--text-main);
  background-color: var(--bg-secondary);
}

.shop-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent-green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 5;
}

.product-card-badge.accessory {
  background-color: var(--accent-gold);
}

.product-card-img-wrapper {
  aspect-ratio: 1;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.product-card-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: var(--transition);
}

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

.product-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.product-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
  cursor: pointer;
}

.product-card-title:hover {
  color: var(--accent-gold);
}

.product-card-stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.product-card-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: auto;
}

.card-val-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.card-val-mrp {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.btn-card-add {
  background-color: var(--text-main);
  color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
}

.btn-card-add:hover {
  background-color: var(--accent-green);
  box-shadow: 0 4px 12px rgba(93, 140, 50, 0.2);
}

/* --- About Page Specific Styling (`about.html`) --- */
.about-hero {
  padding-top: 150px;
  background-color: var(--bg-secondary);
  text-align: center;
  padding-bottom: 80px;
  border-bottom-left-radius: 120px;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-story-img-box {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  aspect-ratio: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.about-story-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-story-content h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.about-story-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Value grid */
.values-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-box {
  text-align: center;
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background-color: var(--bg-primary);
}

.value-box-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-box h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.value-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Contact Page Specific Styling (`contact.html`) --- */
.contact-section {
  padding-top: 140px;
  min-height: 80vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-details-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-details-card h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.contact-method {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-method-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.contact-method-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-method-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* --- Shop / Product section --- */
.shop-section {
  background-color: var(--bg-primary);
}

.shop-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge-discount {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent-green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 10;
}

.gallery-main {
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.thumb-btn {
  width: 72px;
  height: 72px;
  background-color: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  transition: var(--transition);
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.thumb-btn img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumb-placeholder-label {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
}

/* Product details */
.product-details-container {
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-title-detail {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.product-ratings {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-original {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-discount-tag {
  background-color: rgba(93, 140, 50, 0.1);
  color: var(--accent-green);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-description-short {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.urgency-timer {
  background-color: var(--accent-gold-light);
  border: 1px solid var(--accent-gold);
  padding: 12px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: #8c7333;
}

.timer-dot {
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  animation: pulse 1s infinite alternate;
}

.selector-section {
  margin-bottom: 28px;
}

.selector-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

/* Size Options Selector Cards */
.size-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.size-card-option {
  position: relative;
  background-color: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.size-card-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.size-card-option:hover {
  border-color: var(--accent-gold);
}

.size-card-option.active {
  border-color: var(--text-main);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.size-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.size-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.size-label small {
  font-size: 0.75rem;
  color: var(--accent-green);
  display: block;
}

.badge-save {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: rgba(93, 140, 50, 0.1);
  color: var(--accent-green);
}

.badge-save.gold {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--accent-gold);
}

.size-card-price {
  margin-bottom: 8px;
}

.size-card-price .val-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-right: 8px;
}

.size-card-price .val-mrp {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.size-card-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.popular-ribbon {
  position: absolute;
  top: -10px;
  right: 12px;
  background-color: var(--accent-gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Bundles Selection Stack */
.bundles-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bundle-item-option {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  background-color: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.bundle-item-option:hover {
  border-color: var(--accent-gold);
}

.bundle-item-option.active {
  border-color: var(--accent-green);
  box-shadow: 0 4px 16px rgba(93, 140, 50, 0.08);
}

.bundle-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-checkbox input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.bundle-item-option.active .custom-radio {
  border-color: var(--accent-green);
}

.bundle-item-option.active .custom-radio::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent-green);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bundle-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bundle-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bundle-badge.green {
  background-color: rgba(93, 140, 50, 0.1);
  color: var(--accent-green);
}

.bundle-badge.gold {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--accent-gold);
}

.bundle-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.bundle-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bundle-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.b-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.b-mrp {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.b-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
}

/* Purchase Actions */
.purchase-actions {
  margin-top: 36px;
  margin-bottom: 24px;
}

.btn-add-cart {
  background-color: var(--text-main);
  color: var(--bg-primary);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  padding: 18px;
  width: 100%;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background-color: var(--accent-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(93, 140, 50, 0.2);
}

.cart-arrow {
  transition: var(--transition);
}

.btn-add-cart:hover .cart-arrow {
  transform: translateX(5px);
}

.payment-trust-badges {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-trust-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.badge-img {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: 4px;
  background-color: var(--white);
}

/* --- About & Ingredients --- */
.ingredients-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 80px;
  align-items: center;
}

.about-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.details-accordion details {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}

.details-accordion summary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.details-accordion summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--text-muted);
}

.details-accordion details[open] summary::after {
  content: '−';
}

.details-accordion p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 0.95rem;
}

/* Texture card graphic */
.about-visual {
  display: flex;
  justify-content: flex-end;
}

.texture-card {
  width: 100%;
  max-width: 400px;
  background-color: var(--bg-secondary);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius);
  padding: 36px;
}

.card-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-inner h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.ingredient-main {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-green);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 16px;
}

.certifications {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.cert-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.mfg-details-box {
  margin-top: 24px;
  background-color: var(--white);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mfg-details-box p {
  margin-bottom: 4px;
}

.mfg-title {
  display: inline-block;
  background-color: rgba(29, 32, 29, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  color: var(--text-main);
}

/* --- Customer Testimonials --- */
.reviews-section {
  background-color: var(--bg-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background-color: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.review-stars {
  color: var(--accent-gold);
  letter-spacing: 2.5px;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-green);
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.author-status {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

/* --- FAQ Section --- */
.faq-section {
  background-color: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--accent-gold);
}

.faq-question {
  width: 100%;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  transition: var(--transition);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-primary);
}

.faq-answer p {
  padding: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-light);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--text-main);
}

/* --- Slide-out Cart Drawer --- */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 32, 29, 0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--white);
  z-index: 210;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

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

.cart-header h3 {
  font-size: 1.35rem;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-close-btn:hover {
  background-color: var(--bg-secondary);
  color: var(--text-main);
}

.cart-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 16px;
  color: var(--text-muted);
  text-align: center;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cart Item Card */
.cart-item-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.cart-item-card:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background-color: var(--bg-secondary);
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.cart-item-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-item-variant {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.cart-item-qty {
  font-size: 0.85rem;
  color: var(--text-main);
}

.cart-item-price-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-remove-item {
  background: none;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: red;
  cursor: pointer;
  text-decoration: underline;
}

/* Cart upsell container styling */
.cart-upsell-container {
  padding: 16px 24px;
  background-color: var(--accent-gold-light);
  border-top: 1px solid var(--border-light);
}

.cart-upsell-container h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8c7333;
  margin-bottom: 10px;
}

.upsell-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.upsell-icon {
  font-size: 1.5rem;
}

.upsell-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 12px;
}

.upsell-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.upsell-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
}

.upsell-price del {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: 4px;
}

.btn-upsell-add {
  background-color: var(--text-main);
  color: var(--bg-primary);
  border: none;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-upsell-add:hover {
  background-color: var(--accent-green);
}

/* Cart footer */
.cart-footer {
  padding: 24px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.summary-line.discount {
  color: var(--accent-green);
  font-weight: 600;
}

.summary-line.total {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  margin-top: 6px;
}

.shipping-free {
  font-weight: 700;
  color: var(--accent-green);
}

.btn-checkout {
  background-color: var(--text-main);
  color: var(--bg-primary);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  margin-top: 12px;
  transition: var(--transition);
}

.btn-checkout:hover {
  background-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

/* --- Checkout Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 32, 29, 0.4);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 600px;
  background-color: var(--white);
  border-radius: var(--radius);
  z-index: 310;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.checkout-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: var(--bg-secondary);
  color: var(--text-main);
}

.modal-content {
  padding: 40px;
}

.modal-content h2 {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(29, 32, 29, 0.05);
}

.form-group textarea {
  height: 80px;
  resize: none;
}

.payment-method-selector {
  margin-top: 12px;
}

.payment-method-selector span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-method-card {
  border: 1.5px solid var(--border-light);
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.payment-method-card input {
  position: absolute;
  opacity: 0;
}

.payment-method-card:hover {
  border-color: var(--accent-gold);
}

.payment-method-card.active {
  border-color: var(--text-main);
  background-color: var(--bg-secondary);
}

.payment-method-label {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Simulated UPI QR Screen inside Checkout Modal */
.qr-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.qr-wrapper-box {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.qr-svg {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.06));
}

.qr-status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.spinner-mini {
  width: 16px;
  height: 16px;
  border: 2.5px solid var(--border-light);
  border-top-color: var(--accent-green);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.qr-actions-row {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}

.qr-actions-row button {
  flex: 1;
}

/* Success Screen */
.success-screen {
  text-align: center;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: var(--accent-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(93, 140, 50, 0.2);
}

.success-order-id {
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.success-details-card {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  margin: 24px 0;
}

.success-details-card h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.success-details-card p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* --- Floating Customer Support Widget (WhatsApp) --- */
.whatsapp-float-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  z-index: 99;
  transition: var(--transition);
}

.whatsapp-float-widget:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20BA5A;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--text-main);
  color: var(--bg-primary);
  border-top: 1px solid rgba(232, 229, 223, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 80px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-bio {
  color: #a4aaa3;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-contact-info {
  font-size: 0.85rem;
  color: var(--accent-gold);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-column h4, .footer-newsletter-column h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-column a {
  color: #a4aaa3;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links-column a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-newsletter-column p {
  color: #a4aaa3;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  background-color: rgba(250, 249, 246, 0.1);
  border: 1px solid rgba(250, 249, 246, 0.2);
  padding: 12px 16px;
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
}

.newsletter-form input::placeholder {
  color: #7b827a;
}

.newsletter-form input:focus {
  border-color: var(--accent-gold);
}

.btn-newsletter {
  background-color: var(--bg-primary);
  color: var(--text-main);
  border: none;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.btn-newsletter:hover {
  background-color: var(--accent-gold);
  color: var(--text-main);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(232, 229, 223, 0.1);
  padding: 30px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #7b827a;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mfg-bottom-notice {
  font-style: italic;
  font-size: 0.75rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-bg-accent {
    width: 100%;
    height: 45%;
    bottom: 0;
    top: auto;
    border-bottom-left-radius: 0;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-trust-bar {
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .shop-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-gallery {
    position: relative;
    top: 0;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-visual {
    justify-content: center;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }

  .catalog-filters {
    gap: 8px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Can slide out later or keep minimal */
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}
