/* ===================== ROOT & RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #2D5016;
  --green-mid: #4A7C2F;
  --green-light: #7BAE5A;
  --green-pale: #C8DDB0;
  --cream: #F7F3EC;
  --cream-dark: #EDE5D8;
  --terra: #C4733A;
  --terra-light: #E8A97A;
  --brown: #6B4226;
  --text-dark: #1E2B0F;
  --text-mid: #4A5240;
  --text-light: #7A8470;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(45,80,22,0.10);
  --shadow-lg: 0 12px 48px rgba(45,80,22,0.16);
  --radius: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
em { font-style: italic; color: var(--green-mid); }
a { text-decoration: none; color: inherit; }

/* ===================== PROMO BANNER ===================== */
.promo-banner {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 10px 48px;
  font-size: 13px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1000;
}
.promo-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; color: white; font-size: 20px;
  cursor: pointer; line-height: 1;
}

/* ===================== NAVBAR ===================== */
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px;
  background: rgba(247,243,236,0.95);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 999;
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 2px 12px rgba(45,80,22,0.06);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--green-dark);
}
.nav-logo span { color: var(--terra); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-mid); }

.cart-btn {
  background: var(--green-dark); color: white;
  border: none; border-radius: 50px;
  padding: 10px 22px; font-size: 14px;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.cart-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.cart-count {
  background: var(--terra); color: white;
  border-radius: 50%; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

.hamburger {
  display: none; background: transparent; border: none;
  font-size: 22px; cursor: pointer; color: var(--green-dark);
}

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--cream); padding: 16px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav a {
  padding: 10px 0; font-size: 15px; color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav.open { display: flex; }

@media(max-width:768px){
  .navbar { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 90vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: 80px 60px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #F7F3EC 0%, #EDE5D8 60%, #D8EAC4 100%);
}

.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.circle {
  position: absolute; border-radius: 50%;
  opacity: 0.18;
}
.c1 { width: 520px; height: 520px; background: var(--green-pale); top: -120px; right: -80px; }
.c2 { width: 280px; height: 280px; background: var(--terra-light); bottom: -60px; left: 40%; }
.c3 { width: 160px; height: 160px; background: var(--green-light); top: 30%; left: -40px; }

.hero-content { flex: 1; max-width: 580px; z-index: 1; animation: fadeUp 0.8s ease both; }
.hero-tag {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-mid); font-weight: 500; margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(44px, 6vw, 76px); font-weight: 700; line-height: 1.08;
  color: var(--text-dark); margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px; line-height: 1.7; color: var(--text-mid);
  max-width: 460px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.btn-primary {
  background: var(--green-dark); color: white;
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 500; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(45,80,22,0.25);
  display: inline-block;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,80,22,0.3); }

.btn-secondary {
  background: transparent; color: var(--green-dark);
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 500;
  border: 2px solid var(--green-dark);
  cursor: pointer; display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--green-dark); color: white; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 20px; font-weight: 700; color: var(--green-dark); }
.stat span { font-size: 12px; color: var(--text-light); }
.stat-divider { width: 1px; height: 36px; background: var(--green-pale); }

.hero-image { flex: 0 0 400px; display: flex; align-items: center; justify-content: center; z-index: 1; }
.hero-img-frame {
  width: 340px; height: 340px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero-img-inner { font-size: 120px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media(max-width:900px){
  .hero { flex-direction: column; padding: 60px 24px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { flex: none; margin-top: 40px; }
  .hero-img-frame { width: 240px; height: 240px; }
  .hero-img-inner { font-size: 80px; }
}

/* ===================== VISION & MISSION ===================== */
.vision-mission {
  display: flex; align-items: stretch;
  background: var(--green-dark);
  color: white;
}
.vm-card {
  flex: 1; padding: 64px 60px; text-align: center;
}
.vm-card:hover { background: rgba(255,255,255,0.05); }
.vm-icon { font-size: 40px; margin-bottom: 20px; }
.vm-card h3 {
  font-size: 26px; margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}
.vm-card p { font-size: 15px; line-height: 1.8; opacity: 0.85; max-width: 380px; margin: 0 auto; }
.vm-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 40px 0; }

@media(max-width:768px){
  .vision-mission { flex-direction: column; }
  .vm-card { padding: 48px 24px; }
  .vm-divider { width: 60px; height: 1px; margin: 0 auto; }
}

/* ===================== ABOUT ===================== */
.about {
  display: flex; align-items: center; gap: 80px;
  padding: 100px 60px;
  background: var(--cream);
}
.about-text { flex: 1; }
.section-tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); font-weight: 600; margin-bottom: 12px; display: block;
}
.about-text h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.2; margin-bottom: 24px; }
.about-text p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge {
  background: var(--cream-dark); color: var(--green-dark);
  border-radius: 50px; padding: 8px 18px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--green-pale);
}

.about-visual { flex: 0 0 380px; display: flex; justify-content: center; }
.about-img-wrap {
  width: 320px; height: 360px;
  background: linear-gradient(160deg, var(--green-pale), var(--cream-dark));
  border-radius: 32px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.about-img-main { font-size: 100px; }
.about-img-tag {
  font-size: 12px; letter-spacing: 0.1em; color: var(--green-dark);
  background: white; border-radius: 50px; padding: 6px 20px;
}

@media(max-width:900px){
  .about { flex-direction: column; padding: 60px 24px; gap: 40px; }
  .about-visual { flex: none; }
}

/* ===================== SHOP ===================== */
.shop {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.shop-header { text-align: center; margin-bottom: 48px; }
.shop-header h2 { font-size: clamp(32px, 4vw, 48px); }

.shop-controls {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; margin-bottom: 48px;
}
.search-wrap {
  display: flex; align-items: center; gap: 12px;
  background: white; border-radius: 50px;
  padding: 12px 24px; width: 100%; max-width: 440px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--cream-dark);
}
.search-wrap input {
  border: none; outline: none; font-size: 14px;
  font-family: 'DM Sans', sans-serif; width: 100%; background: transparent;
  color: var(--text-dark);
}

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.tab {
  background: white; border: 1.5px solid var(--cream-dark);
  border-radius: 50px; padding: 9px 22px;
  font-size: 13px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-mid); transition: all 0.2s;
}
.tab:hover, .tab.active {
  background: var(--green-dark); color: white; border-color: var(--green-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  animation: fadeUp 0.5s ease both;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card-img {
  height: 220px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.product-card-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--terra); color: white;
  border-radius: 50px; padding: 4px 12px;
  font-size: 11px; font-weight: 600;
}

.product-card-body { padding: 20px 22px 22px; }
.product-category {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-mid); font-weight: 600; margin-bottom: 6px;
}
.product-name { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.product-desc {
  font-size: 13px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 14px;
  min-height: 88px; max-height: 110px; overflow: hidden;
}

.product-stars { color: #F4B942; font-size: 13px; margin-bottom: 4px; }
.product-reviews { font-size: 12px; color: var(--text-light); margin-bottom: 14px; }

.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 20px; font-weight: 700; color: var(--green-dark); }
.product-price .original {
  font-size: 13px; color: var(--text-light);
  text-decoration: line-through; font-weight: 400; margin-right: 6px;
}

.add-btn {
  background: var(--green-dark); color: white;
  border: none; border-radius: 50px; padding: 9px 18px;
  font-size: 13px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  transition: all 0.2s;
}
.add-btn:hover { background: var(--green-mid); transform: scale(1.04); }
.add-btn.added { background: var(--terra); }

.no-results {
  text-align: center; padding: 60px 20px;
  grid-column: 1/-1; color: var(--text-light); font-size: 15px;
}

@media(max-width:768px){ .shop { padding: 60px 24px; } }

/* ===================== CONTACT ===================== */
.contact {
  display: flex; gap: 80px; align-items: center;
  padding: 100px 60px;
  background: var(--cream);
}
.contact-info { flex: 1; }
.contact-info h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 20px; }
.contact-info > p { font-size: 15px; color: var(--text-mid); line-height: 1.8; }

.contact-whatsapp {
  flex: 1; display: flex;
  align-items: center; justify-content: center;
}
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: white;
  padding: 20px 48px; border-radius: 50px;
  font-size: 17px; font-weight: 600;
  text-decoration: none; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.45);
}

@media(max-width:900px){
  .contact { flex-direction: column; padding: 60px 24px; gap: 40px; text-align: center; }
}

/* ===================== FOOTER ===================== */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.8); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px; padding: 64px 60px 48px;
}
.footer-brand .nav-logo { color: white; font-size: 20px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; opacity: 0.7; max-width: 220px; }

.footer-links h4 {
  font-family: 'Playfair Display', serif; font-size: 16px;
  color: white; margin-bottom: 16px;
}
.footer-links a { display: block; font-size: 13px; margin-bottom: 10px; opacity: 0.7; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }

.footer-newsletter h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: white; margin-bottom: 8px; }
.footer-newsletter p { font-size: 13px; opacity: 0.7; margin-bottom: 16px; }
.newsletter-wrap { display: flex; gap: 0; }
.newsletter-wrap input {
  flex: 1; padding: 12px 16px; border: none; border-radius: 8px 0 0 8px;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  outline: none; background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-wrap button {
  background: var(--terra); color: white; border: none;
  padding: 12px 18px; border-radius: 0 8px 8px 0;
  cursor: pointer; font-size: 16px; transition: background 0.2s;
}
.newsletter-wrap button:hover { background: var(--terra-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 60px; text-align: center;
  font-size: 12px; opacity: 0.5;
}

@media(max-width:900px){
  .footer-top { grid-template-columns: 1fr 1fr; padding: 48px 24px 32px; gap: 32px; }
  .footer-bottom { padding: 16px 24px; }
}
@media(max-width:480px){
  .footer-top { grid-template-columns: 1fr; }
}

/* ===================== CART DRAWER ===================== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 2000; display: none; backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed; right: -420px; top: 0; bottom: 0;
  width: 400px; background: var(--cream);
  z-index: 2001; display: flex; flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-header h3 { font-size: 20px; }
.cart-header button {
  background: transparent; border: none; font-size: 24px;
  cursor: pointer; color: var(--text-mid); line-height: 1;
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px 0; }
.cart-empty { text-align: center; padding: 60px 24px; color: var(--text-light); font-size: 14px; line-height: 1.8; }

.cart-item {
  display: flex; gap: 14px; padding: 16px 24px;
  border-bottom: 1px solid var(--cream-dark); align-items: center;
}
.cart-item-img {
  width: 60px; height: 60px; background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 14px; margin-bottom: 4px; }
.cart-item-info span { font-size: 13px; color: var(--text-light); }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--cream-dark); background: white;
  cursor: pointer; font-size: 14px; display: flex; align-items: center;
  justify-content: center; transition: all 0.15s;
}
.qty-btn:hover { background: var(--green-dark); color: white; border-color: var(--green-dark); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 18px; text-align: center; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--cream-dark);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 16px; margin-bottom: 16px;
}
.cart-total strong { font-size: 22px; color: var(--green-dark); }

@media(max-width:480px){
  .cart-drawer { width: 100%; right: -100%; }
}

/* ===================== PRODUCT MODAL ===================== */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* The dark tint */
    backdrop-filter: blur(3px); /* This causes the blur effect */
    z-index: 3000;
}

.product-modal {
    display: none; /* Hidden by default */
    z-index: 1000;
    /* ... your other modal styles ... */
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: min(820px, 92vw);
  max-height: 88vh; overflow-y: auto;
  background: var(--cream); border-radius: 24px;
  z-index: 3001; padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0; pointer-events: none;
}
.product-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1; pointer-events: auto;
}

.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: var(--cream-dark); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 20px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  color: var(--text-mid); transition: background 0.2s;
}
.modal-close:hover { background: var(--green-pale); }

.modal-grid { display: flex; gap: 40px; }
.modal-img {
  flex: 0 0 240px; height: 280px;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  border-radius: 20px; display: flex; align-items: center;
  justify-content: center; font-size: 90px;
}
.modal-info { flex: 1; }
.modal-category { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.modal-name { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.modal-stars { color: #F4B942; margin-bottom: 4px; }
.modal-review-count { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.modal-desc { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 20px; }
.modal-price { font-size: 28px; font-weight: 700; color: var(--green-dark); margin-bottom: 24px; }
.modal-add-btn {
  background: var(--green-dark); color: white; border: none;
  border-radius: 50px; padding: 14px 36px;
  font-size: 15px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(45,80,22,0.25);
}
.modal-add-btn:hover { background: var(--green-mid); transform: translateY(-2px); }

.modal-reviews { margin-top: 36px; border-top: 1px solid var(--cream-dark); padding-top: 28px; }
.modal-reviews h4 { font-size: 18px; margin-bottom: 20px; }
.review-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--cream-dark); }
.review-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.review-name { font-weight: 600; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-light); }
.review-stars { color: #F4B942; font-size: 12px; margin-bottom: 6px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

@media(max-width:640px){
  .modal-grid { flex-direction: column; }
  .modal-img { flex: none; height: 200px; }
  .product-modal { padding: 28px 20px; }
}

/* ===================== MODAL IMAGE GALLERY ===================== */
.modal-img-wrap { flex: 0 0 260px; display: flex; flex-direction: column; gap: 12px; }
.modal-main-img-box {
  width: 100%; height: 280px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
}
.modal-thumbs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.modal-thumb {
  width: 68px; height: 68px; object-fit: cover; border-radius: 10px;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}
.modal-thumb:hover { opacity: 0.85; border-color: var(--green-light); }
.modal-thumb.active-thumb { border-color: var(--green-dark); }
/* ===================== SHOP SECTIONS ===================== */
.shop-section-label {
  margin: 48px 0 20px;
  padding: 20px 28px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.shop-section-label.own {
  border-left: 5px solid var(--green-dark);
  background: linear-gradient(135deg, #f0f7e8, white);
}
.shop-section-label.partner {
  border-left: 5px solid var(--terra);
  background: linear-gradient(135deg, #fdf5ef, white);
}
.shop-section-title {
  display: flex; align-items: center; gap: 12px; margin-bottom: 6px;
}
.shop-section-title h3 {
  font-size: 22px; font-weight: 700; font-family: "Playfair Display", serif;
  color: var(--text-dark);
}
.section-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}
.own-dot { background: var(--green-dark); }
.partner-dot { background: var(--terra); }
.section-badge {
  background: var(--green-dark); color: white;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 50px; text-transform: uppercase;
}
.section-badge.partner { background: var(--terra); }
.shop-section-sub {
  font-size: 13px; color: var(--text-light); margin-left: 24px;
}

/* Coming Soon Card */
.coming-soon-card {
  background: white; border-radius: var(--radius);
  padding: 48px 32px; text-align: center;
  border: 2px dashed var(--green-pale);
  grid-column: 1 / -1;
}
.coming-soon-icon { font-size: 48px; margin-bottom: 16px; }
.coming-soon-card h4 {
  font-size: 20px; font-family: "Playfair Display", serif;
  color: var(--green-dark); margin-bottom: 10px;
}
.coming-soon-card p {
  font-size: 14px; color: var(--text-light);
  max-width: 360px; margin: 0 auto; line-height: 1.7;
}

/* About image placeholder */
.about-img-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; width: 100%; height: 100%;
}
.about-img-placeholder p {
  font-size: 12px; color: var(--green-dark);
  text-align: center; padding: 0 16px;
}

.own-card {
  border: 2px solid var(--green-pale);
  box-shadow: 0 4px 24px rgba(45,80,22,0.12);
}
.own-card:hover {
  border-color: var(--green-light);
}

.modal-video {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #000; /* Black bars if video aspect ratio differs */
}