/* ==========================================================================
   SPICES HOUSE INDONESIA — Modern Design System (Farmora Premium Style)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  /* Color Palette - Farmora Inspired */
  --bg-dark: #0B1B0E;
  --bg-dark-rgb: 11, 27, 14;
  --accent-lime: #C2FD14;
  --accent-lime-hover: #A9DF0D;
  --bg-cream: #FAF6EE;
  --bg-white: #FFFFFF;
  --text-dark: #121A13;
  --text-muted: #4D5D4E;
  --border-light: #E5EBE5;
  --gold-500: #B8942E; /* Keep for subtle accents if needed */

  /* Neutral Grays */
  --gray-800: #1B241C;
  --gray-700: #2C382E;
  --gray-500: #526053;
  --gray-300: #BAC5BB;
  --gray-100: #EAEFEA;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --max-w: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Design Elements */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 12px rgba(8, 20, 9, 0.03);
  --shadow-md: 0 8px 30px rgba(8, 20, 9, 0.05);
  --shadow-lg: 0 16px 48px rgba(8, 20, 9, 0.08);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: var(--space-xl) 0;
}

.section--white {
  background: var(--bg-white);
}

.section--cream {
  background: var(--bg-cream);
}

.section--dark {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.9);
}

.section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--bg-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.6);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  color: var(--text-dark);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-lime);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(194, 253, 20, 0.15);
}

.btn-primary:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 253, 20, 0.25);
}

.btn-primary .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--bg-dark);
  color: var(--accent-lime);
  border-radius: 50%;
  transition: var(--transition);
}

.btn-primary:hover .icon-circle {
  transform: rotate(45deg);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--gray-300);
}

.btn-outline-dark:hover {
  background: var(--gray-100);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

/* --- SVG Icons --- */
.svg-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.8rem 0;
}

.header.scrolled::before {
  opacity: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-lime);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
}

.header-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1;
}

.header-logo-text small {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-lime);
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-nav a {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--bg-white);
  background: rgba(255, 255, 255, 0.05);
}

.header-nav .btn-lime-nav {
  background: var(--accent-lime);
  color: var(--bg-dark) !important;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  margin-left: 0.5rem;
  box-shadow: 0 4px 15px rgba(194, 253, 20, 0.2);
}

.header-nav .btn-lime-nav:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-1px);
}

.header-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.header-toggle span {
  width: 24px;
  height: 2px;
  background: var(--bg-white);
  border-radius: 2px;
  transition: var(--transition);
}

.header-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
  background: var(--bg-dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(8, 20, 9, 0.86) 10%, rgba(8, 20, 9, 0.74) 46%, rgba(8, 20, 9, 0.48) 72%, rgba(8, 20, 9, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 20, 9, 0.18) 0%, rgba(8, 20, 9, 0.62) 100%);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3.5rem;
  align-items: end;
}

.hero-left {
  position: relative;
  z-index: 3;
}

.hero-left .section-label {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--accent-lime);
}

.hero-left h1 {
  color: var(--bg-white);
  margin-bottom: 1.3rem;
  line-height: 1.1;
  max-width: 760px;
}

.hero-left h1 .accent {
  color: var(--accent-lime);
  font-weight: 800;
}

.hero-left p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin-bottom: 2rem;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.hero-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 780px;
}

.hero-insight {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-insight strong {
  display: block;
  color: var(--accent-lime);
  font-size: 1.15rem;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hero-insight span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-right {
  display: grid;
  gap: 1.5rem;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  color: var(--bg-white);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.hero-glass-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-lime);
  margin-bottom: 0.8rem;
}

.hero-glass-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

.hero-glass-card ul {
  margin-bottom: 1.2rem;
}

.hero-glass-card li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.hero-glass-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.44rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-lime);
}

.hero-glass-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bg-white);
  transition: var(--transition);
}

.hero-glass-card .card-link:hover {
  color: var(--accent-lime);
}

.hero-glass-card .card-link span {
  transition: transform 0.3s ease;
}

.hero-glass-card .card-link:hover span {
  transform: translateX(4px);
}

.hero-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-kpi-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 0.9rem 0.8rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-kpi-card .value {
  display: block;
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.28rem;
}

.hero-kpi-card .label {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  line-height: 1.35;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
  }
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--bg-dark);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.trust-item svg {
  color: var(--accent-lime);
}

/* --- About Modern Grid --- */
.about-grid-modern {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-left .section-label {
  background: var(--gray-100);
}

.about-left h2 {
  margin-bottom: 1.5rem;
}

.about-left p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Dynamic Tab Switcher */
.tab-container {
  margin-top: 2rem;
}

.tab-nav {
  display: inline-flex;
  background: var(--gray-100);
  padding: 0.35rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--accent-lime);
  color: var(--bg-dark);
  box-shadow: var(--shadow-sm);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Modern Grid Gallery (Screenshot Style) */
.about-cards-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow-md);
}

.about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-card-info {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 240px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-card-info.accent {
  background: var(--accent-lime);
  border-color: transparent;
}

.about-card-info .number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bg-dark);
}

.about-card-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.25rem;
}

.about-card-info p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.about-card-info.accent p {
  color: rgba(8, 20, 9, 0.7);
}

.about-card-info .arrow-link {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.about-card-info.accent .arrow-link {
  background: var(--bg-dark);
  color: var(--accent-lime);
}

.about-card-info:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-card-info:hover .arrow-link {
  transform: rotate(45deg);
}

/* --- Products Hub --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 4rem;
}

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

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.1;
  background: var(--bg-cream);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: var(--bg-dark);
  color: var(--accent-lime);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-card-body .botanical {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 1rem;
}

.product-card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.product-card-origin {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-card-origin svg {
  color: var(--gold-500);
}

.product-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition);
}

.product-card-link span {
  transition: transform 0.3s ease;
}

.product-card-link:hover span {
  transform: translateX(4px);
}

.revita-contact-section {
  padding-top: 3rem;
}

.revita-contact-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  align-items: center;
}

.revita-contact-photo {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #dcebcf;
}

.revita-contact-body h3 {
  margin: 0.4rem 0;
}

.revita-contact-body p {
  margin: 0;
}

.revita-contact-body .cta-actions {
  margin-top: 1rem;
}

/* --- Export Certification / Trust Logos --- */
.certs-strip {
  padding: 3rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.certs-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.cert-logo-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: var(--transition);
}

.cert-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.cert-logo-item svg {
  width: 36px;
  height: 36px;
  color: var(--bg-dark);
}

.cert-logo-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  line-height: 1.2;
}

.cert-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- Stats Counter Bar --- */
.stats-bar {
  background: var(--bg-dark);
  padding: var(--space-lg) 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-lime);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 600;
}

/* --- Features / Why Choose Us --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--accent-lime);
  color: var(--bg-dark);
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.92rem;
}

/* --- Testimonials Section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

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

.testimonial-stars {
  color: var(--gold-500);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 2rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Shipping Info Section --- */
.shipping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.shipping-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.shipping-card .label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
}

.shipping-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.shipping-card p {
  margin-bottom: 2rem;
}

.shipping-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}

.shipping-specs dt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.shipping-specs dd {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2px;
}

.shipment-cert {
  margin-top: 3rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.shipping-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin-top: 1.5rem;
}

.shipping-includes span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.shipping-includes svg {
  color: var(--accent-lime);
}

/* --- Export Destinations --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.destinations-group {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.destinations-group h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.destinations-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.destinations-group li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.destinations-group li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gray-300);
  border-radius: 50%;
  transition: var(--transition);
}

.destinations-group li:hover {
  color: var(--text-dark);
  padding-left: 4px;
}

.destinations-group li:hover::before {
  background: var(--accent-lime);
}

/* --- FAQ Accordion --- */
.faq-list {
  margin-top: 4rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.faq-q:hover {
  color: var(--accent-lime-hover);
}

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

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- Call To Action (CTA Block) --- */
.cta-block {
  background: var(--bg-dark);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 253, 20, 0.05), transparent 70%);
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}

.cta-block h2 {
  color: var(--bg-white);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  max-width: 700px;
  margin: 0 auto 1rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* --- Contact Form Section --- */
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--text-dark);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(8, 20, 9, 0.05);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  display: none;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-feedback.success {
  display: block;
  background: #e6f7e8;
  color: #1d5a2a;
  border: 1px solid #b6e3bc;
}

.form-feedback.error {
  display: block;
  background: #fdeceb;
  color: #8b1e1e;
  border: 1px solid #f2c2be;
}

.btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

/* --- Free Sample Block --- */
.sample-block {
  padding: var(--space-xl) 0;
  text-align: center;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sample-block h2 {
  color: var(--bg-white);
}

.sample-block p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0.5rem auto 2.5rem;
  font-size: 1.05rem;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-lg) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: var(--bg-white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-lime);
  border-color: var(--accent-lime);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.footer h4 {
  color: var(--bg-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-contact svg {
  color: var(--accent-lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  margin-left: 1rem;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent-lime);
}

/* --- WA Floating Button --- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.08) rotate(10deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* --- Back to Top --- */
.back-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 98;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-dark);
  color: var(--bg-white);
}

/* --- Scroll triggered fade-up animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   PRODUCT DETAILS PAGE STYLING
   ========================================================================== */
.product-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(8, 20, 9, 0.75) 0%, rgba(8, 20, 9, 0.95) 100%),
              url('https://images.unsplash.com/photo-1599839617637-293674681604?auto=format&fit=crop&w=1600&q=80') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.product-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 1.2;
}

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

.product-hero-info .origin-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-lime);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.product-hero-info h1 {
  color: var(--bg-white);
  margin-bottom: 0.25rem;
}

.product-hero-info .botanical {
  font-size: 1.1rem;
  color: var(--accent-lime);
  font-style: italic;
  display: block;
  margin-bottom: 1.5rem;
}

.product-hero-info p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.offer-points span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}

.product-forms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.product-forms-list span {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  background: var(--gray-100);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ginger-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.ginger-showcase-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.ginger-showcase-card img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}

.ginger-showcase-image {
  object-fit: contain;
  background: linear-gradient(180deg, #f6f2ea 0%, #fefcf8 100%);
  padding: 0.5rem;
}

.ginger-showcase-card figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ginger-type-image {
  aspect-ratio: 1.25;
  object-fit: contain;
  background: linear-gradient(180deg, #f6f2ea 0%, #fefcf8 100%);
  padding: 0.5rem;
}

.clove-process-content .card-link {
  color: var(--text-dark);
  font-size: 0.86rem;
  font-weight: 700;
  transition: var(--transition);
}

.clove-process-content .card-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.clove-process-content .card-link:hover {
  color: var(--accent-lime-hover);
}

.clove-process-content .card-link:hover span {
  transform: translateX(4px);
}

.ginger-type-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ginger-type-detail {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.ginger-type-detail h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.ginger-type-detail p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.ginger-type-meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  display: inline-block;
}

.type-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.type-actions .btn {
  padding: 0.58rem 1rem;
  font-size: 0.78rem;
}

.clove-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.clove-process-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.clove-process-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.clove-process-content {
  padding: 1rem 1rem 1.2rem;
}

.clove-process-content h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.clove-process-content p {
  font-size: 0.9rem;
  margin: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}

.spec-table th {
  background: var(--bg-dark);
  color: var(--bg-white);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.spec-table td {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:nth-child(even) td {
  background: var(--bg-cream);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 7.5rem 0 4.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-right {
    justify-self: stretch;
    max-width: 100%;
  }
  .hero-glass-card {
    max-width: 100%;
  }
  .hero-insights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-grid-modern {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .clove-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ginger-showcase-grid {
    grid-template-columns: 1fr;
  }
  .ginger-type-detail-grid {
    grid-template-columns: 1fr;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-lg) 0;
  }
  .header {
    padding: 1rem 0;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 7rem 2.5rem 3rem;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header-nav.active {
    right: 0;
  }
  .header-nav a {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .header-nav .btn-lime-nav {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .header-toggle {
    display: flex;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }
  .offer-points {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-insights {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .hero-kpi-grid {
    grid-template-columns: 1fr;
  }
  .about-cards-layout {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .shipping-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 2rem;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .clove-process-grid {
    grid-template-columns: 1fr;
  }
  .revita-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-bottom a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
