* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #F9F6F0;
  --beige: #EDE8DC;
  --green: #2D5016;
  --green-mid: #4A7C2F;
  --green-light: #8FB573;
  --green-pale: #D4E8C2;
  --brown: #6B4226;
  --gold: #B8860B;
  --text: #2A2A2A;
  --muted: #6B6B6B;
  --white: #FFFFFF;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
}

.site-wrapper {
  max-width: 100%;
  overflow: hidden;
}

/* Top Strip */
.top-strip {
  background: var(--green);
  color: #fff;
  padding: 6px 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
}

.top-strip a {
  color: #D4E8C2;
  text-decoration: none;
}

/* Main Navigation */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 9px;
  color: var(--green-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  display: block;
  margin-top: -3px;
}

nav {
  display: flex;
  gap: 6px;
}

nav a {
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.2s;
  font-weight: 400;
}

nav a:hover, nav a.active, nav a.current-menu-item {
  background: var(--green-pale);
  color: var(--green);
}

.nav-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-icons span, .nav-icons a {
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
  text-decoration: none;
}

.cart-count {
  font-size: 11px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  padding: 2px 5px;
  position: relative;
  top: -8px;
  left: -5px;
}

.wa-btn {
  background: #25D366;
  color: #fff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(135deg, #1a3d08 0%, #2D5016 40%, #4A7C2F 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-leaves {
  position: absolute;
  right: -20px;
  top: -40px;
  width: 55%;
  opacity: 0.2;
  font-size: 280px;
  line-height: 1;
  color: #D4E8C2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,232,194,0.2);
  border: 1px solid rgba(212,232,194,0.4);
  color: #D4E8C2;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.05;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 em {
  color: #8FB573;
  font-style: italic;
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary, .woocommerce a.button {
  background: #fff;
  color: var(--green);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-primary:hover, .woocommerce a.button:hover {
  background: var(--green-pale);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 60px;
  right: 60px;
  display: flex;
  gap: 0;
  z-index: 2;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 18px 32px;
  text-align: center;
  flex: 1;
}

.stat-item:first-child { border-radius: 6px 0 0 6px; }
.stat-item:last-child { border-radius: 0 6px 6px 0; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  display: block;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.section {
  padding: 80px 60px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-title {
  font-size: 46px;
  color: var(--green);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 48px;
}

/* Categories Grid */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--beige);
  position: relative;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45,80,22,0.12);
}

.cat-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.cat-info {
  padding: 18px 20px;
}

.cat-info h3 {
  font-size: 20px;
  color: var(--green);
  margin-bottom: 4px;
}

.cat-info p {
  font-size: 13px;
  color: var(--muted);
}

.cat-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s;
}

.cat-card:hover .cat-arrow {
  opacity: 1;
}

/* Why Section */
.why-section {
  background: var(--green);
  padding: 80px 60px;
}

.why-section .section-label {
  color: var(--green-light);
}

.why-section .section-title {
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.why-item h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 500;
}

.why-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prod-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--beige);
  transition: all 0.3s;
  cursor: pointer;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45,80,22,0.1);
}

.prod-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 10px;
}

.prod-body {
  padding: 16px;
}

.prod-body h4 {
  font-size: 17px;
  color: var(--green);
  margin-bottom: 6px;
}

.price {
  font-size: 18px;
  font-weight: 500;
  color: var(--brown);
}

.prod-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.btn-cart, .woocommerce a.button.add_to_cart_button {
  flex: 1;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-wa-sm {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

/* Quiz Section */
.quiz-section {
  background: var(--beige);
  padding: 80px 60px;
}

.quiz-box {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--beige);
}

.quiz-box h2 {
  font-size: 40px;
  color: var(--green);
  margin-bottom: 12px;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.quiz-opt {
  padding: 14px 20px;
  border: 1.5px solid var(--beige);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  text-align: left;
  background: var(--cream);
}

.quiz-opt.selected, .quiz-opt:hover {
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--green);
}

.quiz-opt span {
  font-size: 20px;
  margin-right: 10px;
}

.btn-quiz {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--beige);
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Newsletter */
.newsletter {
  background: var(--green-pale);
  padding: 60px;
  text-align: center;
}

.newsletter h2 {
  font-size: 38px;
  color: var(--green);
  margin-bottom: 10px;
}

.nl-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.nl-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 14px;
  outline: none;
}

.nl-form button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

/* Footer */
footer {
  background: #1a2e0a;
  color: rgba(255,255,255,0.7);
  padding: 60px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  color: #D4E8C2;
  font-size: 24px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-size: 14px;
  color: #D4E8C2;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}

.floating-wa:hover {
  transform: scale(1.1);
}

/* Shop Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 48px 60px;
}

.filters {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--beige);
  height: fit-content;
  position: sticky;
  top: 90px;
}

.filter-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--beige);
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.shop-header h2 {
  font-size: 32px;
  color: var(--green);
}

/* About Page */
.about-hero {
  background: var(--green-pale);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero h1 {
  font-size: 56px;
  color: var(--green);
  margin-bottom: 16px;
}

.about-store-img {
  background: linear-gradient(135deg, var(--green-pale), var(--green-light));
  border-radius: 12px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}

.timeline {
  padding: 60px;
  background: var(--white);
}

.timeline h2 {
  font-size: 40px;
  color: var(--green);
  text-align: center;
  margin-bottom: 48px;
}

.tl-items {
  max-width: 680px;
  margin: 0 auto;
}

.tl-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.tl-content {
  flex: 1;
  background: var(--cream);
  border-radius: 8px;
  padding: 20px 24px;
  border: 1px solid var(--beige);
}

.tl-content h4 {
  font-size: 18px;
  color: var(--green);
  margin-bottom: 6px;
}

.tl-dot {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* Contact Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact-info {
  background: var(--green);
  padding: 60px;
  color: #fff;
}

.contact-info h2 {
  font-size: 46px;
  color: #fff;
  margin-bottom: 8px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 14px;
  font-weight: 500;
  color: #D4E8C2;
  margin-bottom: 4px;
}

.contact-form-side {
  padding: 60px;
  background: var(--cream);
}

.contact-form-side h3 {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 8px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.btn-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.map-placeholder {
  background: var(--green-pale);
  border-radius: 8px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  flex-direction: column;
  gap: 12px;
  color: var(--green-mid);
}

/* Product Page */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 60px;
  align-items: start;
}

.prod-main-img {
  height: 380px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-info h1 {
  font-size: 40px;
  color: var(--green);
  margin-bottom: 8px;
}

.prod-price {
  font-size: 36px;
  font-weight: 500;
  color: var(--brown);
}

.prod-divider {
  border-top: 1px solid var(--beige);
  margin: 20px 0;
}

.prod-qty {
  margin-bottom: 16px;
}

.btn-add, .btn-buy, .btn-wa-full {
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 12px;
}

.btn-add {
  background: var(--green);
  color: #fff;
  border: none;
}

.btn-buy {
  background: var(--white);
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn-wa-full {
  background: #25D366;
  color: #fff;
  border: none;
}

.prod-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--beige);
}

.prod-tab-btn {
  padding: 12px 20px;
  font-size: 13px;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.prod-tab-btn.active {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}

.prod-tab-content {
  padding: 20px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .top-strip { padding: 6px 16px; font-size: 11px; }
  .main-nav { padding: 0 16px; }
  nav { display: none; }
  .hero-content { padding: 40px 20px; }
  .hero h1 { font-size: 38px; }
  .hero-stats { left: 20px; right: 20px; bottom: 20px; flex-wrap: wrap; }
  .section { padding: 48px 20px; }
  .section-title { font-size: 32px; }
  .cats-grid, .products-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; padding: 24px 16px; }
  .filters { position: static; }
  .contact-layout, .about-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; padding: 24px 16px; }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--green);
    padding: 10px;
    user-select: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* ==============================================
   Additional Responsive Fixes & Improvements
   ============================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Tables */
.woocommerce table.shop_table {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

/* Responsive Cart Page */
@media (max-width: 767px) {
    .woocommerce-cart-form .shop_table {
        font-size: 12px;
    }
    
    .woocommerce-cart-form .product-remove {
        padding: 8px;
    }
    
    .cart-collaterals {
        flex-direction: column;
    }
    
    .cart-collaterals > * {
        width: 100% !important;
    }
}

/* Responsive Checkout */
@media (max-width: 767px) {
    .woocommerce-checkout .col2-set {
        flex-direction: column;
    }
    
    .woocommerce-checkout .col-1,
    .woocommerce-checkout .col-2 {
        width: 100% !important;
        padding: 0 !important;
    }
    
    #order_review {
        margin-top: 30px;
    }
}

/* Responsive Product Filters */
@media (max-width: 767px) {
    .woocommerce-ordering {
        width: 100%;
    }
    
    .woocommerce-result-count {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .products .product {
        margin-bottom: 20px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .cat-card:hover,
    .prod-card:hover,
    .gift-cat:hover {
        transform: none;
    }
    
    .cat-arrow {
        opacity: 1;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    button,
    .btn-primary,
    .btn-outline,
    .btn-wa,
    .btn-cart,
    .quiz-opt,
    .gtab {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .quiz-opt:active {
        background: var(--green-pale);
        transform: scale(0.98);
    }
}

/* Improved Scrolling for Mobile */
@media (max-width: 767px) {
    .gallery-tabs {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .gallery-tabs::-webkit-scrollbar {
        height: 3px;
    }
    
    .gallery-tabs::-webkit-scrollbar-track {
        background: var(--beige);
    }
    
    .gallery-tabs::-webkit-scrollbar-thumb {
        background: var(--green);
    }
}

/* Safe Area Insets for Notch Devices */
@supports (padding: max(0px)) {
    .top-strip {
        padding-left: max(40px, env(safe-area-inset-left));
        padding-right: max(40px, env(safe-area-inset-right));
    }
    
    .floating-wa {
        bottom: max(30px, env(safe-area-inset-bottom));
        right: max(30px, env(safe-area-inset-right));
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    body:not(.light-mode) {
        --cream: #1a1a1a;
        --beige: #2a2a2a;
        --white: #2d2d2d;
        --text: #e0e0e0;
        --muted: #b0b0b0;
    }
    
    body:not(.light-mode) .prod-card,
    body:not(.light-mode) .review-card,
    body:not(.light-mode) .quiz-box,
    body:not(.light-mode) .filters {
        background: #333;
    }
    
    body:not(.light-mode) .form-field input,
    body:not(.light-mode) .form-field select,
    body:not(.light-mode) .form-field textarea {
        background: #444;
        color: #e0e0e0;
        border-color: #555;
    }
}