/* =============================================
   SHOP-HH — DESIGN SYSTEM GLOBAL
   ============================================= */

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

:root {
  --navy:       #071a33;
  --navy-2:     #0c2748;
  --navy-3:     #12395f;
  --gold:       #d9a928;
  --gold-light: #f4cf67;
  --gold-pale:  #fff4d4;
  --white:      #ffffff;
  --cream:      #f8f7f3;
  --bg:         #f5f6f8;
  --text:       #172033;
  --muted:      #667085;
  --border:     #e6e8ec;
  --success:    #16834b;
  --shadow-sm:  0 4px 12px rgba(7,26,51,.08);
  --shadow:     0 18px 50px rgba(7,26,51,.12);
  --shadow-lg:  0 30px 80px rgba(7,26,51,.18);
  --radius:     22px;
  --radius-sm:  12px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* ======================
   TOPBAR
====================== */
.topbar {
  background: var(--navy);
  color: white;
  font-size: 13px;
  padding: 9px 0;
}
.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar strong { color: var(--gold-light); }

/* ======================
   NAVBAR
====================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-content {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: var(--gold-pale); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dropdown-toggle::after {
  content: '▾';
  font-size: 11px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 200px;
  overflow: hidden;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}
.dropdown-menu a:last-child { border-bottom: none; }

.nav-cta {
  background: var(--navy);
  color: white;
  padding: 11px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* ======================
   HERO (HOME)
====================== */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(217,169,40,.18), transparent 30%),
    linear-gradient(135deg, #f8f9fb 0%, #fff 55%, #f7f3e8 100%);
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: var(--gold-pale);
  color: #80600b;
  border: 1px solid #f0d88c;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.6; transform:scale(1.3); }
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold); }
.hero-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 13px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #4c5565;
}
.trust-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

/* Hero Product Card */
.product-visual { position: relative; }
.hero-product-card {
  background: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
}
.hero-product-card img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  border-radius: 20px;
}
.floating-card {
  position: absolute;
  background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,.13);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.floating-card.one { left: -35px; top: 70px; }
.floating-card.two { right: -25px; bottom: 70px; }
.float-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: grid;
  place-items: center;
  font-size: 21px;
}
.floating-card strong { display:block; font-size:14px; color:var(--navy); }
.floating-card small { color: var(--muted); }

/* ======================
   BENEFITS BAR
====================== */
.benefits {
  background: var(--navy);
  color: white;
  padding: 22px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
}
.benefit-icon { font-size: 25px; }
.benefit strong { display:block; font-size:14px; }
.benefit span { font-size: 12px; color: #b9c5d4; }

/* ======================
   SECTIONS
====================== */
.section { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}
.section-label {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(28px,4vw,44px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); }

/* ======================
   CATEGORIES GRID
====================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,26,51,.75) 0%, transparent 60%);
}
.cat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 22px 24px;
}
.cat-info h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 4px;
}
.cat-info span {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

/* ======================
   PRODUCT CARDS GRID
====================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.product-img-wrap {
  position: relative;
  background: var(--cream);
  height: 260px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-info { padding: 22px; }
.product-cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
}
.product-price small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 2px;
}

/* ======================
   BUTTONS
====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 25px rgba(7,26,51,.18);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--navy-2); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { transform: translateY(-2px); background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 13px; }
.btn-full { width: 100%; }

/* ======================
   PRODUCT DETAIL PAGE
====================== */
.breadcrumb {
  padding: 18px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 8px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 40px 0 80px;
}
.detail-images { position: sticky; top: 95px; }
.main-img-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 14px;
}
.main-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: contain;
}
.thumb-row {
  display: flex;
  gap: 10px;
}
.thumb {
  width: 75px; height: 75px;
  background: var(--cream);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  overflow: hidden;
}
.thumb img { width:100%; height:100%; object-fit:contain; }
.thumb:hover, .thumb.active { border-color: var(--gold); }

.detail-info .product-cat { font-size:13px; margin-bottom:12px; }
.detail-info h1 {
  font-size: clamp(26px,3.5vw,40px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.price-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.price-main {
  font-size: 34px;
  font-weight: 900;
  color: var(--navy);
}
.price-unit { font-size: 15px; color: var(--muted); }

.detail-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.check-list { margin-bottom: 30px; }
.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e7f7ee;
  color: var(--success);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.qty-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.qty-picker {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--gold-pale); }
.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  color: var(--navy);
  background: transparent;
  outline: none;
}

/* Specs table on detail page */
.specs-table { width:100%; border-collapse:collapse; margin-top:10px; }
.specs-table tr { border-bottom:1px solid var(--border); }
.specs-table td {
  padding: 12px 8px;
  font-size: 14px;
}
.specs-table td:first-child { color:var(--muted); width:40%; }
.specs-table td:last-child { font-weight:600; color:var(--navy); }

/* ======================
   CATEGORY PAGE HERO
====================== */
.cat-hero {
  background: var(--navy);
  color: white;
  padding: 60px 0;
}
.cat-hero h1 {
  font-size: clamp(32px,5vw,55px);
  color: white;
  line-height: 1.1;
  margin-bottom: 14px;
}
.cat-hero p { color: #b9c5d4; font-size: 17px; max-width: 580px; }

/* ======================
   ORDER FORM
====================== */
.order-section { background: var(--bg); padding: 90px 0; }
.order-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.order-info {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 38px;
}
.order-info h3 { font-size: 24px; margin-bottom: 10px; }
.order-info p { color: #bdc9d8; font-size: 14px; }
.order-points { margin-top: 24px; }
.order-points li { padding: 10px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }

.form-card {
  background: white;
  padding: 38px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-card h3 { color: var(--navy); margin-bottom: 5px; font-size: 22px; }
.form-card .subtitle { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 15px; }
.form-group label { display:block; font-size:13px; font-weight:700; margin-bottom:6px; color:#344054; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dfe3e8;
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  outline: none;
  font: inherit;
  font-size: 14px;
  transition: var(--transition);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,169,40,.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ======================
   FOOTER
====================== */
.footer {
  background: #041326;
  color: #aeb9c8;
  padding: 55px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: #94a3b8; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 14px; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display:block; color:#94a3b8; font-size:13px; margin-bottom:10px; transition:var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #64748b;
  font-size: 13px;
}

/* ======================
   WHATSAPP FLOAT
====================== */
.whatsapp-float {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 27px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  z-index: 2000;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(37,211,102,.35); }

/* ======================
   UTILITIES
====================== */
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }

/* ======================
   RESPONSIVE
====================== */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:900px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0 60px; }
  .hero h1 { font-size: 42px; }
  .hero-product-card img { height: 360px; }
  .floating-card.one { left: 5px; }
  .floating-card.two { right: 5px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-images { position: static; }
  .order-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:600px) {
  .topbar-content { justify-content: center; }
  .topbar-content span { display: none; }
  .nav-content { height: 64px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-desc { font-size: 15px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .benefits-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 65px 0; }
}
