/* ================================================
   COOL BONEZ — Premium Fashion Brand
   Palette: Navy Blue + Deep Brown + Warm Beige
   ================================================ */

:root {
  --navy: #0d1b2a;
  --navy-mid: #1b2d42;
  --navy-light: #2a4060;
  --brown: #3d2314;
  --brown-mid: #5c3520;
  --beige: #e8d5b7;
  --beige-light: #f5ece0;
  --beige-dark: #c9b090;
  --cream: #fdf8f2;
  --gold: #c4972a;
  --gold-light: #e0b84a;
  --white: #ffffff;
  --text: #1a1208;
  --text-muted: #6b5840;
  --border: rgba(61,35,20,0.12);
  --border-light: rgba(61,35,20,0.07);
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ---- NAV ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,151,42,0.15);
  transition: padding 0.3s;
}
#navbar.scrolled { padding: 12px 6vw; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; text-decoration: none;
}
.nav-logo img { height: 36px; width: 36px; object-fit: contain; border-radius: 50%; }
.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.1em;
  color: var(--beige);
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(232,213,183,0.65); text-decoration: none;
  cursor: pointer; transition: color 0.2s;
}
.nav-links a:hover { color: var(--beige); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-wa {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: white;
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.nav-wa:hover { background: #22c55e; transform: translateY(-1px); }

.cart-btn {
  background: rgba(232,213,183,0.1);
  border: 1px solid rgba(232,213,183,0.2);
  color: var(--beige); width: 38px; height: 38px;
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-btn:hover { background: rgba(232,213,183,0.2); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--beige); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--navy); z-index: 190;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 0.1em;
  color: var(--beige); text-decoration: none; cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-close {
  position: absolute; top: 24px; right: 6vw;
  background: none; border: none; font-size: 1.8rem;
  color: var(--beige); cursor: pointer;
}

/* ---- LOADING ---- */
.loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.loading-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
.loading-bar { width: 200px; height: 2px; background: rgba(232,213,183,0.2); border-radius: 2px; overflow: hidden; }
.loading-fill { height: 100%; background: var(--gold); animation: loadFill 1.2s ease forwards; }
@keyframes loadFill { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(0.96)} }

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: var(--beige);
  padding: 12px 24px; border-radius: 8px; font-size: 0.88rem;
  border: 1px solid rgba(196,151,42,0.3);
  opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 300;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- PAGE SYSTEM ---- */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  padding: 13px 32px; font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.1em;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s; border-radius: 4px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,151,42,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(232,213,183,0.4); color: var(--beige);
  padding: 12px 28px; font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.1em;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s; border-radius: 4px; background: transparent;
}
.btn-outline:hover { border-color: var(--beige); background: rgba(232,213,183,0.08); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); color: var(--brown);
  padding: 11px 24px; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; text-decoration: none; cursor: pointer;
  transition: all 0.25s; border-radius: 4px; background: transparent;
}
.btn-ghost:hover { border-color: var(--brown-mid); color: var(--brown-mid); }

.btn-order {
  width: 100%; background: var(--navy); color: var(--beige);
  padding: 16px; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.12em;
  border: none; cursor: pointer;
  transition: all 0.25s; border-radius: 4px; margin-top: 8px;
}
.btn-order:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,27,42,0.3); }
.btn-order:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---- SECTION COMMON ---- */
.section-tag {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.1; margin-bottom: 40px;
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(61,35,20,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-texture {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-img-col {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85; filter: contrast(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-img { transform: scale(1.03); }

.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 8vw 80px 60px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.9; color: var(--beige-light);
  letter-spacing: 0.02em; margin-bottom: 20px;
}
.hero-title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.1rem;
  color: rgba(232,213,183,0.65);
  margin-bottom: 40px; letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 6vw;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,213,183,0.4);
}
.hero-scroll-line { width: 36px; height: 1px; background: var(--gold); }

/* ---- MARQUEE ---- */
.marquee-bar {
  background: var(--brown); padding: 12px 0;
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(196,151,42,0.2);
  border-bottom: 1px solid rgba(196,151,42,0.2);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 0.95rem;
  color: var(--beige); padding: 0 24px;
}
.marquee-track .sep { color: var(--gold); font-style: normal; padding: 0 8px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---- BRAND SECTION ---- */
.brand-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--cream);
}
.brand-left { position: relative; overflow: hidden; background: var(--navy); }
.brand-img-stack { width: 100%; height: 100%; position: relative; }
.brand-img-main {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.75; filter: saturate(0.8);
}
.brand-img-accent {
  position: absolute;
  bottom: 32px; right: -20px;
  width: 48%; border: 4px solid var(--cream);
  object-fit: cover; height: 280px;
  box-shadow: -16px 16px 48px rgba(0,0,0,0.3);
}

.brand-right {
  padding: 80px 8vw;
  display: flex; flex-direction: column; justify-content: center;
}
.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.15; margin-bottom: 24px;
}
.brand-text {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-muted); margin-bottom: 16px;
}
.brand-motto {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.2rem;
  color: var(--brown); margin-top: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

/* ---- FEATURED ---- */
.featured-section {
  padding: 100px 6vw;
  background: var(--beige-light);
  border-top: 1px solid var(--border-light);
}
.featured-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  cursor: pointer; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(13,27,42,0.12); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy); color: var(--gold);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px;
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay-btn {
  background: var(--gold); color: var(--navy);
  padding: 10px 24px; font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.1em;
  border: none; cursor: pointer; border-radius: 2px;
}
.product-info { padding: 18px 16px; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.product-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.product-price-row { display: flex; align-items: center; gap: 10px; }
.product-price { font-size: 1rem; font-weight: 700; color: var(--brown); }
.product-old-price {
  font-size: 0.82rem; color: var(--text-muted);
  text-decoration: line-through;
}

/* ---- SHOP PAGE ---- */
.shop-header {
  padding: 120px 6vw 48px;
  background: var(--navy);
  border-bottom: 1px solid rgba(196,151,42,0.15);
}
.shop-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--beige-light); letter-spacing: 0.05em;
  line-height: 1;
}
.shop-count {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(232,213,183,0.45); margin-top: 8px;
}
.shop-body { padding: 60px 6vw 100px; background: var(--cream); }
.filter-row { display: flex; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 22px; border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent; color: var(--text-muted);
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); border-color: var(--navy);
  color: var(--beige);
}

/* ---- PRODUCT DETAIL ---- */
#product { background: var(--cream); padding-top: 72px; }
.pd-wrap { max-width: 1200px; margin: 0 auto; padding: 48px 6vw 100px; }
.pd-back {
  background: none; border: none; cursor: pointer;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.05em; margin-bottom: 40px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.pd-back:hover { color: var(--navy); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.pd-main-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb {
  width: 70px; height: 70px; object-fit: cover; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s; opacity: 0.7;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--gold); opacity: 1; }

.pd-brand {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.pd-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px; line-height: 1.2;
}
.pd-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 0.9rem;
  color: var(--text-muted); margin-bottom: 20px;
}
.pd-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.pd-price { font-size: 1.6rem; font-weight: 700; color: var(--brown); }
.pd-price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.pd-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pd-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.sizes-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.size-btn {
  width: 48px; height: 48px;
  border: 1.5px solid var(--border);
  background: none; color: var(--text);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.size-btn:hover { border-color: var(--navy); color: var(--navy); }
.size-btn.active { background: var(--navy); border-color: var(--navy); color: var(--beige); }
.qty-row { display: flex; align-items: center; gap: 0; margin-bottom: 24px; width: fit-content; }
.qty-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border); background: none;
  color: var(--text); font-size: 1.2rem; cursor: pointer;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--navy); color: var(--beige); border-color: var(--navy); }
.qty-val {
  width: 56px; height: 44px; text-align: center;
  border: 1.5px solid var(--border); border-left: none; border-right: none;
  background: none; font-size: 0.95rem; font-weight: 600;
  color: var(--text); -moz-appearance: textfield;
}
.qty-val::-webkit-inner-spin-button { -webkit-appearance: none; }

.pd-wa-btn {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 12px; padding: 13px;
  border: 1.5px solid rgba(37,211,102,0.3);
  color: #128C7E; text-decoration: none; font-size: 0.88rem; font-weight: 600;
  transition: all 0.2s; border-radius: 4px;
}
.pd-wa-btn:hover { background: rgba(37,211,102,0.06); border-color: rgba(37,211,102,0.6); }

/* ---- ORDER PAGE ---- */
#order { background: var(--cream); padding-top: 72px; }
.order-wrap { max-width: 680px; margin: 0 auto; padding: 48px 6vw 100px; }
.order-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; letter-spacing: 0.05em;
  color: var(--navy); margin-bottom: 8px;
}
.order-summary {
  background: var(--navy); color: var(--beige);
  padding: 20px 24px; margin-bottom: 32px;
  border-radius: 4px;
}
.order-summary-row { display: flex; justify-content: space-between; align-items: center; }
.order-summary-row + .order-summary-row { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(232,213,183,0.1); }
.order-summary-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,213,183,0.55); }
.order-summary-val { font-weight: 600; color: var(--beige); }
.order-summary-total { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--gold); letter-spacing: 0.05em; }

/* ---- FORM STYLES ---- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-input {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--border); color: var(--text);
  padding: 12px 14px; font-family: 'Jost', sans-serif;
  font-size: 0.92rem; outline: none;
  transition: border-color 0.2s; border-radius: 4px;
}
.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,27,42,0.08); }
.form-input::placeholder { color: var(--text-muted); opacity: 0.5; }
.form-select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-error { display: block; font-size: 0.75rem; color: #c0392b; margin-top: 4px; min-height: 16px; }

/* ---- CONFIRM PAGE ---- */
#confirm { background: var(--cream); padding-top: 72px; }
.confirm-wrap { max-width: 560px; margin: 0 auto; padding: 60px 6vw 100px; text-align: center; }
.confirm-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-size: 2rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.confirm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; letter-spacing: 0.05em;
  color: var(--navy); margin-bottom: 12px;
}
.confirm-sub { font-size: 0.92rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 36px; }

.payment-box {
  background: var(--navy); color: var(--beige);
  padding: 28px; text-align: left; margin-bottom: 24px;
  border-radius: 8px;
}
.pbox-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(196,151,42,0.2);
}
.pbox-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(232,213,183,0.08);
  gap: 12px;
}
.pbox-row:last-child { border-bottom: none; }
.pbox-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(232,213,183,0.5); }
.pbox-val { font-weight: 600; font-size: 0.95rem; }
.pbox-big { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--gold); letter-spacing: 0.05em; }
.copy-btn {
  background: rgba(196,151,42,0.15); border: 1px solid rgba(196,151,42,0.3);
  color: var(--gold); padding: 4px 12px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.08em; cursor: pointer;
  border-radius: 4px; transition: all 0.2s;
}
.copy-btn:hover { background: rgba(196,151,42,0.25); }

.btn-wa-confirm {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  background: #25D366; color: white;
  padding: 16px; width: 100%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: 0.1em;
  text-decoration: none; border-radius: 4px;
  transition: all 0.2s;
}
.btn-wa-confirm:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

/* ---- ADMIN ---- */
#admin { background: var(--beige-light); min-height: 100vh; padding-top: 72px; }
.admin-login-wrap {
  max-width: 440px; margin: 0 auto;
  padding: 80px 6vw;
}
.al-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; letter-spacing: 0.08em; color: var(--navy);
  margin-bottom: 8px;
}
.al-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 32px; }

.admin-dash { max-width: 1200px; margin: 0 auto; padding: 48px 6vw 100px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.dash-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 0.08em; color: var(--navy);
}
.btn-logout {
  background: none; border: 1.5px solid var(--border);
  color: var(--text-muted); padding: 8px 20px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.2s; border-radius: 4px;
}
.btn-logout:hover { border-color: var(--navy); color: var(--navy); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 24px 20px; border-radius: 8px;
}
.stat-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.stat-val { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.05em; color: var(--navy); }

.admin-tabs { display: flex; gap: 0; margin-bottom: 32px; border-bottom: 2px solid var(--border); }
.atab {
  padding: 12px 28px; background: none; border: none;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all 0.2s;
}
.atab.active, .atab:hover { color: var(--navy); border-bottom-color: var(--navy); }

.admin-section { display: none; }
.admin-section.active { display: block; }
.section-actions { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.section-actions h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.08em; color: var(--navy); }

.table-wrap { overflow-x: auto; border-radius: 8px; border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; background: var(--white); }
.data-table th {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 14px 16px; text-align: left;
  background: var(--beige-light); border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  font-size: 0.85rem; padding: 14px 16px;
  border-bottom: 1px solid var(--border-light); color: var(--text);
  white-space: nowrap;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--beige-light); }

.status-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 100px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.status-pending { background: rgba(196,151,42,0.15); color: #8a6700; }
.status-confirmed { background: rgba(34,197,94,0.12); color: #166534; }
.status-shipped { background: rgba(59,130,246,0.12); color: #1e40af; }
.status-delivered { background: rgba(139,92,246,0.12); color: #5b21b6; }

.status-select {
  font-size: 0.75rem; border: 1px solid var(--border);
  background: var(--white); padding: 4px 8px;
  border-radius: 4px; cursor: pointer; color: var(--text);
}

.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px; margin-top: 32px;
}
.form-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.form-card-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.08em; color: var(--navy); }
.btn-close-form { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-muted); }

.img-upload-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.img-slot {
  width: 80px; height: 80px; position: relative;
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.img-slot img { width: 100%; height: 100%; object-fit: cover; }
.img-slot-remove {
  position: absolute; top: 3px; right: 3px;
  background: rgba(0,0,0,0.6); color: white;
  border: none; width: 20px; height: 20px;
  border-radius: 50%; cursor: pointer; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}
.img-slot-add {
  width: 80px; height: 80px;
  border: 1.5px dashed var(--beige-dark);
  border-radius: 4px; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s;
}
.img-slot-add:hover { border-color: var(--navy); color: var(--navy); }

.product-table { width: 100%; border-collapse: collapse; }
.product-table th { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.product-table td { padding: 14px; border-bottom: 1px solid var(--border-light); font-size: 0.85rem; vertical-align: middle; }
.product-table tr:last-child td { border-bottom: none; }
.product-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; }
.btn-edit { background: none; border: 1px solid var(--border); padding: 5px 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; cursor: pointer; border-radius: 4px; color: var(--navy); transition: all 0.2s; margin-right: 6px; }
.btn-edit:hover { background: var(--navy); color: var(--beige); border-color: var(--navy); }
.btn-del { background: none; border: 1px solid rgba(192,57,43,0.25); padding: 5px 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; cursor: pointer; border-radius: 4px; color: #c0392b; transition: all 0.2s; }
.btn-del:hover { background: #c0392b; color: white; border-color: #c0392b; }

/* ---- FOOTER ---- */
footer { background: var(--navy); padding: 60px 6vw 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(232,213,183,0.08); }
.footer-logo { height: 48px; width: 48px; object-fit: contain; border-radius: 50%; margin-bottom: 12px; }
.footer-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em; color: var(--beige); margin-bottom: 4px; }
.footer-motto { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.85rem; color: rgba(232,213,183,0.5); }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 0.85rem; color: rgba(232,213,183,0.6); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: var(--beige); }
.social-wa { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(37,211,102,0.15); border-radius: 50%; color: #25D366; transition: all 0.2s; }
.social-wa:hover { background: #25D366; color: white; }
.footer-bottom { padding: 20px 0; font-size: 0.72rem; color: rgba(232,213,183,0.25); letter-spacing: 0.05em; }

/* ---- WA FLOAT ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  background: #25D366; color: white;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 100;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }

/* ---- ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-img-col { height: 60vw; }
  .hero-content { padding: 48px 6vw; }
  .brand-section { grid-template-columns: 1fr; }
  .brand-img-accent { display: none; }
  .brand-img-main { height: 400px; }
  .brand-right { padding: 48px 6vw; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pd-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
  .nav-links { display: none; }
  .nav-wa { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 4rem; }
}
