/* Background gelap di belakang popup */
#popupOverlay {
    display: flex; /* Langsung ditampilkan saat web dibuka */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Kotak popup */
.popup-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 400px;
    width: 80%;
    position: relative;
    text-align: center;
    font-family: Inter, sans-serif;
}

/* Tombol X (Close) di pojok kanan atas */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.close-btn:hover {
    color: red;
}

/* Tombol tambahan (Action Button) */
.action-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #699976;
    color: rgb(34, 7, 7);
    border: 1px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.action-btn:hover {
    background-color: #06954b;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --cream: #f7f3eb;
  --cream-dark: #ede7d9;
  --forest: #2b3a2b;
  --forest-light: #3d5a3d;
  --moss: #5a7247;
  --sage: #8a9f7c;
  --gold: #b8945f;
  --gold-light: #d4b483;
  --terracotta: #c47a5a;
  --charcoal: #2a2a25;
  --warm-gray: #6d6a62;
  --light-gray: #a8a49b;
  --white: #ffffff;
  --shadow-soft: 0 2px 20px rgba(43, 58, 43, 0.07);
  --shadow-hover: 0 8px 30px rgba(43, 58, 43, 0.12);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input { font-family: inherit; border: none; outline: none; cursor: pointer; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(247, 243, 235, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.3px;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo { color: var(--forest); }

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(247, 243, 235, 0.8);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--warm-gray); }
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ===== HERO ===== */
.hero {
  /* Layout & Ukuran Full Screen */
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  /* Gambar & Efek Gelap (Overlay) */
  background-color: rgba(0, 0, 0, 0.4); /* <-- UBAH ANGKA 0.6 BUAT ATUR KEGELAPAN (0.1 - 1.0) */
  background-image: url('img/teteh.png');
  background-blend-mode: darken; /* Menggabungkan warna hitam + gambar */

  /* Pengaturan Gambar Background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Efek parallax/statis pas discroll */
}

/* Biar semua teks di dalam .hero otomatis berwarna putih & di atas background */
.hero * {
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 0;
  padding-left: max(28px, calc((100vw - 1140px) / 2 + 28px));
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(247, 243, 235, 0.55);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  align-self: flex-start;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hero-cta span {
  transition: transform 0.3s ease;
}
.hero-cta:hover span {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  background: linear-gradient(135deg, #3d5a3d 0%, #2b3a2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(184, 148, 95, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(90, 114, 71, 0.2) 0%, transparent 50%);
}

.hero-illustration {
  position: relative;
  width: 320px;
  height: 320px;
}

.hero-cup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cup-body {
  width: 180px;
  height: 140px;
  background: rgba(247, 243, 235, 0.08);
  border: 1px solid rgba(247, 243, 235, 0.12);
  border-radius: 4px 4px 50% 50%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  overflow: hidden;
}

.hero-cup-tea {
  width: 80%;
  height: 60%;
  background: linear-gradient(180deg, rgba(90, 114, 71, 0.4), rgba(90, 114, 71, 0.15));
  border-radius: 0 0 80% 80%;
  position: absolute;
  bottom: 10px;
  animation: teaWave 4s ease-in-out infinite;
}

@keyframes teaWave {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}

.hero-cup-steam {
  position: absolute;
  top: -40px;
  display: flex;
  gap: 10px;
}

.steam-line {
  width: 2px;
  height: 30px;
  background: rgba(247, 243, 235, 0.12);
  border-radius: 2px;
  animation: steam 3s ease-in-out infinite;
}

.steam-line:nth-child(2) { animation-delay: 0.5s; height: 24px; }
.steam-line:nth-child(3) { animation-delay: 1s; height: 20px; }

@keyframes steam {
  0% { opacity: 0; transform: translateY(0) scaleY(0.5); }
  50% { opacity: 0.6; transform: translateY(-10px) scaleY(1); }
  100% { opacity: 0; transform: translateY(-25px) scaleY(0.5); }
}

.hero-leaf-deco {
  position: absolute;
  width: 60px;
  height: 30px;
  border: 1.5px solid rgba(138, 159, 124, 0.25);
  border-radius: 0 70% 0 70%;
}

.hero-leaf-deco:nth-child(1) { top: 20%; left: 10%; transform: rotate(-30deg); }
.hero-leaf-deco:nth-child(2) { bottom: 25%; right: 15%; transform: rotate(150deg); width: 45px; height: 22px; }
.hero-leaf-deco:nth-child(3) { top: 35%; right: 10%; transform: rotate(60deg); width: 35px; height: 18px; }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--forest);
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(247, 243, 235, 0.06);
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(247, 243, 235, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-item .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 40px;
  vertical-align: middle;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 100px 0 120px;
}

.products-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.products-header-text .section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 12px;
}

.products-header-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest);
  letter-spacing: -0.5px;
}

.products-header-text h2 em {
  font-style: italic;
  color: var(--gold);
}

/* Filter + Search */
.products-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 220px;
  padding: 10px 14px 10px 38px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  font-size: 0.84rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--moss);
}

.search-box input::placeholder { color: var(--light-gray); }

.search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--light-gray);
}

.filter-pills {
  display: flex;
  gap: 6px;
}

.filter-pill {
  padding: 9px 18px;
  background: transparent;
  color: var(--warm-gray);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.filter-pill:hover {
  border-color: var(--moss);
  color: var(--forest);
}

.filter-pill.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* Products Grid — editorial asymmetric layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

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

/* Make 1st and 6th card span 2 columns for editorial feel */
.product-card:nth-child(1),
.product-card:nth-child(6) {
  grid-column: span 2;
}

.product-card:nth-child(1) .product-image,
.product-card:nth-child(6) .product-image {
  height: 280px;
}

.product-card.hidden {
  display: none;
}

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

.product-image-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

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

.product-image-icon {
  position: relative;
  z-index: 2;
}

.product-image-icon svg {
  width: 64px;
  height: 64px;
  opacity: 0.7;
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest);
  border-radius: 2px;
}

.product-body {
  padding: 22px 24px 26px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.product-price small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--light-gray);
}

.product-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  color: var(--warm-gray);
  transition: var(--transition);
  font-size: 0.85rem;
}

.product-card:hover .product-arrow {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  display: none;
}
.no-results.show { display: block; }
.no-results h3 { font-size: 1.1rem; color: var(--warm-gray); margin-bottom: 6px; }
.no-results p { font-size: 0.88rem; color: var(--light-gray); }

/* ===== PHILOSOPHY / ABOUT ===== */
.about-section {
  padding: 100px 0 110px;
  background: var(--cream-dark);
  position: relative;
}

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

.about-text .section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--forest);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-text p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.about-value {
  padding: 18px 20px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.about-value:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.about-value h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.about-value p {
  font-size: 0.76rem;
  color: var(--light-gray);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Stats */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.stat-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(43, 58, 43, 0.08);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  min-width: 120px;
}

.stat-detail h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.stat-detail p {
  font-size: 0.78rem;
  color: var(--light-gray);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-header {
  margin-bottom: 50px;
}

.testimonials-header .section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 12px;
}

.testimonials-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest);
  letter-spacing: -0.5px;
}

.testimonials-track-wrap {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  animation: scrollCards 35s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollCards {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 380px;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 4px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream-dark);
  margin-bottom: 12px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-info p {
  font-size: 0.75rem;
  color: var(--light-gray);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 42, 37, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: 6px;
  max-width: 660px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-hero {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.modal-hero-icon {
  position: relative;
  z-index: 2;
}

.modal-hero-icon svg {
  width: 80px;
  height: 80px;
  opacity: 0.6;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--charcoal);
  transition: var(--transition);
  z-index: 3;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-content {
  padding: 30px 36px 36px;
}

.modal-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 10px;
}

.modal-title {
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.modal-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.modal-info-block {
  padding: 20px;
  background: var(--cream);
  border-radius: 4px;
}

.modal-info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.modal-info-block ul {
  padding-left: 14px;
  list-style: disc;
}

.modal-info-block li {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

.modal-serving-block {
  padding: 20px;
  background: var(--cream);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

.modal-serving-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.modal-serving-block p {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--forest);
  color: rgba(247, 243, 235, 0.7);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247, 243, 235, 0.08);
}

.footer-brand h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(247, 243, 235, 0.4);
}

.footer-column h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.5);
  margin-bottom: 18px;
}

.footer-column ul { display: flex; flex-direction: column; gap: 10px; }

.footer-column a {
  font-size: 0.84rem;
  color: rgba(247, 243, 235, 0.5);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-newsletter p {
  font-size: 0.82rem;
  color: rgba(247, 243, 235, 0.4);
  margin-bottom: 14px;
  line-height: 1.6;
}

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

.newsletter-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(247, 243, 235, 0.06);
  border: 1px solid rgba(247, 243, 235, 0.1);
  border-radius: 3px;
  color: var(--cream);
  font-size: 0.84rem;
  transition: var(--transition);
}

.newsletter-input::placeholder { color: rgba(247, 243, 235, 0.25); }
.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
  padding: 11px 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--gold-light);
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(247, 243, 235, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 140px 28px 60px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(1),
  .product-card:nth-child(6) { grid-column: span 1; }
  .product-card:nth-child(1) .product-image,
  .product-card:nth-child(6) .product-image { height: 240px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(247, 243, 235, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 28px;
    gap: 14px;
  }
  .nav-links.active { display: flex; }
  .nav-links a { color: var(--charcoal) !important; font-size: 0.9rem; }
  .nav-toggle { display: flex; }

  .products-header { grid-template-columns: 1fr; gap: 20px; }
  .products-controls { width: 100%; }
  .search-box input { width: 100%; }
  .search-box { flex: 1; }

  .products-grid { grid-template-columns: 1fr; }

  .about-values { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .testimonial-card { flex: 0 0 300px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .newsletter-form { flex-direction: column; }
  .filter-pills { flex-wrap: wrap; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }
