/*
  Grizelline Roots - Global Stylesheet
  Cleaned version from style.css.
  Notes:
  - Class names are preserved.
  - Theme variables are consolidated.
  - Mobile navbar overrides are kept at the bottom intentionally for cascade priority.
*/
/* ==========================================================================
   1. DESIGN TOKENS / THEME VARIABLES
   ========================================================================== */
:root {
  --primary: #556b2f;
  --primary-dark: #3e4f22;
  --primary-soft: rgba(85, 107, 47, 0.1);
  --secondary: #d2b48c;
  --bg: #fdfbf7;
  --bg-main: #fdfbf7;
  --bg-light: #fdfbf7;
  --bg-card: #ffffff;
  --card-bg: #ffffff;
  --nav-bg: rgba(253, 251, 247, 0.95);
  --text-dark: #2c3e2d;
  --text-muted: #6b705c;
  --border-soft: rgba(85, 107, 47, 0.14);
  --danger: #a13b25;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
}

body.dark-mode {
  --primary: #8fae54;
  --primary-dark: #a8c866;
  --primary-soft: rgba(143, 174, 84, 0.14);
  --secondary: #d2b48c;
  --bg: #121212;
  --bg-main: #121212;
  --bg-light: #121212;
  --bg-card: #0f0c0c;
  --card-bg: #0f0c0c;
  --nav-bg: rgba(18, 18, 18, 0.95);
  --text-dark: #fdfbf7;
  --text-muted: #a4a993;
  --border-soft: rgba(255, 255, 255, 0.12);
  --danger: #ffb3a6;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  /* Jurus Anti Geser Kiri-Kanan */
  position: relative;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  transition:
    background-color 0.4s,
    color 0.4s;
}

/* Perilaku default tombol dan link agar nurut ke warna tema */
button,
input,
textarea,
select,
a {
  font-family: inherit;
  color: inherit;
}

/* ==========================================================================
   3. GLOBAL UI COMPONENTS (Buttons, Pop-up, Tabs)
   ========================================================================== */
.btn {
  padding: 12px 30px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  border: none;
  display: inline-block;
}

.btn:hover {
  background-color: #3e4f22;
}

.btn-theme {
  background: none;
  border: 1px solid var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn-theme:hover {
  background: var(--text-dark);
  color: var(--bg-light);
}

.btn-footer {
  padding: 12px 30px;
  background-color: var(--secondary);
  color: var(--bg-light);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
}

/* --- UI Tabs --- */
.tab-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-link {
  background-color: var(--card-bg);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.dark-mode .tab-link {
  border-color: rgba(255, 255, 255, 0.1);
}

.tab-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-link.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Toast Pop-up --- */
.toast-popup {
  visibility: hidden;
  min-width: 250px;
  background-color: var(--card-bg);
  color: var(--text-dark);
  text-align: left;
  border-radius: 12px;
  padding: 16px 20px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #d9a05b;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    bottom 0.4s ease;
}

.toast-popup.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.toast-icon {
  font-size: 1.5rem;
}

.toast-text {
  line-height: 1.4;
}

.dark-mode .toast-popup {
  border-color: #f1c40f;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   4. HEADER & NAVBAR (Inc. Mega Menu & Hamburger)
   ========================================================================== */
nav {
  position: sticky;
  top: 0;
  background-color: var(--nav-bg);
  backdrop-filter: blur(10px);
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  transition: background-color 0.4s;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

/* =========================
   DARK MODE - FORM SELECT FIX
========================= */
body.dark-mode select {
  background-color: var(--bg-card);
  color: var(--text-dark);
  border-color: var(--border-soft);
}

body.dark-mode select option {
  background-color: #1f2418;
  color: #f7ead3;
}

body.dark-mode select option:checked,
body.dark-mode select option:hover {
  background-color: var(--primary);
  color: #1d2116;
}

/* =========================
   NAVBAR ACTIVE STATE
========================= */
.nav-links a.active,
#koleksi-btn.active {
  color: var(--primary);
  font-weight: 900;
  position: relative;
}

.nav-links a.active::after,
#koleksi-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.dropdown-content a.active-sub {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
}

.nav-cart-btn.active-cart {
  background: var(--primary-dark);
  color: var(--text-dark) !important;
  box-shadow: 0 12px 28px rgba(86, 105, 47, 0.24);
}

.nav-arrow {
  font-size: 1.2rem;
  margin-left: 8px;
}

.back-arrow {
  font-size: 1.2rem;
  margin-right: 10px;
}

.nav-empty-category {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.toast-text span {
  font-size: 0.85rem;
}

/* Dark mode active state */
body.dark-mode .nav-links a.active,
body.dark-mode #koleksi-btn.active {
  color: var(--primary);
}

body.dark-mode .nav-links a.active::after,
body.dark-mode #koleksi-btn.active::after {
  background: var(--primary);
}

body.dark-mode .dropdown-content a.active-sub {
  background: var(--primary-soft);
  color: var(--primary);
}

body.dark-mode .nav-cart-btn.active-cart {
  background: var(--primary);
  color: #1d2116 !important;
}

/* --- Mega Menu --- */
.dropdown {
  position: static;
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: var(--bg-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px 10%;
  z-index: 999;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mega-header {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-column a {
  color: var(--text-muted);
  display: block;
  font-size: 0.9rem;
  line-height: 2.2;
  text-align: left;
}

.mega-column a:hover {
  color: var(--primary);
  font-weight: 500;
  transform: translateX(5px);
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   NAV CART BUTTON
========================= */
.nav-cart-btn {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--primary);
  transition: 0.25s ease;
}

/* Keranjang kosong */
.nav-cart-btn.is-empty {
  background: transparent;
  color: var(--text-dark) !important;
}

/* Keranjang ada isi */
.nav-cart-btn.has-items {
  background: var(--primary);
  color: #fff !important;
}

/* Hover global */
.nav-cart-btn:hover {
  transform: translateY(-2px);
}

/* Hover kosong */
.nav-cart-btn.is-empty:hover {
  background: var(--primary-soft);
  color: var(--primary) !important;
}

/* Hover ada isi */
.nav-cart-btn.has-items:hover {
  background: var(--primary-dark);
  color: #fff !important;
}

/* Halaman cart sedang aktif */
.nav-cart-btn.active-cart {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
}

/* Icon + text */
.nav-cart-icon {
  font-size: 15px;
}

.nav-cart-text {
  font-size: 14px;
}

/* Badge jumlah cart */
.nav-cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #a13b25;
  color: #fff;
  border: 2px solid var(--bg-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 768px) {
  .nav-cart-btn {
    width: fit-content;
    min-width: 46px;
  }
}

/* =========================
   DARK MODE - CART PAGE
========================= */
body.dark-mode .cart-page {
  background:
    radial-gradient(circle at top left, var(--primary-soft), transparent 34%),
    linear-gradient(180deg, var(--bg-main) 0%, #232617 100%);
  color: var(--text-dark);
}

/* HERO */
body.dark-mode .cart-hero span {
  color: var(--primary);
}

body.dark-mode .cart-hero h1 {
  color: var(--text-dark);
}

body.dark-mode .cart-hero p {
  color: var(--text-muted);
}

/* ALERT */
body.dark-mode .cart-alert.success {
  background: rgba(82, 112, 51, 0.22);
  color: #dff0ce;
  border-color: rgba(164, 199, 122, 0.25);
}

body.dark-mode .cart-alert.error {
  background: rgba(120, 46, 34, 0.25);
  color: #ffd6cc;
  border-color: rgba(239, 181, 169, 0.25);
}

/* EMPTY CART */
body.dark-mode .cart-empty-card,
body.dark-mode .cart-items-card,
body.dark-mode .cart-summary-card {
  background: var(--bg-card);
  border-color: var(--border-soft);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

body.dark-mode .cart-empty-card h2,
body.dark-mode .cart-summary-card h2 {
  color: var(--text-dark);
}

body.dark-mode .cart-empty-card p,
body.dark-mode .cart-summary-card p {
  color: var(--text-muted);
}

body.dark-mode .cart-empty-card a {
  background: var(--primary);
  color: #1d2116;
}

body.dark-mode .cart-empty-card a:hover {
  background: var(--primary-dark);
}

/* CART ITEM */
body.dark-mode .cart-item {
  border-bottom-color: var(--border-soft);
}

body.dark-mode .cart-item img {
  background: rgba(255, 250, 243, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

body.dark-mode .cart-item-info h3 a {
  color: var(--text-dark);
}

body.dark-mode .cart-item-info h3 a:hover {
  color: var(--primary);
}

body.dark-mode .cart-item-info p {
  color: var(--text-muted);
}

body.dark-mode .cart-item-info strong {
  color: var(--text-dark);
}

/* QTY */
body.dark-mode .cart-qty-row label {
  color: var(--text-muted);
}

body.dark-mode .cart-qty-row input {
  background: rgba(255, 250, 243, 0.06);
  border-color: var(--border-soft);
  color: var(--text-dark);
}

body.dark-mode .cart-qty-row input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

/* REMOVE */
body.dark-mode .cart-remove-link,
body.dark-mode .cart-clear-link {
  color: #ffb3a6;
}

body.dark-mode .cart-remove-link:hover,
body.dark-mode .cart-clear-link:hover {
  color: #ffd6cc;
}

/* UPDATE BUTTON */
body.dark-mode .cart-update-btn,
body.dark-mode .cart-checkout-btn {
  background: var(--primary);
  color: #1d2116;
}

body.dark-mode .cart-update-btn:hover,
body.dark-mode .cart-checkout-btn:hover {
  background: var(--primary-dark);
}

/* SUMMARY */
body.dark-mode .cart-summary-row {
  border-top-color: var(--border-soft);
  border-bottom-color: var(--border-soft);
}

body.dark-mode .cart-summary-row span {
  color: var(--text-muted);
}

body.dark-mode .cart-summary-row strong {
  color: var(--text-dark);
}

body.dark-mode .cart-secondary-btn {
  background: rgba(255, 250, 243, 0.08);
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
}

body.dark-mode .cart-secondary-btn:hover {
  background: var(--primary-soft);
  color: var(--text-dark);
}

/* ==========================================================================
   5. LAYOUT SECTIONS (Hero, Grid, Filosofi, Slider, Footer)
   ========================================================================== */
section {
  padding: 5rem 5%;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* --- Hero --- */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(253, 251, 247, 0.45), rgba(253, 251, 247, 0.45)),
    url("../img/hero.png") center/cover no-repeat;
  padding: 0 1rem;
  transition: background 0.4s;
}

.dark-mode .hero {
  /* 1. Ganti overlay jadi warna gelap (rgba 18,18,18) biar teks putih lu tetep kebaca */
  /* 2. Ganti nama file gambarnya ke versi gelap lu (misal: test_hero_dark.png) */
  background:
    linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)),
    url("../img/hero_night.png") center/cover;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* --- Product Cards & Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    background-color 0.4s;
  text-align: center;
  padding-bottom: 1.5rem;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
}

/* --- Slider Produk --- */
.product-slider {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
}

.product-slider .product-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.product-slider::-webkit-scrollbar {
  height: 8px;
}

.product-slider::-webkit-scrollbar-track {
  background: var(--nav-bg);
  border-radius: 10px;
}

.product-slider::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}

/* --- Section Filosofi --- */
.filosofi-section {
  padding: 80px 20px;
  background-color: rgba(85, 107, 47, 0.03);
  margin-top: 50px;
}

.dark-mode .filosofi-section {
  background-color: rgba(255, 255, 255, 0.02);
}

.filosofi-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  background-color: rgba(85, 107, 47, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.filosofi-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.filosofi-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--card-bg);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-mode .value-card {
  border-color: rgba(255, 255, 255, 0.05);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Tutorial Popup --- */
.tutorial-popup {
  display: none;
  /* Disembunyikan dulu pakai JS */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: var(--card-bg, #fff);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-content h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.popup-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.btn-primary {
  background: var(--primary, #556b2f);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
}

.btn-secondary {
  background: #ccc;
  color: #333;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* --- Footer --- */
footer {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 3rem 5%;
  transition: background-color 0.4s;
}

/* =========================
   MANUAL PAYMENT INSTRUCTION
========================= */
.payment-instruction-card {
  padding: 26px;
  border-radius: 26px;
  background: var(--card-bg);
  border: 1px solid rgba(127, 127, 127, 0.16);
  margin-bottom: 24px;
}

.payment-instruction-header span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.payment-instruction-header h3 {
  color: var(--text-dark);
  margin: 10px 0 8px;
  font-size: 1.35rem;
}

.payment-instruction-header strong {
  display: block;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.payment-instruction-header p,
.payment-method-box p,
.payment-note {
  color: var(--text-muted);
  line-height: 1.7;
}

.payment-method-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(127, 127, 127, 0.08);
}

.payment-method-box h4 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.bank-account-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(127, 127, 127, 0.14);
}

.bank-account-row:last-child {
  border-bottom: none;
}

.bank-account-row strong {
  display: block;
  color: var(--text-dark);
}

.bank-account-row span {
  display: block;
  color: var(--text-muted);
  margin-top: 4px;
  font-size: 0.9rem;
}

.bank-account-row code {
  color: var(--primary);
  font-weight: 900;
  font-size: 1rem;
}

.qris-image {
  display: block;
  width: min(280px, 100%);
  margin: 18px auto 0;
  border-radius: 18px;
  background: #fff;
  padding: 12px;
}

.payment-proof-btn {
  display: inline-flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
}

.payment-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

@media (max-width: 560px) {
  .bank-account-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-proof-btn {
    width: 100%;
  }
}

.payment-proof-form {
  margin-top: 22px;
}

.payment-proof-form label {
  display: block;
  color: var(--text-dark);
  font-weight: 800;
  margin: 16px 0 8px;
}

.payment-proof-form select,
.payment-proof-form input,
.payment-proof-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(127, 127, 127, 0.25);
  background: transparent;
  color: var(--text-dark);
  padding: 14px 16px;
  font-family: inherit;
}

.payment-proof-form textarea {
  resize: vertical;
}

@media (max-width: 600px) {
  .h-action-box {
    grid-template-columns: 1fr;
  }

  .add-cart-form .h-buy-btn {
    width: 100%;
    min-height: 54px;
  }
}

/* ==========================================================================
   6. HERBANA STYLE CATEGORY LAYOUT
   ========================================================================== */
.herbana-filter-bar {
  display: flex;
  border-top: 1px solid var(--text-dark);
  border-bottom: 1px solid var(--text-dark);
  margin-bottom: 50px;
}

.h-action-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  align-items: stretch;
}

.h-qty-area,
.add-cart-form {
  min-height: 54px;
}

.add-cart-form .h-buy-btn {
  height: 100%;
}

.h-filter-item {
  flex: 1;
  padding: 15px 20px;
  border-right: 1px solid var(--text-dark);
  display: flex;
  flex-direction: column;
}

.h-filter-item label {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-family: serif;
}

.h-filter-item select {
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dark-mode .h-filter-item select option {
  background-color: var(--card-bg);
}

.herbana-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

.herbana-card {
  background: transparent;
  text-align: left;
}

/* === Fix Product Image Grid Category === */
.herbana-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.herbana-img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.herbana-card:hover .herbana-img-wrapper img {
  transform: scale(1.05);
}

.herbana-brand {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.herbana-brand i {
  font-family: Georgia, serif;
  text-transform: lowercase;
}

.herbana-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.herbana-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.herbana-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.herbana-add {
  font-size: 0.8rem;
  font-weight: 700;
  color: #76c7c0;
  text-decoration: none;
  border-bottom: 2px solid #76c7c0;
  padding-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.herbana-add:hover {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.herbana-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mobile-back-btn {
  display: none !important;
}

.dropdown {
  position: static;
}

/* =========================
   CONSULTATION PAGE
========================= */
.consultation-page {
  min-height: 100vh;
  padding: 120px 5% 80px;
  background: var(--bg);
}

.consultation-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 28px;
  background: var(--card-bg);
  border: 1px solid rgba(127, 127, 127, 0.16);
}

.consultation-intro {
  text-align: center;
  margin-bottom: 30px;
}

.consultation-intro span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.consultation-intro h1 {
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 12px 0 14px;
}

.consultation-intro p {
  color: var(--text-muted);
  line-height: 1.8;
}

.consultation-form label {
  display: block;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(127, 127, 127, 0.25);
  background: transparent;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-family: inherit;
}

.consultation-form textarea {
  resize: vertical;
}

.consult-submit {
  width: 100%;
  padding: 15px 18px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 1px;
}

.consult-alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.consult-alert.success {
  background: rgba(60, 150, 80, 0.12);
  color: #2f7a3d;
}

.consult-alert.error {
  background: rgba(200, 60, 60, 0.12);
  color: #b83232;
}

@media (max-width: 600px) {
  .consultation-card {
    padding: 24px;
    border-radius: 22px;
  }
}

/* =========================
   CART PAGE - GRIZELLINE ROOTS
========================= */
.cart-page {
  width: 100%;
  min-height: 80vh;
  padding: 120px 7% 80px;
  background: #f7f1e8;
  color: #2f241b;
}

/* HERO */
.cart-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}

.cart-hero span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a5a32;
  font-weight: 700;
}

.cart-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 18px;
  font-family: serif;
  color: #2f241b;
}

.cart-hero p {
  font-size: 16px;
  line-height: 1.7;
  color: #6f5b49;
}

/* ALERT */
.cart-alert {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.cart-alert.success {
  background: #e6f4df;
  color: #315b25;
  border: 1px solid #bddcac;
}

.cart-alert.error {
  background: #fde8e3;
  color: #8a2f1f;
  border: 1px solid #efb5a9;
}

/* EMPTY CART */
.cart-empty-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 45px 35px;
  text-align: center;
  background: #fffaf3;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(69, 43, 24, 0.12);
  border: 1px solid rgba(138, 90, 50, 0.14);
}

.cart-empty-card h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #2f241b;
}

.cart-empty-card p {
  color: #6f5b49;
  margin-bottom: 26px;
}

.cart-empty-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  background: #6f3f20;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.cart-empty-card a:hover {
  background: #4f2b15;
  transform: translateY(-2px);
}

/* LAYOUT */
.cart-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

/* LEFT CARD */
.cart-items-card {
  background: #fffaf3;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(69, 43, 24, 0.1);
  border: 1px solid rgba(138, 90, 50, 0.13);
}

/* CART ITEM */
.cart-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(138, 90, 50, 0.16);
}

.cart-item:first-of-type {
  padding-top: 0;
}

.cart-item img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 22px;
  background: #eadfce;
  box-shadow: 0 12px 30px rgba(69, 43, 24, 0.12);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item-info h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.cart-item-info h3 a {
  color: #2f241b;
  text-decoration: none;
  transition: 0.2s ease;
}

.cart-item-info h3 a:hover {
  color: #8a5a32;
}

.cart-item-info p {
  margin: 0;
  font-size: 14px;
  color: #6f5b49;
}

.cart-item-info strong {
  font-size: 15px;
  color: #3b2a1d;
}

/* QTY */
.cart-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
}

.cart-qty-row label {
  font-size: 14px;
  color: #6f5b49;
  font-weight: 700;
}

.cart-qty-row input {
  width: 82px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(111, 63, 32, 0.28);
  background: #fff;
  color: #2f241b;
  font-weight: 700;
  text-align: center;
  outline: none;
}

.cart-qty-row input:focus {
  border-color: #8a5a32;
  box-shadow: 0 0 0 4px rgba(138, 90, 50, 0.12);
}

/* REMOVE */
.cart-remove-link {
  width: fit-content;
  margin-top: 4px;
  color: #a13b25;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.cart-remove-link:hover {
  color: #6f1f12;
  text-decoration: underline;
}

/* UPDATE BUTTON */
.cart-update-btn {
  margin-top: 22px;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: #2f241b;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: 0.25s ease;
}

.cart-update-btn:hover {
  background: #6f3f20;
  transform: translateY(-2px);
}

/* SUMMARY */
.cart-summary-card {
  position: sticky;
  top: 110px;
  background: #fffaf3;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(69, 43, 24, 0.12);
  border: 1px solid rgba(138, 90, 50, 0.14);
}

.cart-summary-card h2 {
  margin: 0 0 22px;
  font-size: 30px;
  color: #2f241b;
  font-family: serif;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(138, 90, 50, 0.16);
  border-bottom: 1px solid rgba(138, 90, 50, 0.16);
}

.cart-summary-row span {
  color: #6f5b49;
  font-weight: 700;
}

.cart-summary-row strong {
  font-size: 20px;
  color: #2f241b;
}

.cart-summary-card p {
  margin: 18px 0 24px;
  color: #6f5b49;
  font-size: 14px;
  line-height: 1.7;
}

/* SUMMARY BUTTONS */
.cart-checkout-btn,
.cart-secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.25s ease;
}

.cart-checkout-btn {
  background: #6f3f20;
  color: #fff;
  margin-bottom: 12px;
}

.cart-checkout-btn:hover {
  background: #4f2b15;
  transform: translateY(-2px);
}

.cart-secondary-btn {
  background: #efe3d2;
  color: #3b2a1d;
  margin-bottom: 18px;
}

.cart-secondary-btn:hover {
  background: #e3d1b9;
  transform: translateY(-2px);
}

.cart-clear-link {
  display: block;
  text-align: center;
  color: #a13b25;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.cart-clear-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cart-page {
    padding: 105px 5% 60px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .cart-page {
    padding: 95px 16px 50px;
  }

  .cart-items-card,
  .cart-summary-card,
  .cart-empty-card {
    border-radius: 22px;
    padding: 20px;
  }

  .cart-item {
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 14px;
  }

  .cart-item img {
    width: 95px;
    height: 95px;
    border-radius: 18px;
  }

  .cart-item-info h3 {
    font-size: 17px;
  }

  .cart-qty-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .cart-qty-row input {
    width: 78px;
    height: 38px;
  }

  .cart-summary-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* =========================
   GUIDE / PANDUAN KONSUMSI
========================= */
.guide-page {
  min-height: 100vh;
  padding: 120px 5% 80px;
  background: var(--bg);
}

.guide-hero {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.guide-kicker,
.guide-section-header span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.guide-hero h1,
.guide-section-header h2,
.guide-cta h2 {
  color: var(--primary);
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 12px 0 16px;
}

.guide-hero p,
.guide-section-header p,
.guide-cta p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.guide-grid {
  max-width: 1180px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.guide-card {
  padding: 28px;
  border-radius: 26px;
  background: var(--card-bg);
  border: 1px solid rgba(127, 127, 127, 0.16);
  transition: 0.25s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.guide-icon {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.guide-card h2 {
  color: var(--text-dark);
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.guide-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.guide-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
}

.guide-warning {
  background: rgba(180, 140, 60, 0.08);
}

.guide-section {
  max-width: 1180px;
  margin: 0 auto 70px;
}

.guide-section-header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.guide-section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.guide-step {
  padding: 24px;
  border-radius: 22px;
  background: var(--card-bg);
  border: 1px solid rgba(127, 127, 127, 0.16);
}

.guide-step strong {
  display: block;
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.guide-step h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.guide-step p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.guide-cta {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 32px;
  text-align: center;
  background: var(--primary);
  color: #fff;
}

.guide-cta h2,
.guide-cta p {
  color: #fff;
}

.guide-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.guide-cta a {
  display: inline-flex;
  margin-top: 22px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .guide-page {
    padding: 100px 1rem 60px;
  }

  .guide-grid,
  .guide-steps {
    grid-template-columns: 1fr;
  }

  .guide-cta {
    padding: 30px 22px;
    border-radius: 24px;
  }
}

/* =========================
   ORDER CUSTOMER
========================= */
.order-page,
.order-success-page {
  min-height: 100vh;
  padding: 120px 5% 80px;
  background: var(--bg);
}

.order-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.order-product-card,
.order-form-card,
.order-success-card {
  background: var(--card-bg);
  border: 1px solid rgba(127, 127, 127, 0.16);
  border-radius: 28px;
  padding: 28px;
}

.order-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 20px;
}

.order-product-card span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.order-product-card h1,
.order-form-card h2,
.order-success-card h1 {
  color: var(--primary);
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 10px 0 12px;
}

.order-product-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.order-form-card h2,
.order-success-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.order-price {
  color: var(--text-dark);
  font-weight: 900;
  font-size: 1.2rem;
}

.order-product-card p,
.order-muted,
.order-success-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.order-form-card label {
  display: block;
  color: var(--text-dark);
  font-weight: 800;
  margin: 18px 0 8px;
}

.order-form-card input,
.order-form-card textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(127, 127, 127, 0.25);
  background: transparent;
  color: var(--text-dark);
  padding: 14px 16px;
  font-family: inherit;
}

.order-form-card textarea {
  resize: vertical;
}

.order-qty-box {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
}

.order-qty-box button {
  border: 1px solid rgba(127, 127, 127, 0.25);
  background: rgba(127, 127, 127, 0.08);
  color: var(--text-dark);
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}

.order-total {
  text-align: right;
  color: var(--primary);
  font-weight: 900;
  margin-top: 12px;
}

.order-submit,
.order-wa-btn,
.order-back-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 900;
  padding: 14px 22px;
  cursor: pointer;
}

.order-submit {
  width: 100%;
  border: none;
  background: var(--primary);
  color: #fff;
  margin-top: 22px;
}

.order-alert.error {
  background: rgba(200, 60, 60, 0.12);
  color: #b83232;
  padding: 14px 16px;
  border-radius: 14px;
  margin-top: 18px;
}

.order-success-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.order-code-box {
  margin: 28px auto;
  padding: 22px;
  border-radius: 20px;
  background: rgba(127, 127, 127, 0.08);
}

.order-code-box span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.order-code-box strong {
  color: var(--primary);
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.order-summary-box {
  text-align: left;
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(127, 127, 127, 0.08);
}

.order-summary-box h3 {
  color: var(--text-dark);
  margin-bottom: 14px;
}

.order-summary-row,
.order-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: var(--text-muted);
}

.order-summary-total {
  border-top: 1px solid rgba(127, 127, 127, 0.2);
  margin-top: 10px;
  padding-top: 16px;
  color: var(--text-dark);
}

.order-success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.order-wa-btn {
  background: var(--primary);
  color: #fff;
}

.order-back-btn {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.order-note {
  margin-top: 22px;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .order-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .order-page,
  .order-success-page {
    padding: 100px 1rem 60px;
  }

  .order-product-card,
  .order-form-card,
  .order-success-card {
    padding: 22px;
    border-radius: 22px;
  }

  .order-success-actions {
    flex-direction: column;
  }

  .order-wa-btn,
  .order-back-btn {
    width: 100%;
  }
}

/* =========================
   CONCERN / KEBUTUHAN CUSTOMER
========================= */
.concern-page,
.concern-detail-page {
  padding: 120px 5% 80px;
  min-height: 100vh;
  background: var(--bg);
}

.concern-hero,
.concern-detail-hero {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.concern-kicker,
.concern-products-header span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.concern-hero h1,
.concern-detail-hero h1,
.concern-products-header h2 {
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 12px 0 16px;
}

.concern-hero p,
.concern-detail-hero p,
.concern-products-header p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.concern-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.concern-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 24px;
  background: var(--card-bg);
  border: 1px solid rgba(127, 127, 127, 0.16);
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.concern-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.concern-icon,
.concern-detail-icon {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.concern-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.concern-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.92rem;
  flex: 1;
}

.concern-card span {
  color: var(--primary);
  font-weight: 800;
  margin-top: 18px;
}

.back-link,
.concern-category-link {
  display: inline-flex;
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.concern-detail-icon {
  margin: 8px 0 12px;
}

.concern-content-wrap {
  max-width: 900px;
  margin: 0 auto 64px;
  display: grid;
  gap: 20px;
}

.concern-content-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--card-bg);
  border: 1px solid rgba(127, 127, 127, 0.16);
}

.concern-content-card h2 {
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.concern-content-card p,
.concern-content-card li {
  color: var(--text-muted);
  line-height: 1.85;
}

.concern-content-card ul {
  padding-left: 20px;
}

.concern-content-card li {
  margin-bottom: 8px;
}

.concern-content-card.warning {
  background: rgba(180, 140, 60, 0.08);
}

.concern-products {
  max-width: 1280px;
  margin: 0 auto;
}

.concern-products-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.concern-products-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 1024px) {
  .concern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .concern-page,
  .concern-detail-page {
    padding: 100px 1rem 60px;
  }

  .concern-grid {
    grid-template-columns: 1fr;
  }

  .concern-card {
    min-height: auto;
  }
}

/* =========================
   TRACKING ORDER CUSTOMER
========================= */
.tracking-page {
  min-height: 100vh;
  padding: 120px 5% 80px;
  background: var(--bg);
}

.tracking-hero {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.tracking-hero span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.tracking-hero h1 {
  color: var(--primary);
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 12px 0 16px;
}

.tracking-hero p {
  color: var(--text-muted);
  line-height: 1.8;
}

.tracking-card,
.tracking-summary-card,
.tracking-info-card,
.tracking-items-card,
.tracking-note-card {
  background: var(--card-bg);
  border: 1px solid rgba(127, 127, 127, 0.16);
  border-radius: 26px;
}

.tracking-card {
  max-width: 780px;
  margin: 0 auto 32px;
  padding: 28px;
}

.tracking-form label {
  display: block;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.tracking-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.tracking-input-row input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(127, 127, 127, 0.25);
  background: transparent;
  color: var(--text-dark);
  padding: 14px 18px;
  font-family: inherit;
}

.tracking-input-row button {
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.tracking-alert {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  line-height: 1.6;
}

.tracking-alert.error {
  background: rgba(200, 60, 60, 0.12);
  color: #b83232;
}

.tracking-result {
  max-width: 1100px;
  margin: 0 auto;
}

.tracking-summary-card {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.tracking-summary-card span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tracking-summary-card h2 {
  color: var(--primary);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin: 8px 0;
}

.tracking-summary-card p {
  color: var(--text-muted);
}

.tracking-status-pill {
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  white-space: nowrap;
}

.tracking-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.tracking-step {
  background: rgba(127, 127, 127, 0.08);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
}

.tracking-step.active {
  background: rgba(80, 150, 90, 0.12);
  color: var(--text-dark);
}

.tracking-dot {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 2px solid rgba(127, 127, 127, 0.3);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.tracking-step.active .tracking-dot {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.tracking-step span {
  font-size: 0.86rem;
  font-weight: 800;
}

.tracking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.tracking-info-card,
.tracking-items-card,
.tracking-note-card {
  padding: 24px;
}

.tracking-info-card h3,
.tracking-items-card h3,
.tracking-note-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.tracking-info-card strong {
  color: var(--text-dark);
}

.tracking-info-card p,
.tracking-note-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.tracking-item-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(127, 127, 127, 0.14);
}

.tracking-item-row strong {
  color: var(--text-dark);
}

.tracking-item-row span {
  display: block;
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 0.9rem;
}

.tracking-total-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(127, 127, 127, 0.08);
}

.tracking-total-box div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.tracking-total-box span {
  color: var(--text-muted);
}

.tracking-total-box strong {
  color: var(--text-dark);
}

.tracking-total-box .grand-total {
  border-top: 1px solid rgba(127, 127, 127, 0.18);
  margin-top: 8px;
  padding-top: 14px;
}

.tracking-total-box .grand-total strong {
  color: var(--primary);
  font-size: 1.15rem;
}

.tracking-note-card {
  margin-top: 24px;
}

.tracking-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.tracking-primary-btn,
.tracking-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 900;
}

.tracking-primary-btn {
  background: var(--primary);
  color: #fff;
}

.tracking-secondary-btn {
  border: 1px solid var(--primary);
  color: var(--primary);
}

@media (max-width: 800px) {
  .tracking-summary-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .tracking-progress {
    grid-template-columns: 1fr;
  }

  .tracking-grid {
    grid-template-columns: 1fr;
  }

  .tracking-input-row {
    grid-template-columns: 1fr;
  }

  .tracking-input-row button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .tracking-page {
    padding: 100px 1rem 60px;
  }

  .tracking-card,
  .tracking-summary-card,
  .tracking-info-card,
  .tracking-items-card,
  .tracking-note-card {
    border-radius: 22px;
    padding: 22px;
  }

  .tracking-item-row,
  .tracking-total-box div {
    flex-direction: column;
    gap: 6px;
  }
}

/* =========================
   CHECKOUT PAGE - GRIZELLINE ROOTS
========================= */
.checkout-page {
  width: 100%;
  min-height: 80vh;
  padding: 120px 7% 80px;
  background:
    radial-gradient(
      circle at top left,
      rgba(154, 111, 62, 0.12),
      transparent 35%
    ),
    linear-gradient(180deg, #f7f1e8 0%, #efe3d2 100%);
  color: #2f241b;
}

/* HERO */
.checkout-hero {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.checkout-hero span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(111, 63, 32, 0.09);
  color: #8a5a32;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.checkout-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  color: #2f241b;
  font-family: serif;
}

.checkout-hero p {
  margin: 0 auto;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.8;
  color: #6f5b49;
}

/* LAYOUT */
.checkout-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* SUMMARY CARD */
.checkout-summary-card {
  position: sticky;
  top: 110px;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(69, 43, 24, 0.13);
  border: 1px solid rgba(138, 90, 50, 0.15);
}

.checkout-summary-card h2 {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.1;
  color: #2f241b;
  font-family: serif;
}

/* CHECKOUT ITEM */
.checkout-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(138, 90, 50, 0.16);
}

.checkout-item:first-of-type {
  padding-top: 0;
}

.checkout-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 18px;
  background: #eadfce;
  box-shadow: 0 12px 28px rgba(69, 43, 24, 0.11);
}

.checkout-item div {
  min-width: 0;
}

.checkout-item strong {
  display: block;
  margin-bottom: 6px;
  color: #2f241b;
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-item span {
  display: block;
  margin-bottom: 5px;
  color: #7a6653;
  font-size: 13px;
  font-weight: 600;
}

.checkout-item p {
  margin: 0;
  color: #6f3f20;
  font-size: 14px;
  font-weight: 800;
}

/* TOTAL */
.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding: 20px 0;
  border-top: 1px solid rgba(138, 90, 50, 0.2);
  border-bottom: 1px solid rgba(138, 90, 50, 0.2);
}

.checkout-total span {
  color: #6f5b49;
  font-size: 15px;
  font-weight: 800;
}

.checkout-total strong {
  color: #2f241b;
  font-size: 22px;
  font-weight: 900;
}

.checkout-note {
  margin: 18px 0 0;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(111, 63, 32, 0.08);
  color: #6f5b49;
  font-size: 14px;
  line-height: 1.7;
}

/* FORM CARD */
.checkout-form-card {
  background: rgba(255, 250, 243, 0.96);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(69, 43, 24, 0.12);
  border: 1px solid rgba(138, 90, 50, 0.15);
}

.checkout-form-card form {
  display: flex;
  flex-direction: column;
}

.checkout-form-card label {
  margin-bottom: 9px;
  color: #3b2a1d;
  font-size: 14px;
  font-weight: 800;
}

.checkout-form-card input,
.checkout-form-card textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(111, 63, 32, 0.22);
  background: #fff;
  color: #2f241b;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: 0.22s ease;
}

.checkout-form-card textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.checkout-form-card input::placeholder,
.checkout-form-card textarea::placeholder {
  color: #a08d7a;
}

.checkout-form-card input:focus,
.checkout-form-card textarea:focus {
  border-color: #8a5a32;
  box-shadow: 0 0 0 4px rgba(138, 90, 50, 0.12);
  background: #fffdf9;
}

/* CUSTOMER LOOKUP INFO */
#customerLookupInfo {
  display: block;
  min-height: 18px;
  margin-top: -8px !important;
  margin-bottom: 14px !important;
  color: #7a6653 !important;
  font-size: 13px;
  line-height: 1.5;
}

/* SUBMIT */
.checkout-submit-btn {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  border: none;
  border-radius: 999px;
  background: #6f3f20;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(111, 63, 32, 0.22);
  transition: 0.25s ease;
}

.checkout-submit-btn:hover {
  background: #4f2b15;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(111, 63, 32, 0.28);
}

.checkout-submit-btn:active {
  transform: translateY(0);
}

/* ALERT COMPATIBILITY */
.checkout-page .cart-alert {
  max-width: 1180px;
  margin: 0 auto 24px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .checkout-page {
    padding: 105px 5% 65px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
    order: 2;
  }

  .checkout-form-card {
    order: 1;
  }
}

@media (max-width: 560px) {
  .checkout-page {
    padding: 95px 16px 50px;
  }

  .checkout-hero {
    margin-bottom: 34px;
  }

  .checkout-hero p {
    font-size: 14px;
  }

  .checkout-form-card,
  .checkout-summary-card {
    border-radius: 24px;
    padding: 22px;
  }

  .checkout-summary-card h2 {
    font-size: 26px;
  }

  .checkout-item {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 13px;
  }

  .checkout-item img {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }

  .checkout-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .checkout-total strong {
    font-size: 21px;
  }

  .checkout-form-card input,
  .checkout-form-card textarea {
    border-radius: 16px;
    font-size: 14px;
  }
}

/* ==========================================================================
   7. RESPONSIVE MEDIA QUERIES (Satu pintu biar enteng diload)
   ========================================================================== */
/* Tablet Besar / Laptop Kecil */
@media (max-width: 1024px) {
  .herbana-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet & HP Standar */
@media (max-width: 768px) {
  /* Navbar & Mobile Menu */
  .logo {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -100%;
    /* Defaultnya sembunyi di kiri */
    width: 100%;
    height: 100vh;
    background-color: var(--card-bg);
    flex-direction: column;
    padding-top: 1rem;
    padding-left: 0;
    /* Reset padding bawaan */
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
    /* Penting! Biar menu anak gak bocor ke samping */
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
  }

  .nav-links li > a,
  .nav-links li > button {
    display: block;
    padding: 20px 10%;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
    width: 100%;
    text-align: left;
  }

  .dropdown {
    position: static;
  }

  .dropdown:hover .dropdown-content {
    display: none;
    /* Matiin hover laptop */
  }

  .dropdown-content::before {
    display: none;
  }

  .dropdown-content {
    position: absolute;
    top: 0;
    left: 100%;
    /* Sembunyi di luar kanan layar menu utama */
    width: 100%;
    min-height: 100vh;
    background-color: var(--card-bg);
    z-index: 10;
    /* Biar posisinya di atas menu utama */
    display: flex !important;
    flex-direction: column;
    padding: 0;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    border-top: none;
  }

  .dropdown-content.slide-in {
    left: 0;
    /* Nutupin layar penuh dari kanan ke kiri */
  }

  .mega-column {
    padding: 10px 10%;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
    margin-bottom: 0;
  }

  /* Style Tombol KEMBALI di HP */
  .mobile-back-btn {
    display: flex !important;
    /* Paksa muncul pas di layar HP */
    padding: 20px 10%;
    font-weight: 700;
    letter-spacing: 2px;
    background-color: rgba(85, 107, 47, 0.05);
    color: var(--primary);
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
    cursor: pointer;
    align-items: center;
  }

  .dark-mode .mobile-back-btn {
    background-color: rgba(255, 255, 255, 0.05);
  }

  /* Herbana Category Grid Fix */
  .herbana-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .herbana-filter-bar {
    flex-wrap: wrap;
  }

  .h-filter-item {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--text-dark);
  }

  .h-filter-item:nth-child(2) {
    border-right: none;
  }
}

/* HP Layar Kecil */
@media (max-width: 480px) {
  .herbana-grid {
    grid-template-columns: 1fr;
  }

  .h-filter-item {
    flex: 0 0 100%;
    border-right: none;
  }
}

/* =========================
   MOBILE NAVBAR FIX
========================= */
@media (max-width: 768px) {
  .nav-links {
    padding: 0;
    gap: 0;
  }

  .nav-links a,
  .nav-links button,
  .nav-links .dropdown-toggle {
    width: 100%;
    min-height: 74px;
    padding: 0 56px;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none !important;
    outline: none !important;
  }

  .nav-links a {
    border-bottom: 1px solid rgba(38, 53, 31, 0.08) !important;
  }

  .nav-links a:hover,
  .nav-links button:hover,
  .nav-links .dropdown-toggle:hover {
    background: rgba(86, 105, 47, 0.08) !important;
    color: var(--primary);
  }

  /* Cart mobile */
  .nav-cart-btn {
    margin: 34px 28px 18px;
    width: calc(100% - 56px) !important;
    min-height: 58px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    border: none !important;
    background: var(--primary) !important;
    color: #fff !important;
    justify-content: center !important;
    gap: 10px;
    box-shadow: 0 16px 35px rgba(86, 105, 47, 0.22) !important;
  }

  .nav-cart-btn:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
  }

  /* Dark mode button mobile */
  #theme-toggle {
    margin: 14px 28px 0;
    width: calc(100% - 56px) !important;
    min-height: 56px !important;
    padding: 0 24px !important;
    border: none !important;
    border-radius: 999px !important;
    background: rgba(86, 105, 47, 0.08) !important;
    color: var(--text-dark) !important;
    justify-content: flex-start !important;
    font-weight: 800;
    box-shadow: none !important;
  }

  #theme-toggle:hover {
    background: rgba(86, 105, 47, 0.08) !important;
    color: var(--primary) !important;
  }

  /* Hilangin underline active mobile biar nggak aneh */
  .nav-links a.active::after,
  #koleksi-btn.active::after {
    display: none !important;
  }

  .nav-links a.active,
  #koleksi-btn.active {
    color: var(--primary) !important;
    background: rgba(86, 105, 47, 0.08) !important;
  }
}

/* =========================
   NAV CART AS NORMAL MENU
   Desktop + Mobile
========================= */

.nav-links .nav-cart-btn,
.nav-links .nav-cart-btn.is-empty,
.nav-links .nav-cart-btn.has-items,
.nav-links .nav-cart-btn.active-cart {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;

  padding: 0 !important;
  margin: 0 !important;

  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;

  color: var(--text-dark) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;

  transform: none !important;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.nav-links .nav-cart-btn:hover,
.nav-links .nav-cart-btn.is-empty:hover,
.nav-links .nav-cart-btn.has-items:hover,
.nav-links .nav-cart-btn.active-cart:hover {
  background: transparent !important;
  color: var(--primary) !important;
  transform: none !important;
}

.nav-links .nav-cart-btn.active-cart {
  color: var(--primary) !important;
  font-weight: 900;
}

.nav-links .nav-cart-btn.active-cart::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.nav-cart-icon {
  font-size: 14px !important;
  line-height: 1;
}

.nav-cart-text {
  display: inline-block !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

/* badge tetap ada kalau cart isi, tapi kecil dan rapi */
.nav-cart-badge {
  position: static !important;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 2px;

  border: none !important;
  border-radius: 999px;
  background: #a13b25;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: none !important;
}

/* DARK MODE */
body.dark-mode .nav-links .nav-cart-btn,
body.dark-mode .nav-links .nav-cart-btn.is-empty,
body.dark-mode .nav-links .nav-cart-btn.has-items,
body.dark-mode .nav-links .nav-cart-btn.active-cart {
  background: transparent !important;
  color: var(--text-dark) !important;
  border: none !important;
  box-shadow: none !important;
}

body.dark-mode .nav-links .nav-cart-btn:hover,
body.dark-mode .nav-links .nav-cart-btn.is-empty:hover,
body.dark-mode .nav-links .nav-cart-btn.has-items:hover,
body.dark-mode .nav-links .nav-cart-btn.active-cart:hover,
body.dark-mode .nav-links .nav-cart-btn.active-cart {
  color: var(--primary) !important;
}

/* =========================
   MOBILE CART NORMAL MENU
========================= */

@media (max-width: 768px) {
  .nav-links .nav-cart-btn,
  .nav-links .nav-cart-btn.is-empty,
  .nav-links .nav-cart-btn.has-items,
  .nav-links .nav-cart-btn.active-cart {
    width: 100% !important;
    min-height: 74px !important;
    padding: 0 56px !important;
    margin: 0 !important;

    border: none !important;
    border-bottom: 1px solid rgba(38, 53, 31, 0.08) !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;

    color: var(--text-dark) !important;
    text-align: left !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em;

    transform: none !important;
  }

  .nav-links .nav-cart-btn:hover,
  .nav-links .nav-cart-btn.active-cart {
    background: rgba(86, 105, 47, 0.08) !important;
    color: var(--primary) !important;
  }

  .nav-links .nav-cart-btn.active-cart::after {
    display: none !important;
  }

  .nav-cart-badge {
    margin-left: auto !important;
  }

  body.dark-mode .nav-links .nav-cart-btn,
  body.dark-mode .nav-links .nav-cart-btn.is-empty,
  body.dark-mode .nav-links .nav-cart-btn.has-items,
  body.dark-mode .nav-links .nav-cart-btn.active-cart {
    background: transparent !important;
    color: var(--text-dark) !important;
    border-bottom-color: rgba(245, 234, 217, 0.08) !important;
  }

  body.dark-mode .nav-links .nav-cart-btn:hover,
  body.dark-mode .nav-links .nav-cart-btn.active-cart {
    background: rgba(217, 185, 121, 0.1) !important;
    color: var(--primary) !important;
  }
}
/* =========================
   DARK MODE FOOTER FIX
========================= */
body.dark-mode footer {
  background:
    radial-gradient(
      circle at top center,
      rgba(143, 174, 84, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #10130d 0%, #080907 100%) !important;
  color: #f7ead3 !important;
  border-top: 1px solid rgba(245, 234, 217, 0.08);
}

body.dark-mode footer h2,
body.dark-mode footer h3,
body.dark-mode footer p,
body.dark-mode footer small {
  color: #f7ead3 !important;
}

body.dark-mode footer .btn-footer,
body.dark-mode footer a {
  background: #d9b979 !important;
  color: #1d2116 !important;
}

body.dark-mode footer .btn-footer:hover,
body.dark-mode footer a:hover {
  background: #f0d28e !important;
  color: #1d2116 !important;
}

.cart-robot-box {
  margin: 18px 0 14px;
}

.cart-honeypot {
  display: none !important;
}

.cart-robot-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(127, 127, 127, 0.08);
  color: var(--text-dark);
  font-weight: 800;
  cursor: pointer;
}

.cart-robot-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

button.cart-checkout-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

button.cart-checkout-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

body.dark-mode .cart-robot-check {
  background: rgba(255, 250, 243, 0.08);
  color: var(--text-dark);
}

/* =========================
   CART QTY CUSTOM STEPPER
========================= */

.cart-qty-control {
  display: inline-grid;
  grid-template-columns: 38px 54px 38px;
  align-items: center;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(143, 174, 84, 0.45);
  background: rgba(255, 250, 243, 0.06);
  box-shadow: 0 0 0 3px rgba(143, 174, 84, 0.08);
}

.cart-qty-btn {
  width: 38px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.cart-qty-btn:hover {
  background: var(--primary);
  color: #1d2116;
}

.cart-qty-input {
  width: 54px !important;
  height: 44px !important;
  border: none !important;
  border-left: 1px solid rgba(143, 174, 84, 0.22) !important;
  border-right: 1px solid rgba(143, 174, 84, 0.22) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--text-dark) !important;
  text-align: center;
  font-weight: 900;
  outline: none;
  box-shadow: none !important;
}

/* Hide original number arrows */
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-qty-input[type="number"] {
  -moz-appearance: textfield;
}

/* Dark mode */
body.dark-mode .cart-qty-control {
  background: rgba(255, 250, 243, 0.06);
  border-color: rgba(143, 174, 84, 0.55);
  box-shadow: 0 0 0 3px rgba(143, 174, 84, 0.09);
}

body.dark-mode .cart-qty-btn {
  color: var(--text-dark);
}

body.dark-mode .cart-qty-btn:hover {
  background: var(--primary);
  color: #1d2116;
}
/* =========================
   CART CAPTCHA MODAL
========================= */

.cart-robot-check {
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(127, 127, 127, 0.08);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  transition: 0.25s ease;
}

.cart-robot-check:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.cart-robot-check.verified {
  background: rgba(143, 174, 84, 0.18);
  color: var(--text-dark);
}

.robot-check-icon {
  font-size: 1.1rem;
}

.captcha-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.captcha-modal.show {
  display: flex;
}

.captcha-modal-box {
  position: relative;
  width: min(420px, 100%);
  padding: 30px;
  border-radius: 28px;
  background: var(--card-bg);
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.captcha-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
}

.captcha-kicker {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.captcha-modal-box h3 {
  margin: 10px 0 8px;
  font-size: 1.5rem;
}

.captcha-modal-box p,
.captcha-modal-box small {
  color: var(--text-muted);
  line-height: 1.6;
}

.captcha-question {
  margin: 22px auto 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
}

#captchaAnswerInput {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-dark);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 900;
  outline: none;
  margin-bottom: 14px;
}

#captchaAnswerInput:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.captcha-verify-btn {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #1d2116;
  font-weight: 900;
  cursor: pointer;
  margin-bottom: 14px;
}

body.dark-mode .cart-robot-check {
  background: rgba(255, 250, 243, 0.08);
}

body.dark-mode .captcha-modal-box {
  background: var(--bg-card);
}

/* =========================
   CHECKOUT SUCCESS
========================= */

.checkout-success-page {
  min-height: 80vh;
  padding: 130px 7% 80px;
  background:
    radial-gradient(
      circle at top left,
      rgba(143, 174, 84, 0.16),
      transparent 36%
    ),
    linear-gradient(135deg, var(--bg-light), var(--bg-light));
  color: var(--text-dark);
}

.checkout-success-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.success-kicker {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.checkout-success-card h1 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.checkout-success-card p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  line-height: 1.8;
}

.success-order-box {
  margin: 28px 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  text-align: left;
}

.success-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
}

.success-row:last-child {
  border-bottom: none;
}

.success-row span {
  color: var(--text-muted);
  font-weight: 700;
}

.success-row strong {
  text-align: right;
}

.success-items {
  margin-top: 28px;
  text-align: left;
}

.success-items h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.success-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}

.success-item small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  margin-top: 28px;
}

.success-wa-btn,
.success-secondary-btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
}

.success-wa-btn {
  background: var(--primary);
  color: #1d2116;
}

.success-secondary-btn {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
}

body.dark-mode .checkout-success-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(143, 174, 84, 0.14),
      transparent 36%
    ),
    var(--bg-light);
}

body.dark-mode .checkout-success-card {
  background: var(--card-bg);
}

@media (max-width: 768px) {
  .checkout-success-page {
    padding: 110px 18px 60px;
  }

  .checkout-success-card {
    padding: 30px 20px;
    border-radius: 26px;
  }

  .success-row,
  .success-item {
    flex-direction: column;
  }

  .success-row strong {
    text-align: left;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-wa-btn,
  .success-secondary-btn {
    width: 100%;
  }
}
/* =========================
   ORDER FOLLOW UP BUTTON
========================= */

.success-followup-btn,
.tracking-followup-btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(143, 174, 84, 0.14);
  color: var(--primary);
  border: 1px solid rgba(143, 174, 84, 0.38);

  text-decoration: none;
  font-weight: 900;
  transition: 0.25s ease;
}

.success-followup-btn:hover,
.tracking-followup-btn:hover {
  background: var(--primary);
  color: #1d2116;
  transform: translateY(-2px);
}

.tracking-followup-btn {
  width: fit-content;
  margin-top: 18px;
}

body.dark-mode .success-followup-btn,
body.dark-mode .tracking-followup-btn {
  background: rgba(143, 174, 84, 0.12);
  color: var(--primary);
  border-color: rgba(143, 174, 84, 0.32);
}

body.dark-mode .success-followup-btn:hover,
body.dark-mode .tracking-followup-btn:hover {
  background: var(--primary);
  color: #1d2116;
}

@media (max-width: 768px) {
  .success-followup-btn,
  .tracking-followup-btn {
    width: 100%;
  }
}

/* ========================================================================
   FINAL FIX - SUCCESS / TRACKING ACTION BUTTON ALIGNMENT
   Place at the VERY BOTTOM of style.css so it wins the cascade.
   ======================================================================== */

.success-actions,
.tracking-actions,
.order-success-actions {
  width: 100% !important;
  max-width: 820px !important;
  margin: 32px auto 0 !important;
  display: grid !important;
  grid-template-columns: minmax(170px, 1fr) minmax(190px, 1fr) minmax(
      260px,
      1.35fr
    ) !important;
  gap: 14px !important;
  align-items: stretch !important;
  justify-content: center !important;
}

.success-actions > a,
.tracking-actions > a,
.order-success-actions > a,
.success-wa-btn,
.success-secondary-btn,
.success-followup-btn,
.tracking-primary-btn,
.tracking-secondary-btn,
.tracking-followup-btn,
.order-wa-btn,
.order-back-btn {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 56px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 22px !important;
  border-radius: 999px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.01em !important;
  white-space: normal !important;

  box-sizing: border-box !important;
  box-shadow: none !important;
  transform: none !important;
}

.success-wa-btn,
.tracking-primary-btn,
.order-wa-btn {
  border: 1px solid var(--primary) !important;
  background: var(--primary) !important;
  color: #1d2116 !important;
}

.success-secondary-btn,
.tracking-secondary-btn,
.order-back-btn {
  border: 1px solid var(--primary) !important;
  background: transparent !important;
  color: var(--primary) !important;
}

.success-followup-btn,
.tracking-followup-btn {
  border: 1px solid rgba(143, 174, 84, 0.42) !important;
  background: rgba(143, 174, 84, 0.14) !important;
  color: var(--primary) !important;
}

.success-wa-btn:hover,
.tracking-primary-btn:hover,
.order-wa-btn:hover,
.success-secondary-btn:hover,
.tracking-secondary-btn:hover,
.order-back-btn:hover,
.success-followup-btn:hover,
.tracking-followup-btn:hover {
  transform: none !important;
  filter: brightness(1.04);
}

.success-secondary-btn:hover,
.tracking-secondary-btn:hover,
.order-back-btn:hover,
.success-followup-btn:hover,
.tracking-followup-btn:hover {
  background: var(--primary) !important;
  color: #1d2116 !important;
  border-color: var(--primary) !important;
}

body.dark-mode .success-wa-btn,
body.dark-mode .tracking-primary-btn,
body.dark-mode .order-wa-btn {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #1d2116 !important;
}

body.dark-mode .success-secondary-btn,
body.dark-mode .tracking-secondary-btn,
body.dark-mode .order-back-btn {
  background: transparent !important;
  color: var(--primary) !important;
  border-color: rgba(143, 174, 84, 0.65) !important;
}

body.dark-mode .success-followup-btn,
body.dark-mode .tracking-followup-btn {
  background: rgba(143, 174, 84, 0.13) !important;
  color: var(--primary) !important;
  border-color: rgba(143, 174, 84, 0.38) !important;
}

body.dark-mode .success-secondary-btn:hover,
body.dark-mode .tracking-secondary-btn:hover,
body.dark-mode .order-back-btn:hover,
body.dark-mode .success-followup-btn:hover,
body.dark-mode .tracking-followup-btn:hover {
  background: var(--primary) !important;
  color: #1d2116 !important;
  border-color: var(--primary) !important;
}

@media (max-width: 860px) {
  .success-actions,
  .tracking-actions,
  .order-success-actions {
    max-width: 620px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .success-followup-btn,
  .tracking-followup-btn {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 560px) {
  .success-actions,
  .tracking-actions,
  .order-success-actions {
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .success-followup-btn,
  .tracking-followup-btn {
    grid-column: auto !important;
  }
}
/* =========================
   PAGE TUTORIAL / DRIVER JS
========================= */

.page-title-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.page-tour-btn {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(86, 105, 47, 0.28);
  background: rgba(86, 105, 47, 0.08);
  color: var(--primary);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.page-tour-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.driver-popover.grz-driver-popover {
  max-width: 340px;
  border-radius: 18px;
  padding: 18px;
  background: #fffaf3;
  color: #2f2a22;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(86, 105, 47, 0.16);
}

.driver-popover.grz-driver-popover .driver-popover-title {
  color: #3f5628;
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 900;
}

.driver-popover.grz-driver-popover .driver-popover-description {
  color: #6d6256;
  font-size: 0.92rem;
  line-height: 1.65;
}

.driver-popover.grz-driver-popover .driver-popover-progress-text {
  color: #8a7d6d;
  font-weight: 700;
}

.driver-popover.grz-driver-popover button {
  border-radius: 999px !important;
  font-family: inherit !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.driver-popover.grz-driver-popover .driver-popover-next-btn,
.driver-popover.grz-driver-popover .driver-popover-done-btn {
  background: #556b2f !important;
  color: #fff !important;
  border: 1px solid #556b2f !important;
}

.driver-popover.grz-driver-popover .driver-popover-prev-btn {
  background: #f3eadc !important;
  color: #3a2d22 !important;
  border: 1px solid #dfd1be !important;
}

.driver-popover.grz-driver-popover .driver-popover-close-btn {
  color: #aaa !important;
}

@media (max-width: 768px) {
  .driver-popover.grz-driver-popover {
    max-width: calc(100vw - 34px);
    padding: 16px;
  }

  .driver-popover.grz-driver-popover .driver-popover-title {
    font-size: 1.05rem;
  }

  .driver-popover.grz-driver-popover .driver-popover-description {
    font-size: 0.86rem;
  }

  .page-title-actions {
    flex-direction: column;
  }
}

.checkout-voucher-input {
  text-transform: uppercase;
}

/* =========================
   CART HOTFIX - VARIANT CART
   Tempel paling bawah style.css
========================= */

.cart-item-image-link {
  display: block;
  flex-shrink: 0;
}

.cart-remove-form {
  display: none !important;
}

.cart-remove-link {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  width: fit-content;
  cursor: pointer;
  color: #ff9a8f;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cart-remove-link:hover {
  color: #ff6f61;
}

.cart-variant-name,
.cart-variant-sku,
.cart-item-price {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-qty-input[type="number"] {
  -moz-appearance: textfield;
}

.cart-qty-control .cart-qty-input {
  width: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
  height: 44px !important;
  padding: 0 !important;
  text-align: center !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.cart-summary-card .page-tour-btn,
.cart-summary-card .cart-clear-link {
  margin-top: 14px;
}

.cart-clear-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #ff9a8f;
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
}

.cart-clear-link:hover {
  color: #ff6f61;
  text-decoration: underline;
}

.admin-variant-section {
  margin-top: 32px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-section-header {
  margin-bottom: 22px;
}

.admin-section-header span {
  color: #9abd54;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.admin-section-header h2 {
  margin: 8px 0;
  font-size: 1.8rem;
}

.admin-section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.admin-variant-create-card,
.admin-variant-list-card {
  margin-top: 22px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-variant-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 16px;
}

.admin-variant-grid .form-group,
.admin-variant-grid .form-check-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-variant-grid label {
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-variant-grid input,
.admin-variant-table input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.form-check-group {
  justify-content: end;
}

.form-check-group label {
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check-group input,
.admin-variant-table input[type="checkbox"] {
  width: auto;
  min-height: auto;
}

.admin-primary-btn,
.admin-small-btn {
  border: none;
  border-radius: 999px;
  background: #9abd54;
  color: #111;
  font-weight: 900;
  cursor: pointer;
}

.admin-primary-btn {
  margin-top: 18px;
  min-height: 48px;
  padding: 0 24px;
}

.admin-small-btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.8rem;
}

.admin-small-btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.admin-small-btn.danger {
  background: rgba(255, 95, 95, 0.18);
  color: #ff9b9b;
}

.admin-variant-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-variant-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1100px;
}

.admin-variant-table th,
.admin-variant-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: middle;
}

.admin-variant-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-variant-actions form {
  margin: 0;
}

.admin-empty-box {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

@media (max-width: 900px) {
  .admin-variant-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .admin-variant-grid {
    grid-template-columns: 1fr;
  }
}
