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

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

:root {
  --navy: #0C1D30;
  --navy-muted: #5B6B7D;
  --navy-tint: #EAEEF3;
  --orange: #FE8602;
  --orange-text: #D96F00;
  --orange-tint: #FFF1E0;
  --border: #E7E9EC;
  --offwhite: #FAFAFA;
  --white: #FFFFFF;
}

body {
  font-family: 'Inter', sans-serif;
  background: #E9ECEF;
  color: var(--navy);
}

.site-wrap {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 0 1px var(--border);
}

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

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  height: 66px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo-img { height: 38px; width: auto; display: block; }
.nav-search { flex: 1; max-width: 380px; position: relative; }
.nav-search input {
  width: 100%;
  padding: 8px 14px 8px 36px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--offwhite);
  outline: none;
}
.nav-search input:focus { border-color: var(--orange); background: #fff; }
.nav-search i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--navy-muted); font-size: 15px; }
.nav-cats { display: flex; gap: 2px; }
.nav-cat { font-size: 13px; font-weight: 500; color: var(--navy-muted); padding: 5px 10px; border-radius: 6px; cursor: pointer; white-space: nowrap; }
.nav-cat:hover { color: var(--navy); background: var(--offwhite); }
.nav-cat.active { color: var(--orange-text); font-weight: 700; }
.nav-right { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.btn-nav-ghost { padding: 6px 14px; border: 1.5px solid var(--border); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--navy); background: #fff; cursor: pointer; }
.btn-nav-orange { padding: 6px 16px; border: none; border-radius: 20px; font-size: 13px; font-weight: 700; color: #fff; background: var(--orange); cursor: pointer; }

/* ---------- HERO ---------- */
.hero { background: #fff; padding: 52px 28px 44px; text-align: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--orange-tint); color: var(--orange-text); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 26px; letter-spacing: 0.03em; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 1.3s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.hero-logo { width: 100%; max-width: 460px; height: auto; display: block; margin: 0 auto 26px; }
.hero-sub { font-size: 16px; color: var(--navy-muted); max-width: 460px; margin: 0 auto 26px; line-height: 1.65; }
.hero-sub strong { color: var(--navy); font-weight: 600; }
.hero-ctas { display: flex; gap: 10px; justify-content: center; align-items: center; }
.btn-hero-orange { padding: 12px 26px; background: var(--orange); color: #fff; font-size: 14px; font-weight: 700; border-radius: 24px; border: none; cursor: pointer; }
.btn-hero-ghost { padding: 12px 22px; background: #fff; color: var(--navy); font-size: 14px; font-weight: 600; border-radius: 24px; border: 1.5px solid var(--border); cursor: pointer; }

/* ---------- TICKER ---------- */
.ticker-wrap { background: var(--navy); padding: 9px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 30s linear infinite; }
.tick { display: inline-flex; align-items: center; gap: 8px; padding: 0 28px; font-size: 12.5px; color: rgba(255,255,255,0.7); font-weight: 500; }
.tick-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- GENERIC SECTION ---------- */
.section { padding: 44px 28px; }
.section-alt { background: var(--offwhite); }
.sec-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.sec-title { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.4px; }
.sec-title em { color: var(--orange); font-style: normal; }
.sec-link { font-size: 13px; color: var(--orange-text); font-weight: 700; cursor: pointer; }

/* ---------- CATEGORY STRIP ---------- */
.cat-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.cat-strip::-webkit-scrollbar { display: none; }
.cat-chip { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; cursor: pointer; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--border); background: #fff; min-width: 84px; }
.cat-chip:hover, .cat-chip.on { border-color: var(--orange); background: var(--orange-tint); }
.cat-chip-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--navy-tint); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--navy); }
.cat-chip-name { font-size: 12px; font-weight: 600; color: var(--navy); text-align: center; }

/* ---------- PRODUCT CARDS (rich, homepage-style) ---------- */
.pgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pcard { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #fff; cursor: pointer; transition: transform .15s, box-shadow .15s; }
.pcard:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(12,29,48,0.08); }
.pcard-img { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; position: relative; }
.pcard-img i { font-size: 36px; }
.pcard-img-tag { position: absolute; top: 9px; left: 9px; font-size: 9.5px; font-weight: 700; padding: 3px 8px; border-radius: 10px; letter-spacing: 0.03em; }
.tag-viral { background: var(--orange); color: #fff; }
.tag-hot { background: var(--navy); color: #fff; }
.tag-rising { background: var(--orange-tint); color: var(--orange-text); }
.tag-new { background: var(--navy-tint); color: var(--navy); }
.tag-classic { background: var(--navy); color: #fff; }
.pcard-save { position: absolute; bottom: 9px; right: 9px; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--navy); }
.pcard-body { padding: 11px 12px 13px; }
.pcard-cat-label { font-size: 9.5px; font-weight: 700; color: var(--orange-text); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.pcard-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; line-height: 1.3; }
.pcard-desc { font-size: 11px; color: var(--navy-muted); line-height: 1.4; margin-bottom: 9px; min-height: 28px; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.pcard-growth { font-size: 11px; font-weight: 700; color: var(--orange-text); }
.pcard-cta { font-size: 10.5px; font-weight: 600; color: var(--navy); background: var(--navy-tint); padding: 3px 8px; border-radius: 10px; cursor: pointer; white-space: nowrap; }

/* ---------- COMPACT CARDS (browse-all grid) ---------- */
.pgrid-compact { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.pcard-compact { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: #fff; cursor: pointer; }
.pcard-compact:hover { border-color: var(--orange); }
.pcard-compact .pcard-img { aspect-ratio: 1/1; }
.pcard-compact .pcard-img i { font-size: 24px; }
.pcard-compact .pcard-body { padding: 8px 9px 10px; }
.pcard-compact .pcard-name { font-size: 11.5px; }

/* ---------- BROWSE TOOLBAR ---------- */
.page-head { padding: 28px 28px 0; }
.page-title { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.page-title em { color: var(--orange); font-style: normal; }
.page-sub { font-size: 14px; color: var(--navy-muted); margin-top: 6px; max-width: 560px; line-height: 1.6; }
.search-standalone { position: relative; margin: 18px 0; }
.search-standalone input { width: 100%; padding: 12px 16px 12px 40px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-family: 'Inter', sans-serif; background: var(--offwhite); outline: none; }
.search-standalone input:focus { border-color: var(--orange); }
.search-standalone i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--navy-muted); }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.ftab { padding: 7px 14px; border-radius: 20px; font-size: 12.5px; font-weight: 600; border: 1.5px solid var(--border); color: var(--navy-muted); cursor: pointer; background: #fff; }
.ftab.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.results-bar { font-size: 12.5px; color: var(--navy-muted); margin-bottom: 16px; font-weight: 600; }

/* ---------- EDITORIAL ---------- */
.edit-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.edit-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); cursor: pointer; background: #fff; }
.edit-img { width: 100%; height: 150px; display: flex; align-items: center; justify-content: center; }
.edit-img i { font-size: 44px; color: var(--navy); }
.edit-body { padding: 14px; }
.edit-tag { font-size: 10px; font-weight: 700; color: var(--orange-text); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.edit-title { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 4px; }
.edit-title.lg { font-size: 18px; }
.edit-meta { font-size: 11px; color: var(--navy-muted); }

/* ---------- NEWSLETTER ---------- */
.nl { background: var(--navy); padding: 52px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.nl-left h2 { font-size: 27px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 10px; }
.nl-left h2 em { color: var(--orange); font-style: normal; }
.nl-left p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.nl-form { display: flex; border-radius: 10px; overflow: hidden; margin-bottom: 10px; }
.nl-input { flex: 1; padding: 13px 16px; font-size: 14px; border: none; outline: none; font-family: 'Inter', sans-serif; background: rgba(255,255,255,0.1); color: #fff; }
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-btn { padding: 13px 22px; background: var(--orange); color: #fff; font-size: 14px; font-weight: 700; border: none; cursor: pointer; font-family: 'Inter', sans-serif; white-space: nowrap; }
.nl-perks { display: flex; gap: 16px; flex-wrap: wrap; }
.nl-perk { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--border); padding: 28px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-logo-img { height: 24px; width: auto; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-link { font-size: 12px; color: var(--navy-muted); cursor: pointer; }
.footer-link:hover { color: var(--navy); }
.footer-copy { font-size: 12px; color: var(--border); }
.footer-disclosure { width: 100%; font-size: 11px; color: var(--navy-muted); text-align: center; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 4px; }

/* ---------- PRODUCT DETAIL PAGE ---------- */
.breadcrumb { font-size: 12px; color: var(--navy-muted); padding: 18px 28px 0; }
.breadcrumb .sep { margin: 0 6px; color: var(--border); }
.breadcrumb .current { color: var(--navy); font-weight: 600; }
.detail-hero { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 20px 28px 8px; align-items: center; }
.detail-icon-tile { width: 100%; aspect-ratio: 1; border-radius: 20px; display: flex; align-items: center; justify-content: center; background: var(--orange-tint); overflow: hidden; }
.pcard-img img, .detail-icon-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-icon-tile.photo-tile { aspect-ratio: 4/5; background: var(--offwhite); }
.gallery-row { padding: 4px 28px 8px; }
.gallery-label { font-size: 11px; font-weight: 700; color: var(--navy-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 520px; }
.gallery-thumb { aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background: var(--offwhite); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; } }
.illo-wrap { position: relative; width: 66%; height: 66%; display: flex; align-items: center; justify-content: center; }
.illo-wrap svg { width: 100%; height: 100%; }
.illo-badge { position: absolute; bottom: -6px; right: -6px; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--navy); }
.detail-icon-tile .illo-wrap { width: 60%; height: 60%; }
.detail-icon-tile .illo-badge { width: 40px; height: 40px; font-size: 18px; bottom: -8px; right: -8px; }
.detail-icon-tile i { font-size: 84px; color: var(--navy); }
.detail-brand { font-size: 12.5px; color: var(--navy-muted); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.detail-title { font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 8px; }
.detail-tag { display: inline-block; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 10px; margin-bottom: 12px; letter-spacing: 0.03em; }
.detail-tagline { font-size: 14.5px; color: var(--navy-muted); line-height: 1.65; margin-bottom: 16px; max-width: 520px; }
.detail-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-detail-orange { padding: 11px 22px; background: var(--orange); color: #fff; font-size: 13.5px; font-weight: 700; border-radius: 20px; border: none; cursor: pointer; }
.btn-detail-ghost { padding: 11px 20px; background: #fff; color: var(--navy); font-size: 13.5px; font-weight: 600; border-radius: 20px; border: 1.5px solid var(--border); cursor: pointer; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 20px 28px 8px; }
.stat-box { border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.stat-num { font-size: 19px; font-weight: 800; color: var(--navy); }
.stat-num em { color: var(--orange); font-style: normal; }
.stat-label { font-size: 10.5px; color: var(--navy-muted); margin-top: 3px; line-height: 1.4; }
.narrative { padding: 24px 28px 8px; max-width: 720px; }
.narrative h2 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.narrative p { font-size: 13.5px; color: var(--navy-muted); line-height: 1.75; margin-bottom: 12px; }
.detail-overview { font-size: 15px; color: var(--navy); line-height: 1.7; padding: 4px 28px 8px; max-width: 720px; font-weight: 500; }
.where-head { padding: 20px 28px 12px; font-size: 16px; font-weight: 800; color: var(--navy); }
.where-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0 28px 8px; }
.where-card { border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.where-card i { color: var(--orange-text); font-size: 19px; margin-bottom: 8px; display: block; }
.where-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.where-desc { font-size: 12px; color: var(--navy-muted); line-height: 1.55; }
.rel-head { padding: 28px 28px 14px; font-size: 16px; font-weight: 800; color: var(--navy); }
.source-note { font-size: 11px; color: var(--navy-muted); padding: 0 28px 24px; font-style: italic; }

/* ---------- GIFT GUIDES ---------- */
.guide-head { padding: 32px 28px 8px; }
.guide-eyebrow { font-size: 12px; font-weight: 700; color: var(--orange-text); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.guide-title { font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -0.6px; line-height: 1.2; max-width: 760px; }
.guide-title em { color: var(--orange); font-style: normal; }
.guide-intro { font-size: 15px; color: var(--navy-muted); line-height: 1.75; max-width: 700px; margin-top: 14px; }
.guide-meta { font-size: 12px; color: var(--navy-muted); margin-top: 14px; }
.guide-list { padding: 24px 28px 40px; display: flex; flex-direction: column; gap: 22px; }
.guide-item { display: grid; grid-template-columns: 40px 140px 1fr; gap: 20px; align-items: start; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.guide-item:last-child { border-bottom: none; }
.guide-num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.guide-thumb { width: 140px; height: 140px; border-radius: 14px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.guide-thumb img { width: 100%; height: 100%; object-fit: cover; }
.guide-body-name { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.guide-body-name a { text-decoration: none; color: inherit; }
.guide-body-name a:hover { color: var(--orange-text); }
.guide-body-desc { font-size: 14px; color: var(--navy-muted); line-height: 1.65; margin-bottom: 10px; }
.guide-body-links { display: flex; gap: 10px; align-items: center; }
.btn-guide-orange { padding: 8px 16px; background: var(--orange); color: #fff; font-size: 12.5px; font-weight: 700; border-radius: 16px; border: none; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-guide-ghost { padding: 8px 14px; background: #fff; color: var(--navy); font-size: 12.5px; font-weight: 600; border-radius: 16px; border: 1.5px solid var(--border); cursor: pointer; text-decoration: none; display: inline-block; }
.guide-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 0 28px 40px; }
.guide-hub-card { border: 1px solid var(--border); border-radius: 14px; padding: 22px; text-decoration: none; display: block; }
.guide-hub-card:hover { border-color: var(--orange); }
.guide-hub-card-title { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.guide-hub-card-desc { font-size: 13px; color: var(--navy-muted); line-height: 1.6; }
@media (max-width: 700px) {
  .guide-item { grid-template-columns: 1fr; }
  .guide-thumb { width: 100%; height: 180px; }
  .guide-hub-grid { grid-template-columns: 1fr; }
}
.links-row { padding: 4px 28px 28px; }
.links-label { font-size: 11px; font-weight: 700; color: var(--navy-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.links-list { display: flex; gap: 10px; flex-wrap: wrap; }
.link-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--navy); background: var(--offwhite); border: 1px solid var(--border); padding: 6px 12px; border-radius: 20px; }
.link-chip:hover { border-color: var(--orange); color: var(--orange-text); }
.link-chip i { font-size: 12px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .pgrid-compact { grid-template-columns: repeat(3, 1fr); }
  .edit-grid { grid-template-columns: 1fr; }
  .nl { grid-template-columns: 1fr; }
  .detail-hero { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .where-grid { grid-template-columns: 1fr; }
  .nav-search, .nav-cats { display: none; }
}
