:root {
  --ink: #14161a;
  --muted: #6d737c;
  --line: #e7e8eb;
  --soft: #f6f7f8;
  --cream: #faf7ef;
  --accent: #ed6a45;
  --accent-dark: #d85331;
  --green: #178b59;
  --yellow: #ffd94a;
  --shadow: 0 16px 40px rgba(24, 28, 33, .09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.announcement {
  min-height: 30px;
  display: grid;
  place-items: center;
  background: #17191d;
  color: #f5f5f4;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 700;
}
.site-header {
  height: 74px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Manrope, sans-serif; font-weight: 800; letter-spacing: -.03em; }
.brand-mark {
  width: 32px; height: 32px; display: grid; place-items: center;
  border: 2px solid var(--ink); border-radius: 50%; font-weight: 800; font-size: 16px;
  position: relative;
}
.brand-mark::after { content:""; position:absolute; width:7px; height:7px; border-radius:50%; background: var(--accent); right:-2px; top:-2px; border:2px solid white; }
.desktop-nav { display:flex; gap: 28px; margin-left: auto; font-size: 14px; font-weight: 600; color: #3d4148; }
.desktop-nav a:hover { color: var(--accent-dark); }
.favorites-top { border:0; background:transparent; display:flex; align-items:center; gap:7px; font-weight:600; cursor:pointer; color:#30343a; }
.favorite-count { min-width:20px; height:20px; padding:0 5px; border-radius:999px; display:grid; place-items:center; background:var(--soft); font-size:11px; }
.hero { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); border-bottom: 1px solid #eee9dd; }
.hero-inner { padding: 84px 0 72px; max-width: 900px; }
.eyebrow, .section-kicker { color: var(--accent-dark); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: 11px; }
.eyebrow { display:flex; align-items:center; gap:8px; margin-bottom:20px; }
.hero h1 { font-family: Manrope, sans-serif; font-size: clamp(54px, 8vw, 94px); line-height: .94; letter-spacing: -.065em; margin: 0; max-width: 860px; }
.hero h1 span { color: var(--accent); }
.hero > .container > p, .hero-inner > p { max-width: 690px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.search-box { margin-top: 38px; max-width: 820px; }
.search-box > label { display:block; font-size:12px; font-weight:700; margin-bottom:8px; }
.search-row { background:#fff; border:1px solid #deddd9; border-radius: 16px; padding: 7px; display:flex; align-items:center; box-shadow: 0 10px 30px rgba(40,35,25,.06); }
.search-icon { font-size:25px; margin: 0 10px 0 8px; transform: rotate(-18deg); color:#4b5058; }
.search-row input { flex:1; border:0; outline:0; min-width:0; font-size:15px; padding:12px 4px; color:var(--ink); background:transparent; }
.search-row button { border:0; background:var(--ink); color:white; padding:14px 20px; border-radius:11px; font-weight:700; cursor:pointer; }
.search-row button:hover { background:#2a2d32; }
.trending { display:flex; gap:8px; align-items:center; margin-top:14px; font-size:12px; color:var(--muted); }
.trend-chip { border:1px solid #ddd9cf; background:#fffaf0; border-radius:999px; padding:7px 10px; cursor:pointer; font-size:12px; }
.hero-benefits { margin-top:36px; display:flex; gap:24px; flex-wrap:wrap; color:#4e535b; font-size:12px; font-weight:600; }
.featured-section { padding: 78px 0 68px; }
.section-heading-row, .catalog-title-row { display:flex; justify-content:space-between; align-items:flex-end; gap:20px; margin-top:10px; }
h2 { font-family: Manrope, sans-serif; font-size: clamp(30px, 4vw, 45px); line-height:1.08; letter-spacing:-.045em; margin:0; }
.section-heading-row p, .catalog-title-row p { color:var(--muted); margin:12px 0 0; font-size:13px; }
.live-status { border:1px solid var(--line); border-radius:999px; padding:8px 12px; color:#5d6269; font-size:11px; font-weight:700; display:flex; align-items:center; gap:7px; white-space:nowrap; }
.status-dot { width:7px; height:7px; background:#aeb3b9; border-radius:50%; }
.live-status.live .status-dot { background: var(--green); box-shadow:0 0 0 4px rgba(23,139,89,.10); }
.featured-card { margin-top:30px; display:grid; grid-template-columns: 42% 58%; min-height: 440px; border:1px solid var(--line); border-radius:22px; overflow:hidden; box-shadow:var(--shadow); background:white; }
.featured-media { position:relative; background:#f6f6f5; min-height:400px; display:grid; place-items:center; padding:28px; }
.featured-media img { width:100%; height:100%; max-height:400px; object-fit:contain; mix-blend-mode:multiply; }
.discount-badge { position:absolute; top:18px; left:18px; background:var(--accent); color:white; border-radius:999px; padding:8px 11px; font-size:11px; font-weight:800; }
.real-badge { position:absolute; top:18px; right:18px; background:white; border:1px solid #dcdde0; border-radius:999px; padding:7px 10px; font-size:10px; font-weight:800; }
.featured-content { padding: 42px 44px; display:flex; flex-direction:column; justify-content:center; }
.store-line { display:flex; align-items:center; gap:8px; font-size:12px; font-weight:700; color:#555b63; }
.store-dot { width:20px; height:20px; border-radius:5px; display:grid; place-items:center; background:var(--yellow); color:#303030; font-weight:800; font-size:10px; }
.featured-content h3, .product-content h3 { font-family:Manrope,sans-serif; letter-spacing:-.03em; }
.featured-content h3 { font-size:30px; line-height:1.15; margin:16px 0 10px; }
.rating { font-size:12px; font-weight:700; color:#4f545b; }
.rating .star { color:#f2a735; }
.price-wrap { display:flex; align-items:baseline; gap:13px; margin-top:25px; flex-wrap:wrap; }
.old-price { text-decoration:line-through; color:#8a8e94; font-size:15px; }
.current-price { font-family:Manrope,sans-serif; font-weight:800; font-size:40px; letter-spacing:-.04em; }
.price-note { margin-top:7px; color:#7b8087; font-size:11px; }
.price-change { display:inline-block; margin-left:7px; color:var(--green); font-weight:800; }
.shop-button { margin-top:28px; align-self:flex-start; background:var(--ink); color:white; border-radius:11px; padding:14px 18px; font-size:13px; font-weight:800; transition:.2s ease; }
.shop-button:hover { transform:translateY(-1px); background:#2a2d32; }
.affiliate-note { margin-top:16px; font-size:10px; color:#8b8e93; text-align:center; }
.featured-skeleton { height:440px; background:linear-gradient(90deg,#f4f4f4,#fafafa,#f4f4f4); border-radius:22px; margin-top:30px; animation:pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity:.55; } }
.catalog-section { background:#f7f7f6; border-top:1px solid #ececeb; padding:70px 0 84px; }
.category-pills { display:flex; gap:8px; margin-bottom:50px; }
.category-pill { border:1px solid #dfe0e2; background:white; border-radius:999px; padding:8px 12px; font-size:11px; font-weight:700; cursor:pointer; }
.category-pill.active { background:var(--ink); color:white; border-color:var(--ink); }
.filter-toggle { display:none; border:1px solid #d8dade; background:white; padding:10px 13px; border-radius:10px; font-weight:700; cursor:pointer; }
.sort-row { display:flex; align-items:center; gap:14px; margin:26px 0 18px; font-size:11px; color:var(--muted); }
.sort-buttons { display:flex; gap:7px; flex-wrap:wrap; }
.sort-buttons button { border:1px solid #dddee0; background:#fff; border-radius:9px; padding:8px 11px; font-size:11px; font-weight:700; cursor:pointer; color:#5a5f66; }
.sort-buttons button.active { background:#22252a; color:#fff; border-color:#22252a; }
.catalog-layout { display:grid; grid-template-columns: 245px 1fr; gap:22px; }
.filters { background:white; border:1px solid #e1e2e4; border-radius:15px; padding:18px; align-self:start; position:sticky; top:94px; }
.filters-head, .filters-mobile-head { display:flex; justify-content:space-between; align-items:center; font-size:12px; }
.filters-head button, .filters-mobile-head button { border:0; background:none; color:#70757c; font-size:11px; cursor:pointer; }
.filters-mobile-head { display:none; }
.filter-group { padding:18px 0; border-top:1px solid #eee; display:grid; gap:10px; font-size:11px; }
.filter-group:first-of-type { margin-top:12px; }
.filter-group > label:first-child { font-weight:800; color:#454a51; }
.check-row { display:flex; align-items:center; gap:8px; color:#5f646b; }
.check-row input { accent-color:#1f2227; }
.store-avatar { width:20px; height:20px; display:grid; place-items:center; background:var(--yellow); border-radius:5px; font-size:10px; color:#222; font-weight:800; }
.count-badge { margin-left:auto; font-size:10px; color:#999; }
#maxPrice { width:100%; accent-color:#24272c; }
.range-labels { display:flex; justify-content:space-between; color:#969ba2; font-size:9px; }
.apply-filter { width:100%; border:0; background:#24272c; color:white; border-radius:9px; padding:11px; font-size:11px; font-weight:800; cursor:pointer; }
.product-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:16px; }
.product-card { border:1px solid #e1e2e3; background:white; border-radius:16px; overflow:hidden; min-width:0; }
.product-media { height:255px; position:relative; display:grid; place-items:center; background:#f8f8f7; padding:22px; }
.product-media img { width:min(90%, 350px); height:auto; max-height:245px; object-fit:contain; mix-blend-mode:multiply; display:block; }
.product-media .discount-badge { top:12px; left:12px; padding:6px 9px; }
.product-media .real-badge { top:12px; left:76px; right:auto; background:#1f2227; color:#fff; border:0; }
.favorite-btn { position:absolute; right:12px; top:12px; width:34px; height:34px; border:1px solid #e1e2e4; border-radius:50%; background:white; display:grid; place-items:center; cursor:pointer; font-size:18px; }
.favorite-btn.active { color:var(--accent); background:#fff8f5; }
.product-content { padding:18px; }
.product-content h3 { font-size:18px; line-height:1.25; margin:11px 0 8px; }
.product-card .price-wrap { margin-top:16px; gap:8px; }
.product-card .current-price { font-size:28px; }
.shipping { margin-top:15px; padding-top:14px; border-top:1px solid #eee; color:#5d6269; font-size:11px; }
.product-card .shop-button { display:block; text-align:center; width:100%; margin-top:15px; }
.empty-state { border:1px dashed #d8dadd; background:white; border-radius:16px; padding:50px 24px; text-align:center; color:#71767d; grid-column:1/-1; }
.how-section { padding:76px 0; border-top:1px solid #eee; }
.how-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:34px; }
.how-grid article { padding:8px 10px; }
.how-grid article > span { color:var(--accent); font-family:Manrope,sans-serif; font-size:12px; font-weight:800; letter-spacing:.08em; }
.how-grid h3 { font-family:Manrope,sans-serif; font-size:22px; letter-spacing:-.03em; margin:10px 0 7px; }
.how-grid p { color:var(--muted); font-size:13px; margin:0; }
footer { background:#17191d; color:white; padding:50px 0; }
.footer-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:end; }
.footer-brand .brand-mark { border-color:white; }
.footer-brand .brand-mark::after { border-color:#17191d; }
footer p { color:#aaaeb4; font-size:12px; line-height:1.6; }
.legal { max-width:560px; margin-left:auto; }
.toast { position:fixed; left:50%; bottom:24px; transform:translate(-50%,18px); background:#1f2227; color:white; border-radius:10px; padding:11px 15px; font-size:11px; font-weight:700; opacity:0; pointer-events:none; transition:.22s ease; z-index:60; box-shadow:var(--shadow); }
.toast.show { opacity:1; transform:translate(-50%,0); }
@media (max-width: 900px) {
  .desktop-nav { display:none; }
  .favorites-top { margin-left:auto; }
  .hero-inner { padding:64px 0 58px; }
  .featured-card { grid-template-columns:1fr; }
  .featured-media { min-height:330px; }
  .featured-content { padding:30px; }
  .catalog-layout { grid-template-columns:1fr; }
  .filters { position:fixed; z-index:50; inset:0 0 0 auto; width:min(340px,90vw); border-radius:0; transform:translateX(105%); transition:.22s ease; overflow:auto; box-shadow:-20px 0 50px rgba(0,0,0,.15); }
  .filters.open { transform:translateX(0); }
  .filters-mobile-head { display:flex; padding-bottom:14px; }
  .filters-mobile-head button { font-size:26px; }
  .filter-toggle { display:inline-flex; }
}
@media (max-width: 680px) {
  .container { width:min(100% - 26px, 1180px); }
  .site-header { height:64px; }
  .brand { font-size:14px; }
  .brand-mark { width:29px; height:29px; }
  .favorites-top { font-size:0; gap:5px; }
  .favorites-top > span:first-child { font-size:22px; }
  .favorite-count { font-size:10px; }
  .hero h1 { font-size: clamp(50px,17vw,72px); }
  .hero-inner > p { font-size:15px; }
  .search-row { flex-wrap:wrap; }
  .search-icon { display:none; }
  .search-row input { width:100%; flex-basis:calc(100% - 0px); padding:13px 10px; }
  .search-row button { width:100%; }
  .hero-benefits { gap:10px 18px; }
  .section-heading-row { align-items:flex-start; flex-direction:column; }
  .live-status { align-self:flex-start; }
  .featured-content h3 { font-size:24px; }
  .current-price { font-size:35px; }
  .catalog-title-row { align-items:center; }
  .sort-row { align-items:flex-start; flex-direction:column; }
  .product-grid { grid-template-columns:1fr; }
  .product-media { height:290px; }
  .how-grid, .footer-grid { grid-template-columns:1fr; }
  .legal { margin-left:0; }
}
