/* Tronco Drinkware - site styles. Namespace: tc- .
   Palette built around the official Tronco wordmark orange #f39802 (pixel-sampled).
   ink #241d15 | roast #2a2118 | taupe #6b6156 | brand #f39802 | brand-deep #c67a00
   cream #faf7f2 | line #eae3d8 | star #f0a63c
   Display font: Outfit. Body: Inter. Hero is LIGHT (warm cream), band/footer are espresso. */

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-var.woff2') format('woff2');
  font-weight: 300 800;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #241d15;
  --roast: #2a2118;
  --roast2: #382d20;
  --taupe: #6b6156;
  --brand: #f39802;
  --brand-deep: #c67a00;
  --brand-soft: #fdf0d9;
  --cream: #faf7f2;
  --line: #eae3d8;
  --star: #f0a63c;
  --white: #ffffff;
  --disp: 'Outfit', 'Inter', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--disp); line-height: 1.2; font-weight: 600; }

.tc-wrap { max-width: 1160px; margin: 0 auto; padding: 0 22px; }

/* ---------- header ---------- */
.tc-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.tc-header .tc-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}
.tc-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}
.tc-logo:hover { text-decoration: none; }
.tc-logo img { width: 150px; height: 33px; object-fit: contain; object-position: left center; }
.tc-logo small {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--taupe);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.tc-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.tc-nav a {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 999px;
}
.tc-nav a:hover { background: var(--brand-soft); color: var(--brand-deep); text-decoration: none; }
.tc-nav-cta {
  background: var(--brand);
  color: var(--ink) !important;
  font-weight: 600 !important;
}
.tc-nav-cta:hover { background: var(--brand-deep) !important; color: #fff !important; }

.tc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.tc-burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; }

/* ---------- buttons ---------- */
.tc-btn {
  display: inline-block;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.tc-btn:hover { text-decoration: none; }
.tc-btn--solid { background: var(--brand); color: var(--ink); }
.tc-btn--solid:hover { background: var(--brand-deep); color: #fff; }
.tc-btn--frame { border: 1.5px solid #cdbfa9; color: var(--ink); }
.tc-btn--frame:hover { border-color: var(--brand-deep); color: var(--brand-deep); }

/* ---------- hero (light, warm) ---------- */
.tc-hero {
  background: radial-gradient(1000px 460px at 82% -12%, #ffe2b0 0%, #fdf3e2 46%, var(--cream) 78%);
  border-bottom: 1px solid var(--line);
  padding: 60px 0 64px;
}
.tc-hero .tc-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}
.tc-hero-kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: #ffffffb8;
  border: 1px solid #f3980259;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.tc-hero h1 {
  font-size: 43px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.tc-hero h1 em {
  font-style: normal;
  color: var(--brand-deep);
}
.tc-hero > .tc-wrap > div > p { font-size: 17px; color: #55493c; max-width: 560px; }
.tc-hero-actions { display: flex; gap: 14px; margin: 26px 0 34px; flex-wrap: wrap; }
.tc-hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.tc-hero-stat b {
  display: block;
  font-family: var(--disp);
  font-size: 27px;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: 0.02em;
}
.tc-hero-stat span { font-size: 13px; color: var(--taupe); }

.tc-hero-feature {
  position: relative;
  max-width: 330px;
  justify-self: end;
  width: 100%;
}
.tc-hero-feature .tc-card { box-shadow: 0 18px 46px #90703a33; border-color: #f3d9ac; color: var(--ink); }
.tc-hero-feature .tc-card:hover { transform: none; }
.tc-hero-feature-tag {
  position: absolute;
  top: -13px;
  left: 18px;
  z-index: 3;
  background: var(--roast);
  color: #ffd898;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px #2a211840;
}

/* ---------- sections ---------- */
.tc-section { padding: 58px 0; }
.tc-section--card { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tc-sec-head { max-width: 660px; margin-bottom: 34px; }
.tc-sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.tc-sec-head h1, .tc-sec-head h2 { font-size: 30px; letter-spacing: -0.015em; margin-bottom: 10px; }
.tc-sec-head p { color: var(--taupe); font-size: 16px; }

/* ---------- category cards ---------- */
.tc-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tc-cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  color: var(--ink);
  transition: box-shadow 0.15s, transform 0.15s, border-color 0.15s;
}
.tc-cat-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: #f0cf98;
  box-shadow: 0 12px 30px #241d1514;
}
.tc-cat-img { background: #fff; padding: 18px; border-bottom: 1px solid var(--line); }
.tc-cat-img img { aspect-ratio: 4/3; object-fit: contain; margin: 0 auto; }
.tc-cat-body { padding: 14px 18px 18px; }
.tc-cat-body h3 { font-size: 16.5px; margin-bottom: 4px; }
.tc-cat-body span { display: block; font-size: 13.5px; color: var(--taupe); }
.tc-cat-body em {
  display: block;
  margin-top: 9px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-deep);
}

/* ---------- product cards ---------- */
.tc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}
.tc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px #241d1514; }
.tc-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--roast);
  color: #ffd898;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.tc-flag--budget { background: var(--brand); color: var(--ink); }
.tc-card-img { padding: 22px 22px 8px; background: #fff; }
.tc-card-img img { aspect-ratio: 1; object-fit: contain; margin: 0 auto; }
.tc-card-body { padding: 6px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tc-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 7px; }
.tc-card-body h3 a { color: var(--ink); }
.tc-rating { font-size: 13.5px; color: var(--taupe); margin-bottom: 12px; }
.tc-stars { color: var(--star); letter-spacing: 1.5px; margin-right: 5px; }
.tc-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tc-price { font-family: var(--disp); font-size: 19px; font-weight: 700; }
.tc-card-link {
  font-size: 13.5px;
  font-weight: 600;
  background: var(--brand-soft);
  color: var(--brand-deep);
  padding: 8px 14px;
  border-radius: 999px;
}
.tc-card-link:hover { background: var(--brand-deep); color: #fff; text-decoration: none; }
.tc-btn--card {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 10px 16px;
  font-size: 14px;
}
.tc-btn--sm { padding: 9px 18px; font-size: 14px; }

/* ---------- need tiles ---------- */
.tc-needs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tc-need {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}
.tc-need-img {
  flex: 0 0 172px;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 16px;
  display: flex;
  align-items: center;
}
.tc-need-img img { aspect-ratio: 1; object-fit: contain; }
.tc-need-body { padding: 18px 20px; display: flex; flex-direction: column; }
.tc-need-body h3 { font-size: 17px; margin-bottom: 6px; }
.tc-need-body p { font-size: 14px; color: var(--taupe); margin-bottom: 12px; }
.tc-need-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tc-need-foot .tc-price { font-size: 17px; }

/* ---------- band (espresso) ---------- */
.tc-band { background: var(--roast); color: #cec2b3; padding: 58px 0; }
.tc-band .tc-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}
.tc-band h2 { color: #fff; font-size: 28px; margin-bottom: 14px; letter-spacing: -0.015em; }
.tc-band p { margin-bottom: 12px; }
.tc-band p a { color: #f6b345; }
.tc-band-img img {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  aspect-ratio: 1;
  object-fit: contain;
  box-shadow: 0 10px 34px #00000059;
}

/* ---------- classic size ladder ---------- */
.tc-sizes {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.tc-size {
  display: grid;
  grid-template-columns: 86px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
}
.tc-size:last-child { border-bottom: 0; }
.tc-size-oz {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-deep);
  white-space: nowrap;
}
.tc-size-info a { display: block; font-weight: 600; color: var(--ink); }
.tc-size-info a:hover { color: var(--brand-deep); text-decoration: none; }
.tc-size-info span { font-size: 13px; color: var(--taupe); }
.tc-size .tc-price { font-size: 16px; white-space: nowrap; }

/* ---------- reviews ---------- */
.tc-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tc-review {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}
.tc-review-stars { color: var(--star); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.tc-review h3 { font-size: 15.5px; margin-bottom: 6px; }
.tc-review p { font-size: 14px; color: #55493c; margin-bottom: 16px; }
.tc-review-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--taupe);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}
.tc-review-meta a { color: var(--brand-deep); font-weight: 600; }
.tc-reviews-note { margin-top: 16px; font-size: 12.5px; color: var(--taupe); }

/* ---------- faq ---------- */
.tc-faq { max-width: 760px; margin: 0 auto; }
.tc-faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  padding: 0 20px;
}
.tc-faq summary {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.tc-faq summary::-webkit-details-marker { display: none; }
.tc-faq summary::after {
  content: '+';
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-deep);
  font-size: 20px;
  font-weight: 500;
}
.tc-faq details[open] summary::after { content: '\2212'; }
.tc-faq details p { padding: 0 0 16px; color: var(--taupe); font-size: 14.5px; }

/* ---------- crumbs ---------- */
.tc-crumbs {
  font-size: 13px;
  color: var(--taupe);
  padding: 16px 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tc-crumbs a { color: var(--taupe); }
.tc-crumbs a:hover { color: var(--brand-deep); }

/* ---------- PDP ---------- */
.tc-pdp {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  padding: 10px 0 48px;
}
.tc-pdp-img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 84px;
}
.tc-pdp-img img { aspect-ratio: 1; object-fit: contain; }
.tc-pdp-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tc-pdp-info h1 { font-size: 29px; letter-spacing: -0.015em; margin-bottom: 12px; }
.tc-pdp-rating { font-size: 14.5px; color: var(--taupe); margin-bottom: 16px; }
.tc-pdp-intro { color: #55493c; margin-bottom: 22px; }
.tc-pdp-info h2 { font-size: 20px; margin: 26px 0 12px; }

.tc-buybox {
  background: var(--white);
  border: 1.5px solid #f0cf98;
  border-radius: 16px;
  padding: 20px 22px;
}
.tc-buybox-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.tc-buybox-price { font-family: var(--disp); font-size: 31px; font-weight: 700; }
.tc-buybox .tc-btn { width: 100%; text-align: center; }
.tc-buybox-small { font-size: 12px; color: var(--taupe); margin-top: 12px; }

.tc-hi { list-style: none; }
.tc-hi li {
  position: relative;
  padding: 0 0 10px 28px;
  font-size: 15px;
}
.tc-hi li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-spec { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.tc-spec td { padding: 10px 12px; border: 1px solid var(--line); }
.tc-spec td:first-child { background: var(--cream); font-weight: 600; width: 38%; }

/* ---------- docs ---------- */
.tc-doc { max-width: 760px; margin: 0 auto; padding: 14px 0 60px; }
.tc-doc h1 { font-size: 32px; letter-spacing: -0.015em; margin-bottom: 22px; }
.tc-doc h2 { font-size: 21px; margin: 28px 0 10px; }
.tc-doc p, .tc-doc li { color: #463b2f; font-size: 15.5px; margin-bottom: 10px; }
.tc-doc ul, .tc-doc ol { padding-left: 24px; margin-bottom: 14px; }
.tc-doc-note {
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  border-radius: 0 12px 12px 0;
  padding: 13px 17px;
  font-size: 14px;
}

/* ---------- 404 ---------- */
.tc-404 { text-align: center; padding: 90px 22px 110px; }
.tc-404 h1 {
  font-size: 96px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 40px #f3980240;
}
.tc-404 p { color: var(--taupe); }

/* ---------- footer (espresso) ---------- */
.tc-footer { background: var(--roast); color: #b3a794; margin-top: 40px; }
.tc-footer > .tc-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-top: 46px;
  padding-bottom: 40px;
}
.tc-footer h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tc-footer a { display: block; color: #b3a794; font-size: 14px; padding: 3.5px 0; }
.tc-footer a:hover { color: #f6b345; }
.tc-footer-brand p { font-size: 13.5px; margin-top: 14px; max-width: 300px; }
.tc-footer-brand .tc-logo small { color: #9a8d79; }
.tc-footer-bottom { border-top: 1px solid #ffffff17; }
.tc-footer-bottom .tc-wrap { padding-top: 18px; padding-bottom: 22px; font-size: 12.5px; color: #a89c8f; text-align: center; }
.tc-disclosure { display: block; width: 720px; max-width: 100%; height: auto; margin: 10px auto 0; opacity: 0.9; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .tc-hero .tc-wrap { grid-template-columns: 1fr; gap: 40px; }
  .tc-hero h1 { font-size: 34px; }
  .tc-cats { grid-template-columns: repeat(2, 1fr); }
  .tc-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-reviews { grid-template-columns: repeat(2, 1fr); }
  .tc-needs { grid-template-columns: 1fr; }
  .tc-hero-feature { justify-self: start; }
  .tc-band .tc-wrap { grid-template-columns: 1fr; }
  .tc-band-img { max-width: 380px; }
  .tc-pdp { grid-template-columns: 1fr; }
  .tc-pdp-img { position: static; }
  .tc-footer > .tc-wrap { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .tc-burger { display: flex; }
  .tc-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 22px 16px;
    gap: 2px;
    box-shadow: 0 14px 30px #241d151c;
  }
  .tc-nav--open { display: flex; }
  .tc-nav a { padding: 11px 12px; border-radius: 10px; }
}

@media (max-width: 640px) {
  .tc-hero { padding: 44px 0 50px; }
  .tc-hero h1 { font-size: 29px; }
  .tc-hero-stats { gap: 24px; }
  .tc-section { padding: 44px 0; }
  .tc-sec-head h1, .tc-sec-head h2 { font-size: 25px; }
  .tc-cats { grid-template-columns: 1fr; }
  .tc-grid { grid-template-columns: 1fr; }
  .tc-reviews { grid-template-columns: 1fr; }
  .tc-size { grid-template-columns: 62px 1fr auto; padding: 14px 16px; gap: 12px; }
  .tc-size-oz { font-size: 17px; }
  .tc-size .tc-btn { grid-column: 1 / -1; text-align: center; }
  .tc-need { flex-direction: column; }
  .tc-need-img { flex: none; border-right: 0; border-bottom: 1px solid var(--line); }
  .tc-need-img img { max-width: 180px; margin: 0 auto; }
  .tc-footer > .tc-wrap { grid-template-columns: 1fr; gap: 26px; }
  .tc-pdp-info h1 { font-size: 24px; }
  .tc-buybox-price { font-size: 27px; }
}
