/* ═══════════════════════════════════════════════════════════
   CAMPPRAPATAN — styles.css
   Theme: Forest / Earth / Adventure
   Fonts: Playfair Display (display) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

/* ── TOKENS & RESET ──────────────────────────────────────── */
:root {
  --green-900: #081c0e;
  --green-800: #1b4332;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-400: #74c69d;
  --green-200: #b7e4c7;
  --green-100: #d8f3dc;

  --earth-900: #2c1810;
  --earth-700: #6b4226;
  --earth-500: #a0522d;
  --earth-300: #d2956a;

  --orange: #f77f00;
  --orange-light: #fca533;
  --white: #fefefe;
  --off-white: #f4f1ec;
  --text-dark: #0f2010;
  --text-mid: #3a5a40;
  --text-light: #6b8f71;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(27,67,50,.12);
  --shadow-md: 0 8px 32px rgba(27,67,50,.18);
  --shadow-lg: 0 20px 60px rgba(27,67,50,.22);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-100); }
::-webkit-scrollbar-thumb { background: var(--green-600); border-radius: 3px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--green-800);
}
.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-desc {
  margin-top: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 48ch;
}

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 1rem auto 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(247,127,0,.35);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247,127,0,.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .85rem 1.8rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.8);
}

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

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .8rem 1.5rem;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(27,67,50,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  padding: .6rem 1.5rem;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }

.btn-install-nav {
  padding: .5rem 1.2rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-install-nav:hover { background: var(--orange-light); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 45%, var(--green-700) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 3rem;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(64,145,108,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(247,127,0,.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .3;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  color: var(--green-200);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeSlideDown .8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeSlideDown .9s ease .1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--orange-light);
}

.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeSlideDown 1s ease .2s both;
}
.br-desktop { display: none; }

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeSlideDown 1s ease .3s both;
}

.btn-install-hero {
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: fadeSlideDown 1s ease .4s both;
}
.stat { display: flex; flex-direction: column; gap: .15rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.55); font-size: .78rem; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ── HERO IMAGE / ILLUSTRATION ───────────────────────────── */
.hero-image-wrap {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 1s ease .3s both;
}

.hero-image-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  padding: 1.5rem;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(180deg, #0a1f0f 0%, #1b4332 40%, #2d6a4f 100%);
  position: relative;
}

.img-scene { width: 100%; height: 100%; position: relative; overflow: hidden; }

.mountain {
  position: absolute;
  bottom: 25%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.mountain-back {
  width: 70%; height: 65%;
  left: 50%; transform: translateX(-50%);
  background: #1b4332;
}
.mountain-mid {
  width: 55%; height: 52%;
  left: 10%;
  background: #2d6a4f;
}
.mountain-front {
  width: 60%; height: 45%;
  right: 5%;
  background: #40916c;
}

.tent-illus {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.tent-body {
  width: 64px;
  height: 48px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.tent-door {
  width: 16px; height: 20px;
  background: var(--green-900);
  border-radius: 8px 8px 0 0;
  margin: -4px auto 0;
}

.stars {
  position: absolute;
  top: 12%;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  animation: twinkle 3s ease-in-out infinite alternate;
}

.hero-card-badge {
  margin-top: 1rem;
  padding: .6rem 1rem;
  background: rgba(64,145,108,.25);
  border: 1px solid rgba(64,145,108,.4);
  border-radius: var(--radius-sm);
  color: var(--green-200);
  font-size: .85rem;
  font-weight: 500;
  text-align: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeSlideDown .8s ease 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ── FEATURES STRIP ──────────────────────────────────────── */
.features-strip {
  background: var(--green-800);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 2rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.15);
}
.feat-item:last-child { border-right: none; }
.feat-icon { font-size: 1.1rem; }

/* ── SECTION WRAPPER ─────────────────────────────────────── */
.section { padding: 6rem 1.5rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── FILTER BAR ──────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.2rem;
  background: transparent;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-xl);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}

/* ── KATALOG GRID ────────────────────────────────────────── */
.katalog { background: var(--off-white); }

.katalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.prod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(27,67,50,.06);
  animation: fadeInCard .5s ease both;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prod-card.hidden { display: none; }

.prod-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.tenda-dome { background: linear-gradient(135deg, #1b4332, #2d6a4f); }
.tenda-besar { background: linear-gradient(135deg, #0f2d22, #1b4332); }
.carrier-60  { background: linear-gradient(135deg, #6b4226, #a0522d); }
.carrier-80  { background: linear-gradient(135deg, #2c1810, #6b4226); }
.sleepbag    { background: linear-gradient(135deg, #1a3a4a, #2d6a8a); }
.matras      { background: linear-gradient(135deg, #1f4a1f, #3a7a3a); }
.kompor      { background: linear-gradient(135deg, #4a2400, #8a4500); }
.nesting     { background: linear-gradient(135deg, #2a2a3a, #4a4a6a); }

.prod-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  padding: .25rem .7rem;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.prod-info { padding: 1.25rem; }
.prod-meta {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: .4rem;
}
.prod-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.prod-desc {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prod-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
}
.prod-price span {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-light);
}

.btn-pilih {
  padding: .45rem 1.1rem;
  background: var(--green-800);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-pilih:hover { background: var(--green-600); transform: scale(1.04); }

/* ── RENTAL SECTION ──────────────────────────────────────── */
.rental-section { background: var(--green-900); }

.rental-wrapper {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.rental-left { flex: 1; min-width: 260px; }
.rental-left .section-title { color: var(--white); }
.rental-left .section-desc { color: rgba(255,255,255,.6); }

.info-box {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
}
.info-row > span { font-size: 1.4rem; }
.info-row strong { color: var(--white); font-size: .9rem; display: block; margin-bottom: .2rem; }
.info-row p { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.4; }

/* ── RENTAL FORM ─────────────────────────────────────────── */
.rental-right { flex: 1.4; min-width: 300px; }

.rental-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .03em;
}

.form-group input,
.form-group select {
  padding: .75rem 1rem;
  border: 2px solid var(--green-100);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(64,145,108,.12);
}
.form-group input::placeholder { color: #aaa; }
.form-group select { cursor: pointer; }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--green-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--off-white);
  transition: var(--transition);
}
.qty-control:focus-within {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(64,145,108,.12);
}
.qty-btn {
  width: 44px;
  height: 48px;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-700);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--green-100); }
.qty-control input {
  flex: 1;
  text-align: center;
  border: none;
  border-left: 1px solid var(--green-100);
  border-right: 1px solid var(--green-100);
  border-radius: 0;
  background: transparent;
  font-weight: 700;
  color: var(--text-dark);
  padding: .75rem .25rem;
}
.qty-control input:focus { box-shadow: none; background: transparent; }

/* ── RESULT BOX ──────────────────────────────────────────── */
.result-box {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}
.result-header {
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--green-200);
}
.result-grid { display: flex; flex-direction: column; gap: .6rem; }
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
}
.r-label { color: rgba(255,255,255,.65); }
.r-val { font-weight: 600; color: var(--white); }
.result-divider {
  height: 1px;
  background: rgba(255,255,255,.2);
  margin: .4rem 0;
}
.total-row { margin-top: .2rem; }
.total-val {
  font-family: var(--font-display);
  font-size: 1.4rem !important;
  color: var(--orange-light) !important;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ── TESTIMONIAL ─────────────────────────────────────────── */
.testimoni-section { background: var(--off-white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,67,50,.06);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card.featured {
  background: var(--green-800);
  border-color: var(--green-600);
}
.testi-card.featured p,
.testi-card.featured .testi-author strong,
.testi-card.featured .testi-author span { color: var(--white) !important; }
.testi-card.featured .testi-avatar {
  background: var(--orange);
  color: var(--white);
}
.testi-card.featured .testi-stars { color: var(--orange-light); }

.testi-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: .75rem; }
.testi-card > p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--green-800);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--text-dark); }
.testi-author span { font-size: .78rem; color: var(--text-light); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--green-900);
  padding: 4rem 1.5rem 1.5rem;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand .logo-icon,
.footer-brand .logo-text { color: var(--white); }
.footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-socials { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-btn {
  padding: .45rem 1rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-xl);
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.social-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.footer-links a {
  font-size: .88rem;
  transition: var(--transition);
  color: rgba(255,255,255,.6);
}
.footer-links a:hover { color: var(--white); padding-left: .3rem; }
.footer-contact p { font-size: .85rem; line-height: 1.6; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.offline-badge {
  padding: .25rem .8rem;
  background: rgba(247,127,0,.2);
  border: 1px solid rgba(247,127,0,.4);
  border-radius: var(--radius-xl);
  color: var(--orange-light) !important;
  font-size: .75rem;
  font-weight: 600;
}

/* ── INSTALL TOAST ───────────────────────────────────────── */
.install-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: var(--green-900);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 320px;
  max-width: calc(100vw - 3rem);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
  animation: slideUp .4s cubic-bezier(.34,1.56,.64,1) both;
}
.toast-content { display: flex; align-items: center; gap: .75rem; }
.toast-icon { font-size: 1.8rem; }
.toast-content strong { display: block; color: var(--white); font-size: .9rem; }
.toast-content p { color: rgba(255,255,255,.55); font-size: .78rem; margin-top: .15rem; }
.toast-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.toast-btn-install {
  padding: .5rem 1.1rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.toast-btn-install:hover { background: var(--orange-light); }
.toast-btn-close {
  padding: .5rem .9rem;
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
}
.toast-btn-close:hover { background: rgba(255,255,255,.08); color: var(--white); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInCard {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes scrollBounce {
  0%,100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.3); }
}
@keyframes twinkle {
  from { opacity: .4; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (min-width: 900px) {
  .br-desktop { display: inline; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero {
    flex-direction: column;
    padding: 6rem 1.25rem 4rem;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { max-width: 100%; width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .rental-wrapper { gap: 2.5rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-strip { gap: 0; }
  .feat-item {
    padding: .6rem 1rem;
    font-size: .82rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 50%;
    justify-content: center;
  }
  .feat-item:nth-child(3),
  .feat-item:last-child { border-bottom: none; }

  .install-toast { min-width: auto; width: calc(100vw - 2rem); flex-direction: column; gap: .75rem; }
  .toast-actions { width: 100%; }
  .toast-btn-install, .toast-btn-close { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .katalog-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .prod-img { height: 120px; font-size: 2.8rem; }
  .prod-name { font-size: 1rem; }
  .prod-desc { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .rental-form { padding: 1.25rem; }
}

.carrier-45   { background: linear-gradient(135deg, #4a2a10, #8a5a30); }
.trekking-pole{ background: linear-gradient(135deg, #2a4a2a, #4a7a4a); }
.toa          { background: linear-gradient(135deg, #1a1a3a, #3a3a6a); }
.sepatu-hiking{ background: linear-gradient(135deg, #3a2a1a, #6a4a2a); }
.jaket        { background: linear-gradient(135deg, #1a2a3a, #2a4a6a); }
.handy-talkie { background: linear-gradient(135deg, #1a3a1a, #2a6a4a); }
.hydropack    { background: linear-gradient(135deg, #0a2a4a, #1a5a8a); }
.headlamp     { background: linear-gradient(135deg, #3a2a0a, #7a5a1a); }
.flysheet-sm  { background: linear-gradient(135deg, #0f3a3a, #1a6a6a); }
.flysheet-lg  { background: linear-gradient(135deg, #0a2a3a, #1a5a6a); }
.tiang-flysheet { background: linear-gradient(135deg, #2a2a2a, #5a5a5a); }

/* ── MULTI-ITEM SELECTION UI ─────────────────────────────── */
.label-note {
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-light);
  background: var(--green-100);
  padding: .15rem .55rem;
  border-radius: var(--radius-xl);
  margin-left: .4rem;
}

.alat-rows-wrapper {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.alat-row {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.alat-row .alat-select {
  flex: 1;
  min-width: 0;
  padding: .65rem .9rem;
  border: 2px solid var(--green-100);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
  cursor: pointer;
  -webkit-appearance: none;
}
.alat-row .alat-select:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(64,145,108,.12);
}

.row-qty {
  display: flex;
  align-items: center;
  border: 2px solid var(--green-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--off-white);
  flex-shrink: 0;
  transition: var(--transition);
}
.row-qty:focus-within {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(64,145,108,.12);
}
.row-qty .qty-btn {
  width: 34px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
  cursor: pointer;
  transition: var(--transition);
}
.row-qty .qty-btn:hover { background: var(--green-100); }
.row-qty .qty-input {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--green-100);
  border-right: 1px solid var(--green-100);
  background: transparent;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: .5rem .1rem;
  outline: none;
}

.btn-hapus-row {
  width: 34px;
  height: 34px;
  background: rgba(192, 57, 43, .08);
  border: 1px solid rgba(192, 57, 43, .22);
  border-radius: 50%;
  color: #c0392b;
  font-size: .82rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-hapus-row:hover {
  background: rgba(192, 57, 43, .18);
  border-color: rgba(192, 57, 43, .5);
}

.btn-tambah-alat {
  margin-top: .5rem;
  padding: .55rem 1.25rem;
  background: transparent;
  border: 2px dashed var(--green-400);
  border-radius: var(--radius-md);
  color: var(--green-700);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}
.btn-tambah-alat:hover {
  background: var(--green-100);
  border-style: solid;
  border-color: var(--green-600);
  color: var(--green-800);
}
.btn-tambah-alat:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.btn-tambah-alat:disabled:hover {
  background: transparent;
  border-style: dashed;
  border-color: var(--green-400);
  color: var(--green-700);
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
