/* ==============================================
   STYLE.CSS — Halaman Utama (index.html)
   TB Sumber Rejeki
   ============================================== */

:root {
  --primary: #FF6B2C;
  --primary-light: #FF8F5E;
  --primary-pale: #FFF1EB;
  --yellow: #FFD23F;
  --yellow-dark: #E6B800;
  --teal: #00BFA6;
  --teal-dark: #009688;
  --blue: #2B9EFF;
  --white: #FFFFFF;
  --bg: #F7F9FC;
  --bg2: #EEF3FA;
  --dark: #1A2238;
  --dark2: #2D3A55;
  --mid: #6B7A9A;
  --light-border: rgba(0,0,0,0.07);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── PATTERN BG ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,107,44,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,191,166,0.06) 0%, transparent 50%),
    radial-gradient(circle at 60% 10%, rgba(43,158,255,0.05) 0%, transparent 40%);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,107,44,0.12);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
}

.nav-logo-top {
  font-family: 'Righteous', cursive;
  font-size: 11px; letter-spacing: 3px; color: var(--mid);
  text-transform: uppercase;
}

.nav-logo-main {
  font-family: 'Righteous', cursive;
  font-size: 22px; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--primary), var(--yellow-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  text-decoration: none; color: var(--dark2);
  font-size: 14px; font-weight: 700;
  transition: color 0.2s; position: relative;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.nav-tel {
  display: flex; align-items: center; gap: 8px;
  background: var(--primary-pale); color: var(--primary);
  padding: 9px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 800; text-decoration: none;
  transition: all 0.2s;
}

.nav-tel:hover { background: var(--primary); color: white; }

.nav-wa {
  background: #25D366; color: white;
  padding: 9px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 800; text-decoration: none;
  transition: all 0.2s; display: flex; align-items: center; gap: 6px;
}

.nav-wa:hover { background: #1aaa55; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.4); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 110px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,63,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,166,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--dark);
  padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.5px;
  margin-bottom: 24px; box-shadow: 0 4px 14px rgba(255,210,63,0.4);
  animation: popIn 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes popIn { from{opacity:0;transform:scale(0.7) translateY(10px)} to{opacity:1;transform:scale(1) translateY(0)} }

.hero-badge-emoji { font-size: 16px; }

.hero h1 {
  font-family: 'Righteous', cursive;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.1; margin-bottom: 8px;
  color: var(--dark);
  animation: slideUp 0.7s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}

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

.hero h1 .accent {
  background: linear-gradient(135deg, var(--primary), #FF3A6E);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero h1 .accent2 {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px; line-height: 1.75; color: var(--mid);
  margin-bottom: 36px; max-width: 480px;
  animation: slideUp 0.7s 0.2s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: slideUp 0.7s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), #FF3A6E);
  color: white; border: none; padding: 14px 32px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(255,107,44,0.4);
}

.btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255,107,44,0.45); }

.btn-sec {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--dark);
  border: 2px solid rgba(0,0,0,0.08); padding: 14px 32px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800;
  cursor: pointer; transition: all 0.25s; box-shadow: var(--shadow-sm);
}

.btn-sec:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.hero-chips {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px;
  padding-top: 32px; border-top: 1px dashed rgba(0,0,0,0.1);
  animation: slideUp 0.7s 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1.5px solid var(--light-border);
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 700; color: var(--dark2);
  box-shadow: var(--shadow-sm);
}

/* ─── HERO RIGHT (CARD COLLAGE) ─── */
.hero-visual {
  position: relative; height: 520px;
  animation: slideUp 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) both;
}

.hv-main {
  position: absolute; top: 0; left: 0; right: 0;
  height: 320px; border-radius: 28px; overflow: hidden;
  background: linear-gradient(135deg, #FFE8D6 0%, #FFF5DE 100%);
  border: 2px solid rgba(255,107,44,0.15);
  box-shadow: var(--shadow-lg);
}

/* ─── HERO SLIDER ─── */
.hv-slider {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}

.hv-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s ease;
  display: flex; align-items: center; justify-content: center;
}

.hv-slide.active { opacity: 1; }

.hv-slide img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}

.hv-slide-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  padding: 28px 24px 20px;
}

.hv-slide-title {
  font-family: 'Righteous', cursive;
  font-size: 15px; color: white; letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.hv-slide-desc {
  font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.5; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.hv-slide-default {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}

.hv-slider-dots {
  position: absolute; bottom: 12px; right: 14px;
  display: flex; gap: 5px; z-index: 5;
}

.hv-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer;
  transition: all 0.25s; border: none;
}

.hv-dot.active { background: white; width: 20px; border-radius: 4px; }

.hv-slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 10px; z-index: 5; pointer-events: none;
}

.hv-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.8); border: none; cursor: pointer;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  pointer-events: all; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hv-arrow:hover { background: white; transform: scale(1.1); }

.hv-main-emoji { font-size: 110px; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15)); }

.hv-badge-top {
  position: absolute; top: 20px; right: 20px;
  background: var(--primary); color: white;
  font-family: 'Righteous', cursive; font-size: 14px; letter-spacing: 1px;
  padding: 8px 16px; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255,107,44,0.4);
  z-index: 3;
}

.hv-cards {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
}

.hv-card {
  background: white; border-radius: 20px;
  padding: 18px 16px;
  border: 1.5px solid var(--light-border);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}

.hv-card:hover { transform: translateY(-4px); }

.hv-card-emoji { font-size: 30px; margin-bottom: 8px; display: block; }
.hv-card-label { font-size: 11px; color: var(--mid); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.hv-card-name { font-size: 13px; font-weight: 800; color: var(--dark); margin: 3px 0; }
.hv-card-price { font-family: 'Righteous', cursive; font-size: 15px; color: var(--primary); }

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: linear-gradient(90deg, var(--primary) 0%, #FF3A6E 50%, var(--primary) 100%);
  padding: 16px 0; overflow: hidden;
}

.marquee-track { display: flex; gap: 48px; animation: marquee 22s linear infinite; white-space: nowrap; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.marquee-item {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  font-family: 'Righteous', cursive; font-size: 15px; letter-spacing: 2px; color: white;
}

.marquee-star { color: rgba(255,255,255,0.6); font-size: 10px; }

/* ─── SECTIONS ─── */
.section { padding: 88px 48px; }
.section-alt { background: var(--bg2); }

.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }

.s-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}

.s-title {
  font-family: 'Righteous', cursive;
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--dark); line-height: 1.1;
}

.s-sub { font-size: 16px; color: var(--mid); margin-top: 12px; line-height: 1.7; }

/* ─── CATEGORIES ─── */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }

.cat-card {
  background: white; border-radius: var(--radius); padding: 28px 16px 22px;
  text-align: center; text-decoration: none; color: var(--dark);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm); transition: all 0.25s; cursor: pointer;
  position: relative; overflow: hidden;
}

.cat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; border-radius: 0 0 14px 14px;
  transition: height 0.25s;
}

.cat-card.c1::before { background: var(--primary); }
.cat-card.c2::before { background: var(--yellow); }
.cat-card.c3::before { background: var(--teal); }
.cat-card.c4::before { background: var(--blue); }
.cat-card.c5::before { background: #A855F7; }
.cat-card.c6::before { background: #EC4899; }

.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0,0,0,0.04); }
.cat-card:hover::before { height: 5px; }

.cat-icon { font-size: 40px; margin-bottom: 12px; display: block; transition: transform 0.3s; }
.cat-card:hover .cat-icon { transform: scale(1.15) rotate(-5deg); }

.cat-name { font-size: 13px; font-weight: 800; color: var(--dark); }
.cat-count { font-size: 11px; color: var(--mid); margin-top: 3px; font-weight: 600; }

/* ─── PRODUCTS ─── */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.prod-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--light-border);
  transition: all 0.25s; cursor: pointer;
}

.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,107,44,0.2); }

.prod-img {
  height: 175px; display: flex; align-items: center; justify-content: center;
  font-size: 68px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  transition: background 0.3s;
}

.prod-card:hover .prod-img { background: linear-gradient(135deg, #FFF1EB 0%, #FFF8E8 100%); }

.prod-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 6px; text-transform: uppercase;
}

.prod-badge.best { background: var(--primary); color: white; }
.prod-badge.sale { background: var(--teal); color: white; }
.prod-badge.new { background: var(--blue); color: white; }
.prod-badge.hot { background: var(--yellow); color: var(--dark); }

.prod-body { padding: 16px 18px 18px; }
.prod-cat { font-size: 11px; color: var(--mid); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.prod-name { font-size: 14px; font-weight: 800; color: var(--dark); line-height: 1.45; margin-bottom: 14px; }

.prod-foot { display: flex; justify-content: space-between; align-items: flex-end; }

.prod-prices {}
.prod-price { font-family: 'Righteous', cursive; font-size: 20px; color: var(--primary); }
.prod-price-old { font-size: 11px; color: #B0B8CC; text-decoration: line-through; margin-bottom: 1px; }

.prod-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #FF3A6E);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white; font-weight: 900;
  transition: all 0.2s; box-shadow: 0 4px 12px rgba(255,107,44,0.3);
  flex-shrink: 0;
}

.prod-btn:hover { transform: scale(1.12) rotate(10deg); }

/* ─── INSTAGRAM SECTION ─── */
.ig-wrap {
  padding: 0 48px 72px;
}

.ig-inner {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #1A2238 0%, #2D3A55 50%, #1A2E44 100%);
  padding: 52px 64px;
  position: relative;
}

/* Decorative blobs */
.ig-inner::before {
  content: '';
  position: absolute; top: -60px; right: 200px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,29,29,0.18), transparent 70%);
  pointer-events: none;
}

.ig-inner::after {
  content: '';
  position: absolute; bottom: -80px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(131,58,180,0.15), transparent 70%);
  pointer-events: none;
}

.ig-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; margin-bottom: 36px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

.ig-profile {
  display: flex; align-items: center; gap: 20px;
}

.ig-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 3px;
  display: flex; align-items: center; justify-content: center;
}

.ig-avatar-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--dark); display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}

.ig-name { font-family: 'Righteous', cursive; font-size: 22px; color: white; margin-bottom: 4px; }
.ig-handle { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 600; }
.ig-bio { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; line-height: 1.5; max-width: 300px; }

.ig-stats {
  display: flex; gap: 28px; align-items: flex-start;
}

.ig-stat { text-align: center; }
.ig-stat-num {
  font-family: 'Righteous', cursive; font-size: 22px;
  background: linear-gradient(135deg, #f09433, #bc1888);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ig-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

.ig-notice {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 28px; position: relative; z-index: 1;
}

.ig-notice-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.ig-notice-title { font-size: 14px; font-weight: 800; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.ig-notice-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.ig-preview-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  margin-bottom: 28px; position: relative; z-index: 1;
}

.ig-cell {
  aspect-ratio: 1/1; border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s; position: relative;
}

.ig-cell:hover { transform: scale(1.04); border-color: rgba(240,148,51,0.5); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.ig-cell:hover .ig-cell-overlay { opacity: 1; }

.ig-cell-emoji { font-size: 28px; }

.ig-cell img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 12px;
}

.ig-cell-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}

.ig-cell-overlay span { font-size: 20px; }

/* ig-thumb: foto instagram dari database (index.php) */
.ig-thumb {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
  position: relative;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.ig-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; border-radius: 12px;
}

.ig-thumb-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}

.ig-thumb:hover { transform: scale(1.04); border-color: rgba(240,148,51,0.5); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.ig-thumb:hover .ig-thumb-overlay { opacity: 1; }
.ig-thumb-overlay span { font-size: 20px; }

.ig-cell.ig-placeholder {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.ig-actions {
  display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1;
}

.ig-btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white; text-decoration: none;
  padding: 13px 28px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800;
  transition: all 0.25s; box-shadow: 0 6px 24px rgba(220,39,67,0.35);
}

.ig-btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(220,39,67,0.45); }

.ig-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 13px 28px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800;
  border: 1.5px solid rgba(255,255,255,0.15); transition: all 0.25s;
}

.ig-btn-ghost:hover { background: rgba(255,255,255,0.18); color: white; }

.ig-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(240,148,51,0.2); color: #f09433;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
  border: 1px solid rgba(240,148,51,0.3);
}

@media (max-width: 1024px) {
  .ig-wrap { padding: 0 20px 56px; }
  .ig-inner { padding: 36px 28px; }
  .ig-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-stats { gap: 16px; }
}

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.why-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

.why-card {
  background: white; border-radius: 20px; padding: 28px 22px;
  box-shadow: var(--shadow-md); border: 1.5px solid var(--light-border);
  transition: transform 0.3s;
}

.why-card:hover { transform: translateY(-4px); }

.why-card.big { grid-column: 1/-1; display: flex; align-items: center; gap: 20px; }

.why-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}

.why-card-icon.orange { background: rgba(255,107,44,0.12); }
.why-card-icon.teal { background: rgba(0,191,166,0.12); }
.why-card-icon.blue { background: rgba(43,158,255,0.12); }
.why-card-icon.yellow { background: rgba(255,210,63,0.18); }

.why-card-num { font-family: 'Righteous', cursive; font-size: 38px; margin-bottom: 4px; }
.why-card-num.orange { color: var(--primary); }
.why-card-num.teal { color: var(--teal); }
.why-card-num.blue { color: var(--blue); }

.why-card-label { font-size: 13px; color: var(--mid); font-weight: 700; }

.why-right {}
.why-right h2 {
  font-family: 'Righteous', cursive;
  font-size: clamp(36px, 3.5vw, 52px); line-height: 1.15; margin-bottom: 16px;
  color: var(--dark);
}

.why-right p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 36px; }

.features { display: flex; flex-direction: column; gap: 20px; }

.feat {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border-radius: 16px; padding: 20px;
  border: 1.5px solid var(--light-border); box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}

.feat:hover { transform: translateX(6px); border-color: rgba(255,107,44,0.25); }

.feat-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}

.feat-title { font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.feat-desc { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ─── TESTIMONY ─── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testi-card {
  background: white; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--light-border);
  transition: all 0.25s;
}

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

.testi-stars { margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }
.testi-quote { font-size: 14px; line-height: 1.8; color: #555; margin-bottom: 20px; font-style: italic; }

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

.testi-ava {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Righteous', cursive; font-size: 16px; color: white; flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 800; color: var(--dark); }
.testi-loc { font-size: 12px; color: var(--mid); font-weight: 600; }

/* ─── CONTACT STRIP ─── */
.contact-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #FF3A6E 100%);
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}

.contact-strip h2 {
  font-family: 'Righteous', cursive;
  font-size: clamp(28px, 3vw, 44px); color: white; line-height: 1.15;
}

.contact-strip h2 span { opacity: 0.7; font-size: 0.65em; display: block; font-family: 'Nunito', sans-serif; font-weight: 700; margin-bottom: 4px; letter-spacing: 1px; text-transform: uppercase; }

.contact-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

.cta-wa {
  display: flex; align-items: center; gap: 10px;
  background: white; color: var(--dark);
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cta-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.cta-tel {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.18); color: white;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3); transition: all 0.2s;
}

.cta-tel:hover { background: rgba(255,255,255,0.28); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); color: var(--white);
  padding: 72px 48px 36px;
}

.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr; gap: 52px; margin-bottom: 52px; }

.footer-brand-logo {
  font-family: 'Righteous', cursive; font-size: 24px; letter-spacing: 1px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--primary-light), var(--yellow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 260px; }

.footer-col h4 { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a { text-decoration: none; font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 600; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-light); }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 600; }
.footer-contact li .fi { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 600; }

.footer-socials { display: flex; gap: 10px; }

.soc-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all 0.2s; text-decoration: none;
}

.soc-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

/* ─── FLOATING WA ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px; border-radius: 18px;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.2s; text-decoration: none;
  animation: waBounce 3s ease-in-out infinite;
}

@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.wa-float:hover { animation: none; transform: scale(1.12); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }

/* Scroll animations */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left.in { opacity: 1; transform: translateX(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 20px 60px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 48px; }
  .section { padding: 60px 20px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { display: none; }
  .promo-wrap { padding: 0 20px 56px; }
  .promo-inner { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-strip { padding: 40px 20px; }
  footer { padding: 52px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ─── HAMBURGER (MOBILE) ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.nav-mobile-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-mobile-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    background: white; padding: 20px 24px;
    flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--light-border);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-links.open { display: flex !important; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--light-border); font-size: 15px; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-tel { display: none; }
}
/* ── Show More Products ──────────────────────────────────── */
.prod-card-hidden {
  display: none;
}
.prod-card-visible {
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.4s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.prod-show-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.prod-show-more-info {
  font-size: 14px;
  color: var(--gray);
}
.prod-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,44,0.08);
  border: 1px solid rgba(255,107,44,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}
.prod-count-num {
  font-weight: 700;
  font-size: 15px;
}
.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #FF3A6E 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(255,107,44,0.35);
}
.btn-show-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255,107,44,0.45);
}
.btn-show-more-arrow {
  font-size: 12px;
  transition: transform 0.3s;
}

/* ══════════════════════════════════════════════════════════
   PAGINATION PRODUK PILIHAN (index.php)
   ══════════════════════════════════════════════════════════ */
.prod-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding: 18px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--light-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.prod-pag-info {
  font-size: 13px;
  color: var(--mid);
  font-weight: 600;
}
.prod-pag-btns {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}
.prod-pag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1.5px solid var(--light-border);
  background: white;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark2);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  user-select: none;
}
.prod-pag-btn:hover:not(.disabled):not(.prod-pag-dots) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-pale);
  transform: translateY(-1px);
}
.prod-pag-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255,107,44,0.35);
}
.prod-pag-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.prod-pag-dots {
  pointer-events: none;
  opacity: 0.4;
  border: none !important;
  background: transparent !important;
  cursor: default;
}
@media (max-width: 600px) {
  .prod-pagination-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }
  .prod-pag-btns { flex-wrap: wrap; gap: 4px; }
  .prod-pag-btn { min-width: 34px; height: 34px; font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════
   MODAL KATEGORI PRODUK
   ══════════════════════════════════════════════════════════ */

/* Overlay */
.kat-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,34,56,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.kat-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Box */
.kat-modal-box {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
.kat-modal-overlay.active .kat-modal-box {
  transform: translateY(0) scale(1);
}

/* Header */
.kat-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--light-border);
  background: linear-gradient(135deg, #FFF1EB 0%, #FFF8F5 100%);
  flex-shrink: 0;
}
.kat-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.kat-modal-emoji {
  font-size: 38px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}
.kat-modal-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}
.kat-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}
.kat-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--light-border);
  background: white;
  color: var(--mid);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.kat-modal-close:hover { background: #FFE8E0; color: var(--primary); border-color: var(--primary); }

/* Search */
.kat-modal-search-wrap {
  padding: 16px 28px;
  border-bottom: 1px solid var(--light-border);
  flex-shrink: 0;
  background: white;
}
.kat-search-box {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 2px solid var(--light-border);
  border-radius: 50px;
  padding: 0 16px;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kat-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,107,44,0.1);
  background: white;
}
.kat-search-icon { font-size: 16px; flex-shrink: 0; }
.kat-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px 0;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  font-family: inherit;
}
.kat-search-input::placeholder { color: var(--mid); }
.kat-search-clear {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--mid);
  color: white;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.kat-search-clear:hover { background: var(--primary); }
.kat-modal-meta {
  font-size: 13px;
  color: var(--mid);
  margin-top: 8px;
  padding-left: 4px;
}

/* Body (scrollable) */
.kat-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  scroll-behavior: smooth;
}
.kat-modal-body::-webkit-scrollbar { width: 6px; }
.kat-modal-body::-webkit-scrollbar-track { background: transparent; }
.kat-modal-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

/* Loading */
.kat-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 0;
  color: var(--mid);
  font-size: 14px;
}
.kat-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,107,44,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: kat-spin 0.7s linear infinite;
}
@keyframes kat-spin { to { transform: rotate(360deg); } }

/* Empty state */
.kat-empty {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  gap: 10px;
  text-align: center;
}
.kat-empty-title { font-size: 18px; font-weight: 700; color: var(--dark); }
.kat-empty-sub   { font-size: 14px; color: var(--mid); }

/* Product Grid in Modal */
.kat-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Product Card in Modal */
.kat-prod-card {
  background: white;
  border: 1.5px solid var(--light-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  animation: katCardIn 0.35s ease both;
}
@keyframes katCardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kat-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,44,0.25);
}

.kat-prod-img {
  position: relative;
  background: linear-gradient(135deg, #FFF8F5 0%, #F7F9FC 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.kat-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kat-card-emoji { font-size: 44px; }

.kat-prod-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 1;
  letter-spacing: 0.3px;
}
.kat-badge-best { background: #FFF3CD; color: #856404; }
.kat-badge-sale { background: #D1F0E8; color: #0A6640; }
.kat-badge-new  { background: #CCE5FF; color: #0A4BAF; }
.kat-badge-hot  { background: #FFE0D6; color: #C0392B; }

.kat-prod-body  { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.kat-prod-name  { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.kat-prod-sub   { font-size: 12px; color: var(--mid); line-height: 1.3; }
.kat-prod-foot  { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.kat-prod-price { font-family: 'Righteous', cursive; font-size: 14px; color: var(--primary); font-weight: 700; }
.kat-prod-unit  { font-family: inherit; font-size: 11px; color: var(--mid); font-weight: 400; margin-left: 2px; }
.kat-prod-actions { display: flex; gap: 6px; }

.kat-btn-cart {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.kat-btn-cart:hover   { background: #E85A1E; transform: translateY(-1px); }
.kat-btn-cart.added   { background: var(--teal); }

.kat-btn-wa {
  width: 32px;
  height: 32px;
  background: #E8F8F2;
  color: #25D366;
  border: 1.5px solid rgba(37,211,102,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.kat-btn-wa:hover { background: #25D366; border-color: #25D366; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .kat-modal-box   { max-height: 95vh; border-radius: 20px 20px 0 0; margin-top: auto; align-self: flex-end; }
  .kat-modal-overlay { align-items: flex-end; padding: 0; }
  .kat-prod-grid   { grid-template-columns: repeat(2, 1fr); }
  .kat-modal-header { padding: 18px 20px; }
  .kat-modal-search-wrap { padding: 14px 20px; }
  .kat-modal-body  { padding: 18px 20px; }
  .kat-modal-title { font-size: 18px; }
}
@media (max-width: 480px) {
  .kat-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ── Search Bar Produk Pilihan ───────────────────────────── */
.prod-search-wrap {
  margin-bottom: 28px;
}
.prod-search-box {
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid var(--light-border);
  border-radius: 50px;
  padding: 0 20px;
  gap: 12px;
  max-width: 560px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.prod-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,107,44,0.1);
}
.prod-search-icon { font-size: 17px; flex-shrink: 0; }
.prod-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 0;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  font-family: inherit;
}
.prod-search-input::placeholder { color: var(--mid); }
.prod-search-clear {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--mid);
  color: white;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.prod-search-clear:hover { background: var(--primary); }
.prod-search-result {
  margin-top: 10px;
  padding-left: 4px;
  font-size: 14px;
  color: var(--mid);
}
.prod-search-result strong { color: var(--dark); }
