/* Critical CSS - Inline for fast loading */
:root {
  --primary-green: #2d5016;
  --secondary-green: #3d6b1f;
  --accent-green: #4a7c23;
  --light-green: #e8f5e8;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --gold: #d4af37;
  --red: #dc2626;
  --orange: #ea580c;
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Font Face - Local fonts for performance */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.lazy-img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lazy-img.loaded {
  opacity: 1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Typography */
h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  line-height: 1.4;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
}

.btn-large {
  padding: 16px 32px;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

/* Sticky Countdown Banner */
.countdown-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(45deg, var(--red), var(--orange));
  color: var(--white);
  padding: 8px 0;
  text-align: center;
  z-index: 1000;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.countdown-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.countdown-timer {
  font-weight: 700;
  font-size: clamp(0.875rem, 2vw, 1rem);
  background: rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 4px;
}

.countdown-text {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Order Notifications */
.order-notifications {
  position: fixed;
  bottom: 80px;
  left: 16px;
  right: 16px;
  z-index: 999;
  pointer-events: none;
}

.fake-order {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius);
  padding: 8px 12px;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideInUp 0.5s ease-out;
  max-width: 300px;
  font-size: 0.75rem;
  line-height: 1.3;
}

.fake-order img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
}

.fake-order-content {
  flex: 1;
  min-width: 0;
}

.fake-order-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.fake-order-stars {
  color: var(--gold);
  font-size: 0.7rem;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 8px 0;
  margin-top: 48px;
  position: relative;
}

.logo img {
  height: 32px;
  width: auto;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(45, 80, 22, 0.8), rgba(61, 107, 31, 0.6));
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 0;
}

.hero-title {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.95);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 24px auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-container.video-vertical {
  max-width: 280px;
  aspect-ratio: 9/16;
}

.video-container:not(.video-vertical) {
  aspect-ratio: 16/9;
}

.yt-lite {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-lite-playbtn {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}

.yt-lite-playbtn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--white);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.yt-lite:hover .yt-lite-playbtn {
  transform: scale(1.1);
}

/* Sections */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.section-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(45, 80, 22, 0.85), rgba(61, 107, 31, 0.75));
  z-index: 1;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storytelling, .sensory {
  position: relative;
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.story-content, .sensory-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.story-content h2, .sensory-content h2 {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.story-content p, .sensory-content p {
  color: rgba(255,255,255,0.95);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
}

/* Products Section */
.products {
  padding: 80px 0;
  background: var(--light-green);
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
}

.text-success {
  color: var(--primary-green) !important;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 16px;
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--primary-green);
  color: var(--white);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

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

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card.best-seller {
  border: 3px solid var(--gold);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-green);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.best-seller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-info h3 {
  font-size: clamp(0.875rem, 2vw, 1rem);
  margin-bottom: 8px;
  color: var(--text-dark);
}

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

.stars {
  color: var(--gold);
  font-size: 0.875rem;
}

.review-count {
  font-size: 0.75rem;
  color: var(--text-light);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.feature {
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 2px 6px;
  background: var(--light-green);
  border-radius: 4px;
  width: fit-content;
}

.product-price {
  margin-bottom: 16px;
  margin-top: auto;
}

.price-original {
  font-size: 0.875rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 8px;
}

.price-promo {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 700;
  color: var(--primary-green);
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.btn-cart {
  flex: 1;
  background: var(--primary-green);
  color: var(--white);
  padding: 8px 12px;
  font-size: 0.75rem;
}

.btn-detail {
  background: var(--white);
  color: var(--primary-green);
  border: 1px solid var(--primary-green);
  padding: 8px 12px;
  font-size: 0.75rem;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.benefit-item h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
}

.why-cta {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-dark);
  margin: 32px 0;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--light-green);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.testimonial-content p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.testimonial-author strong {
  color: var(--primary-green);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Authority Section */
.authority {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.authority-item {
  text-align: center;
}

.authority-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.authority-item h3 {
  color: var(--primary-green);
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.4;
}

/* Order Form Section */
.order-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: var(--white);
}

.wa-order-form {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  color: var(--text-dark);
}

.form-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: auto;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}

.security-badges img {
  height: 24px;
  width: auto;
}

.wa-order-form h3 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 24px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.kopi-options {
  margin-bottom: 20px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
}

.checkbox-row label:hover {
  background: var(--light-green);
}

.checkbox-row input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  accent-color: var(--primary-green);
  cursor: pointer;
}

.free-shipping-toggle {
  grid-column: 1 / -1;
  font-weight: 600;
  color: var(--primary-green);
}

.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.form-inputs input,
.klik-catatan {
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-inputs input:focus,
.klik-catatan:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.error-message {
  color: var(--red);
  font-size: 0.75rem;
  display: none;
}

.harga-summary {
  background: var(--light-green);
  border: 2px solid var(--primary-green);
  border-radius: var(--border-radius);
  padding: 16px;
  margin: 20px 0;
  display: none;
}

.summary-header {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary-green);
  margin-bottom: 8px;
  text-align: center;
}

.price-breakdown {
  text-align: center;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 0.875rem;
}

.price-label {
  color: var(--text-light);
}

.price-normal {
  text-decoration: line-through;
  color: var(--text-light);
}

.price-promo {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1rem;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.payment-options {
  margin: 20px 0;
}

.payment-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--primary-green);
}

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

.payment-row label {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--border-radius);
  border: 2px solid #e5e7eb;
  transition: var(--transition);
}

.payment-row label:hover,
.payment-row label:has(input:checked) {
  border-color: var(--primary-green);
  background: var(--light-green);
}

.payment-row input[type="radio"] {
  margin-right: 8px;
  accent-color: var(--primary-green);
}

.hidden-step {
  display: none;
}

.klik-catatan {
  min-height: 80px;
  resize: vertical;
  margin-bottom: 20px;
}

.klik-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: var(--white);
  padding: 14px 20px;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
}

.klik-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  font-size: 1.125rem;
}

.powered-by {
  text-align: center;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.powered-by img {
  height: 16px;
  width: auto;
}

/* Shipping Proof Section */
.shipping-proof {
  padding: 80px 0;
  background: var(--light-green);
  text-align: center;
}

.shipping-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  margin: 48px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta p {
  color: rgba(255,255,255,0.95);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  margin-bottom: 32px;
}

/* WhatsApp Button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  margin: 40px auto;      /* kasih jarak biar gak nempel */
  position: static;       /* ikut flow normal halaman */
}


.btn-wa:hover {
  transform: scale(1.05);
  background: #128C7E;
}
.btn-wawa:hover {
  transform: scale(1.05);
  background: #128C7E;
}

.wa-icon {
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.footer-copy p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin: 0;
}

/* Product Detail Modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: var(--white);
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin: 16px auto;
  display: block;
}

.modal-rating {
  text-align: center;
  margin-bottom: 16px;
}

.modal-rating .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-right: 8px;
}

.brewing-guide,
.product-benefits {
  margin: 20px 0;
}

.brewing-guide h4,
.product-benefits h4 {
  color: var(--primary-green);
  font-size: 1rem;
  margin-bottom: 8px;
}

.brewing-guide ul,
.product-benefits ul {
  padding-left: 20px;
}

.brewing-guide li,
.product-benefits li {
  font-size: 0.875rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.modal-price {
  text-align: center;
  margin: 20px 0;
}

.modal .price-original {
  font-size: 1rem;
  margin-right: 12px;
}

.modal .price-promo {
  font-size: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .product-card {
    font-size: 0.8rem;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-info h3 {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  .product-rating {
    margin-bottom: 8px;
  }
  
  .stars {
    font-size: 0.75rem;
  }
  
  .review-count {
    font-size: 0.7rem;
  }
  
  .feature {
    font-size: 0.65rem;
    padding: 1px 4px;
  }
  
  .product-price {
    margin-bottom: 12px;
  }
  
  .price-original {
    font-size: 0.75rem;
  }
  
  .price-promo {
    font-size: 0.9rem;
  }
  
  .product-actions {
    flex-direction: column;
    gap: 6px;
  }
  
  .btn-cart,
  .btn-detail {
    padding: 6px 8px;
    font-size: 0.7rem;
    min-height: 32px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .testimonial-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-avatar img {
    width: 40px;
    height: 40px;
  }
  
  .benefits-grid,
  .authority-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .shipping-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .stat-item {
    padding: 16px 8px;
  }
  
  .wa-order-form {
    padding: 16px;
    margin: 0 8px;
  }
  
  .checkbox-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  
  .checkbox-row label {
    font-size: 0.8rem;
  }
  
  .payment-row {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    margin: 20px 8px;
    padding: 16px;
  }
  
  .order-notifications {
    left: 8px;
    right: 8px;
  }
  
  .fake-order {
    font-size: 0.7rem;
    padding: 6px 8px;
  }
  
  .fake-order img {
    width: 28px;
    height: 28px;
  }
  
  .hero {
    min-height: 50vh;
  }
  
  .hero-content {
    padding: 24px 0;
  }
  
  .storytelling,
  .sensory,
  .products,
  .why-choose,
  .testimonials,
  .authority,
  .order-form-section,
  .shipping-proof,
  .final-cta {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .product-grid {
    gap: 8px;
  }
  
  .product-info h3 {
    font-size: 0.75rem;
  }
  
  .btn-cart,
  .btn-detail {
    font-size: 0.65rem;
    padding: 4px 6px;
  }
  
  .checkbox-row label {
    font-size: 0.75rem;
  }
  
  .form-inputs input {
    font-size: 0.8rem;
    padding: 8px 10px;
  }
  
  .footer-links {
    gap: 8px;
    font-size: 0.8rem;
  }
}

/* Print Styles */
@media print {
  .countdown-banner,
  .order-notifications,
  .btn-wa,
  .btn-wawa,
  .video-container {
    display: none;
  }
}
