/* PETROCRIB — rebuilt from Shopify theme settings
   scheme-3: bg #000, text/accent #fcd019, buttons pill radius 40, cards radius 18
   fonts: Bungee (headings) + Bayon (body) */

:root {
  --bg: #000000;
  --ink: #fcd019;
  --paper: #ffffff;
  --navy: #0e1b4d;
  --red: #e32402;
  --card-r: 18px;
  --pill-r: 40px;
  --page-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--paper);
  font-family: 'Bayon', system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: .02em;
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Bungee', cursive;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: .01em;
}

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

.wrap { max-width: var(--page-w); margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(252,208,25,.25);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 89px;
}
.logo { perspective: 600px; display: inline-block; }
.logo-img {
  height: 52px; width: auto; display: block;
  will-change: transform;
  transition: transform .18s ease-out;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.45));
}
.logo3d {
  display: inline-block;
  font-family: 'Bungee', cursive;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: .01em;
  line-height: 1;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .18s ease-out;
  text-shadow:
    1px 1px 0 #161616, 2px 2px 0 #161616, 3px 3px 0 #161616,
    4px 4px 0 #161616, 5px 5px 0 #161616, 6px 6px 0 #161616,
    10px 12px 16px rgba(0,0,0,.5);
}
@media (hover: none) {
  .logo-img { animation: logoSway 5.5s ease-in-out infinite; }
}
@keyframes logoSway {
  0%, 100% { transform: perspective(600px) rotateY(-9deg) rotateX(2deg); }
  50%      { transform: perspective(600px) rotateY(9deg) rotateX(-2deg); }
}
.nav { display: flex; gap: 28px; font-size: 17px; text-transform: uppercase; }
.nav a { color: var(--paper); opacity: .85; transition: .2s; }
.nav a:hover, .nav a:focus-visible { color: var(--ink); opacity: 1; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 64px;
  background: url("assets/img/chitram/field.svg") center bottom / cover no-repeat, linear-gradient(#e85d04,#d00000);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.05) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-split { grid-template-columns: 1fr; }
.hero-copy { max-width: 52%; }
.hero-bees { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-title-img { width: min(260px, 60%); margin-bottom: 10px; filter: drop-shadow(0 6px 8px rgba(0,0,0,.4)); }
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}
.hero p {
  max-width: 520px; margin: 0 0 28px;
  color: rgba(255,255,255,.75);
  font-size: 20px;
}
.hero .btn { font-size: 18px; }

/* Chitram artwork as right-side hero background */
.hero-art {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
  z-index: 1;
  display: block;
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
  will-change: transform;
}
.hero-art .trend-badge { opacity: 0; transition: .25s; }
.hero-art:hover .trend-badge { opacity: 1; }
.cs-bee {
  position: absolute;
  will-change: transform;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
  filter: drop-shadow(0 12px 14px rgba(0,0,0,.45)) drop-shadow(0 3px 4px rgba(0,0,0,.35));
  animation: buzz 3.4s ease-in-out infinite;
}
.cs-bee.b3 { filter: blur(.6px) drop-shadow(0 8px 10px rgba(0,0,0,.4)); }
.cs-bee.b1 { width: 130px; top: 12%; left: 4%; }
.cs-bee.b2 { width: 88px; top: 6%; right: 4%; animation-delay: -1.2s; transform: scaleX(-1); }
.cs-bee.b3 { width: 52px; top: 10%; right: 38%; animation-delay: -2.2s; }
@keyframes buzz {
  0%,100% { margin-top: 0; margin-left: 0; }
  30% { margin-top: -12px; margin-left: 5px; }
  60% { margin-top: -4px; margin-left: -6px; }
  80% { margin-top: -14px; margin-left: 2px; }
}
@keyframes flutter {
  0%,100% { rotate: -7deg; }
  50% { rotate: 7deg; }
}
.cs-bee { animation: buzz 3.2s ease-in-out infinite, flutter 1.1s ease-in-out infinite; }
.trend-badge {
  position: absolute; z-index: 5;
  bottom: 18px; right: 18px;
  background: var(--ink); color: #000;
  font-family: 'Bungee', cursive; font-size: 12px;
  padding: 8px 16px; border-radius: var(--pill-r);
}


/* yellow scrolling strip */
.marquee {
  background: var(--ink);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  font-family: 'Bungee', cursive;
  color: #000;
  font-size: 16px;
  gap: 0;
}
.marquee-track em { display: inline-flex; font-style: normal; }
.marquee-track span { padding: 0 44px; letter-spacing: .14em; }
.marquee-track i { font-style: normal; opacity: .8; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- buttons (pill, theme radius 40) ---------- */
.btn {
  display: inline-block;
  font-family: 'Bungee', cursive;
  font-size: 15px;
  background: var(--ink);
  color: #000;
  border: 1px solid var(--ink);
  border-radius: var(--pill-r);
  padding: 14px 34px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(252,208,25,.35);
}
.btn.secondary {
  background: transparent;
  color: var(--ink);
}
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- product grid ---------- */
.section-title {
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  margin: 48px 0 26px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
  padding-bottom: 72px;
}
.card {
  background: #0a0a0a;
  border: 1px solid rgba(252,208,25,.9);
  border-radius: var(--card-r);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px) scale(1.1); box-shadow: 0 10px 0 rgba(252,208,25,.25); z-index: 4; position: relative; }
.card .thumb {
  aspect-ratio: 1/1;
  background: #111;
  padding: 16px; /* theme card_image_padding */
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.card .meta { padding: 6px 18px 18px; }
.card h3 { font-size: 15px; color: var(--ink); margin-bottom: 6px; }
.card .price { color: var(--paper); font-size: 17px; }
.card .price span { opacity: .6; font-size: 14px; }

/* ---------- product page ---------- */
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  padding: 48px 0 80px;
}
.gallery .main {
  border: 1px solid rgba(252,208,25,.9);
  border-radius: var(--card-r);
  overflow: hidden;
  background: #0a0a0a;
  margin-bottom: 14px;
}
.gallery .main img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.thumbs img {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: 10px; border: 2px solid transparent; cursor: pointer; opacity: .7;
}
.thumbs img.active, .thumbs img:hover { border-color: var(--ink); opacity: 1; }

.pinfo h1 { font-size: clamp(1.5rem, 3.6vw, 2.4rem); margin-bottom: 10px; }
.pinfo .price {
  font-size: 30px; color: var(--paper); margin-bottom: 24px;
  font-family: 'Bayon', sans-serif;
}
.opt-group { margin-bottom: 22px; }
.opt-group .label {
  text-transform: uppercase; font-size: 14px; letter-spacing: .12em;
  color: rgba(255,255,255,.6); margin-bottom: 10px;
}
.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  font-family: 'Bayon', sans-serif;
  font-size: 16px;
  border: 1px solid rgba(252,208,25,.55); /* variant_pills_border_opacity 55 */
  border-radius: var(--pill-r);
  background: transparent; color: var(--paper);
  padding: 9px 20px; cursor: pointer;
  transition: .15s;
}
.pill:hover { border-color: var(--ink); }
.pill.on { background: var(--ink); color: #000; border-color: var(--ink); }

.buy-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 12px; }
.order-note {
  font-size: 15px; color: rgba(255,255,255,.6);
  border-left: 3px solid var(--ink); padding-left: 12px; margin-top: 16px;
}
.desc { margin-top: 36px; color: rgba(255,255,255,.82); }
.desc h3, .desc h2 { font-size: 17px; margin: 18px 0 8px; }
.desc p { margin: 10px 0; }
.desc em { color: var(--ink); font-style: normal; }

.back { display: inline-block; margin: 28px 0 0; color: var(--ink); font-size: 15px; text-transform: uppercase; letter-spacing: .1em; }
.back:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid rgba(252,208,25,.25);
  padding: 48px 0 32px;
  color: rgba(255,255,255,.65);
  font-size: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}
.f-logo { height: 54px; width: auto; margin-bottom: 14px; }
.f-col h3 { font-size: 15px; margin-bottom: 14px; }
.f-col a { display: block; margin-bottom: 9px; color: rgba(255,255,255,.65); transition: .15s; }
.f-col a:hover { color: var(--ink); }
.f-col p { margin-bottom: 8px; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(252,208,25,.55); color: var(--ink);
  transition: .2s;
}
.socials a:hover { background: var(--ink); color: #000; transform: translateY(-3px); }
.f-bottom {
  border-top: 1px solid rgba(252,208,25,.15);
  padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,.45);
}
/* 3D bees */
.bee3d-canvas {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-3d .cs-bee { display: none !important; }

/* yellow products band */
.band-yellow {
  background: var(--ink);
  margin-top: -1px;
  padding: 10px 0 6px;
  overflow: hidden;
}
.band-yellow .section-title { color: #000; }
.band-yellow .card { border-color: #000; box-shadow: none; }
.band-yellow .card:hover {
  box-shadow:
    0 0 0 2px rgba(0,0,0,.2),
    0 0 38px 6px rgba(255,170,0,.95),
    0 0 90px 24px rgba(255,140,0,.5),
    0 14px 30px rgba(0,0,0,.35);
}

/* product page on yellow */
body.yellow-page { background: var(--ink); color: #111; }
body.yellow-page .pinfo h1 { color: #000; }
body.yellow-page .pinfo .price { color: #000; }
body.yellow-page .opt-group .label { color: rgba(0,0,0,.6); }
body.yellow-page .pill { border-color: rgba(0,0,0,.55); color: #000; }
body.yellow-page .pill:hover { border-color: #000; }
body.yellow-page .pill.on { background: #000; color: var(--ink); border-color: #000; }
body.yellow-page .btn { background: #000; color: var(--ink); border-color: #000; }
body.yellow-page .btn:hover { box-shadow: 0 6px 0 rgba(0,0,0,.3); }
body.yellow-page .order-note { color: rgba(0,0,0,.65); border-left-color: #000; }
body.yellow-page .desc { color: rgba(0,0,0,.8); }
body.yellow-page .desc em { color: #000; font-weight: bold; }
body.yellow-page .back { color: #000; }
body.yellow-page .gallery .main,
body.yellow-page .card { border-color: #000; }
body.yellow-page .thumbs img.active, body.yellow-page .thumbs img:hover { border-color: #000; }
body.yellow-page .site-footer { background: #000; }
body.yellow-page .site-footer, body.yellow-page .f-bottom { border-color: rgba(252,208,25,.3); }

/* contact page */
.contact-body { max-width: 720px; margin: 0 auto; padding: 56px 20px 90px; }
.contact-body h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 16px; }
.contact-body p { color: rgba(255,255,255,.78); margin-bottom: 14px; font-size: 19px; }
.contact-mail {
  display: inline-block; margin: 18px 0 8px;
  font-family: 'Bungee', cursive; font-size: 16px;
  background: var(--ink); color: #000;
  padding: 14px 28px; border-radius: var(--pill-r);
}
.contact-mail:hover { transform: translateY(-3px); box-shadow: 0 6px 0 rgba(252,208,25,.35); }

/* mobile scroll spotlight on cards */
.card-focus {
  transform: scale(1.05) !important;
  box-shadow:
    0 0 0 2px rgba(0,0,0,.2),
    0 0 34px 6px rgba(255,170,0,.95),
    0 0 80px 20px rgba(255,140,0,.45) !important;
  z-index: 4;
}

/* ---------- cart ---------- */
.cart-link { position: relative; }
.cart-count {
  display: inline-block; min-width: 20px; height: 20px; line-height: 20px;
  text-align: center; border-radius: 10px; background: var(--ink); color: #000;
  font-size: 12px; font-family: 'Bungee', cursive; margin-left: 4px; padding: 0 5px;
}
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 90;
  opacity: 0; pointer-events: none; transition: .25s;
}
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: min(400px, 94vw); height: 100dvh;
  background: #0a0a0a; color: #fff; z-index: 91;
  border-left: 1px solid var(--ink);
  display: flex; flex-direction: column;
  transition: right .3s ease;
}
body.cart-open .cart-overlay { opacity: 1; pointer-events: auto; }
body.cart-open .cart-drawer { right: 0; }
.cd-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; border-bottom: 1px solid rgba(252,208,25,.25);
}
.cd-head h3 { font-size: 18px; }
.cd-close {
  all: unset; cursor: pointer; color: var(--ink); font-size: 20px; padding: 4px 8px;
}
.cd-items { flex: 1; overflow-y: auto; padding: 14px 20px; }
.cd-empty { color: rgba(255,255,255,.55); padding: 20px 0; }
.cd-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.cd-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; border: 1px solid rgba(252,208,25,.5); }
.cd-info { flex: 1; min-width: 0; }
.cd-title { font-family: 'Bungee', cursive; font-size: 11px; color: var(--ink); }
.cd-var { font-size: 14px; color: rgba(255,255,255,.6); }
.cd-price { font-size: 15px; }
.cd-qty { display: flex; align-items: center; gap: 8px; }
.cd-qty button {
  all: unset; cursor: pointer; width: 26px; height: 26px; text-align: center;
  border: 1px solid rgba(252,208,25,.55); border-radius: 50%; color: var(--ink); font-size: 15px;
}
.cd-qty .cd-rm { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.5); font-size: 12px; }
.cd-form { padding: 12px 20px; border-top: 1px solid rgba(252,208,25,.25); }
.cd-sub { font-family: 'Bungee', cursive; font-size: 12px; color: var(--ink); margin-bottom: 10px; }
.cd-form input, .cd-form textarea {
  width: 100%; background: #151515; border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; color: #fff; font-family: 'Bayon', sans-serif; font-size: 16px;
  padding: 10px 12px; margin-bottom: 8px; box-sizing: border-box;
}
.cd-form input:focus, .cd-form textarea:focus { outline: none; border-color: var(--ink); }
.cd-foot { padding: 14px 20px 18px; border-top: 1px solid rgba(252,208,25,.25); }
.cd-total { display: flex; justify-content: space-between; font-size: 18px; margin-bottom: 12px; }
.cd-total b { color: var(--ink); font-size: 22px; }
.cd-pay { width: 100%; text-align: center; }
.cd-note { text-align: center; font-size: 13px; color: rgba(255,255,255,.45); margin-top: 10px; }
.cd-success { text-align: center; padding: 30px 10px; }
.cd-check {
  width: 64px; height: 64px; line-height: 64px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--ink); color: #000; font-size: 30px;
}
.cd-success h3 { margin-bottom: 10px; }
.cd-success p { color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 8px; word-break: break-all; }
.cart-toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px);
  background: var(--ink); color: #000; font-family: 'Bungee', cursive; font-size: 13px;
  padding: 12px 22px; border-radius: var(--pill-r); z-index: 99;
  opacity: 0; pointer-events: none; transition: .25s;
}
.cart-toast.show { opacity: 1; transform: translate(-50%, 0); }
/* secondary button on yellow product page */
body.yellow-page .btn.secondary { background: transparent; color: #000; border-color: #000; }

/* music toggle */
.music-btn {
  all: unset; cursor: pointer;
  position: fixed; left: 18px; bottom: 18px; z-index: 80;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #0a0a0a; color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  transition: transform .2s;
}
.music-btn:hover { transform: translateY(-3px) scale(1.06); }
.music-btn .mw1, .music-btn .mw2 { opacity: 0; }
.music-btn .moff { opacity: 1; }
.music-btn.playing .moff { opacity: 0; }
.music-btn.playing .mw1 { opacity: 1; animation: wave 1s ease-in-out infinite; }
.music-btn.playing .mw2 { opacity: 1; animation: wave 1s ease-in-out infinite .2s; }
.music-btn.playing { animation: musicPulse 2s ease-in-out infinite; }
@keyframes wave { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes musicPulse {
  0%,100% { box-shadow: 0 4px 14px rgba(0,0,0,.4), 0 0 0 0 rgba(252,208,25,.5); }
  50% { box-shadow: 0 4px 14px rgba(0,0,0,.4), 0 0 0 12px rgba(252,208,25,0); }
}
@media (max-width: 860px) {
  .music-btn { width: 42px; height: 42px; left: 12px; bottom: 12px; }
}

/* touch feedback */
.card:active {
  transform: scale(1.05);
  box-shadow: 0 0 34px 6px rgba(255,170,0,.9), 0 10px 24px rgba(0,0,0,.3);
}
.btn:active, .pill:active { transform: scale(.94); }

/* trust band */
.trust {
  background: var(--bg);
  border-top: 1px solid rgba(252,208,25,.2);
  padding: 52px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.t-item svg { width: 52px; height: 52px; color: var(--ink); margin: 0 auto 14px; display: block; }
.t-item h3 { font-size: 16px; margin-bottom: 8px; }
.t-item p { color: rgba(255,255,255,.6); font-size: 16px; max-width: 260px; margin: 0 auto; }

/* size guide table */
.size-guide { margin-top: 26px; }
.sg-label {
  font-family: 'Bungee', cursive;
  font-size: 13px; color: #000; margin-bottom: 10px;
}
.size-guide table {
  width: 100%; border-collapse: collapse;
  font-size: 16px; text-align: center;
  border: 2px solid #000; border-radius: 10px; overflow: hidden;
}
.size-guide th {
  background: #000; color: var(--ink);
  font-family: 'Bungee', cursive; font-size: 12px;
  padding: 10px 8px; letter-spacing: .06em;
}
.size-guide td { padding: 9px 8px; border-top: 1px solid rgba(0,0,0,.25); color: #111; }
.size-guide tr td:first-child { font-family: 'Bungee', cursive; font-size: 13px; }
.size-guide tbody tr:nth-child(even) { background: rgba(0,0,0,.06); }

/* about section */
.about {
  border-top: 1px solid rgba(252,208,25,.2);
  padding: 56px 0;
}
.about { text-align: center; }
.about p { max-width: 760px; color: rgba(255,255,255,.75); font-size: 19px; margin: 14px auto 0; }

/* policies page */
.policy-body { max-width: 820px; margin: 0 auto; padding: 48px 20px 80px; }
.policy-body h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 8px; }
.policy-body h2 { font-size: 20px; margin: 44px 0 12px; scroll-margin-top: 120px; }
.policy-body p, .policy-body li { color: rgba(255,255,255,.78); margin-bottom: 10px; }
.policy-body ul { padding-left: 22px; margin-bottom: 12px; }

/* ---------- misc ---------- */
.notice {
  background: rgba(252,208,25,.08);
  border: 1px solid rgba(252,208,25,.3);
  border-radius: var(--card-r);
  padding: 16px 20px; margin: 24px 0; font-size: 16px;
  color: rgba(255,255,255,.8);
}

@media (max-width: 860px) {
  .product-layout { grid-template-columns: 1fr; gap: 30px; padding-top: 28px; }
  .nav { gap: 16px; font-size: 15px; }
  .site-header .wrap { height: 72px; }
  .hero { padding: 0; }
  .hero::before { display: none; }
  .hero-art { position: relative; width: 100%; height: auto; }
  .hero .wrap { position: absolute; top: 0; left: 0; right: 0; z-index: 4; }
  .hero-copy { max-width: 100%; padding: 14px 8px 0; }
  .hero-art img {
    height: auto; object-fit: contain; display: block;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero-art .trend-badge { opacity: 1; font-size: 11px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .f-bottom { justify-content: center; text-align: center; }
  .cs-bee.b2 { width: 44px; top: 2%; right: 2%; }
  .cs-bee.b3 { width: 34px; top: 28%; left: 2%; }
  .trust-grid { grid-template-columns: 1fr; gap: 36px; }
  .logo-img { height: 34px; }
  .hm { display: none; }
  .cart-count { display: none; }
  .nav { gap: 14px; font-size: 14px; }
  .nav { gap: 12px; font-size: 13px; }
  .site-header .wrap { height: 64px; }
  .hero-copy { text-align: center; }
  .hero h1 { font-size: clamp(.85rem, 3.4vw, 1.05rem); text-shadow: 0 2px 8px rgba(0,0,0,.85), 0 0 3px rgba(0,0,0,.9); }
  .hero p { display: none; }
  .hero .btn { font-size: 11px; padding: 8px 18px; margin-top: 2px; }
  .pinfo h1, .pinfo .price { text-align: center; }
  .f-col { text-align: center; }
  .f-logo, .t-item svg { margin-left: auto; margin-right: auto; }
  .socials { justify-content: center; }
  .section-title { margin: 30px 0 20px; text-align: center; }
  .grid { gap: 18px; padding-bottom: 48px; }
}

/* extra-small phones */
@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  .size-guide table { font-size: 14px; }
  .size-guide td { padding: 8px 4px; }
  .pinfo .price { font-size: 26px; }
  .buy-row .btn { width: 100%; text-align: center; }
  .marquee-track span { padding: 0 28px; }
  .t-item svg { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
