/* Bond Supply — Premium B2B Design System v1.2 */

:root {
  --bond-black: #0B0D10;
  --supply-navy: #101827;
  --navy-light: #1a2332;
  --clean-white: #FFFFFF;
  --kraft-tan: #C6A578;
  --box-beige: #E8D8C3;
  --label-gray: #EEF1F4;
  --surface: #F7F8FA;
  --steel-gray: #667085;
  --steel-light: #98A2B3;
  --shipping-blue: #2F80FF;
  --shipping-blue-dark: #1a6fe0;
  --success-green: #27AE60;
  --alert-orange: #FF8A34;
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11, 13, 16, 0.06);
  --shadow: 0 12px 40px rgba(11, 13, 16, 0.10);
  --shadow-lg: 0 24px 64px rgba(11, 13, 16, 0.14);
  --container: 1600px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4rem, 7vw, 6.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--bond-black);
  background: var(--clean-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Kill WP / Woo width constraints that cause "iframe" feel */
#page, #content, .site, .site-content,
.site-main, .woocommerce-page .site-main,
.wp-site-blocks, .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--shipping-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--shipping-blue-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.2rem; }

.sr-only, .screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.narrow { max-width: 800px; margin-inline: auto; }
.text-center { text-align: center; }

.section {
  padding-block: var(--section-pad);
  width: 100%;
}

.section--surface { background: var(--surface); }
.section--dark { background: var(--supply-navy); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-header {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shipping-blue);
  margin-bottom: 0.75rem;
}

.section--dark .section-eyebrow { color: var(--kraft-tan); }

.section-lead {
  font-size: 1.125rem;
  color: var(--steel-gray);
  line-height: 1.7;
  max-width: 640px;
}

.section-header--center .section-lead { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: var(--font-body);
  white-space: nowrap;
}

.btn-primary {
  background: var(--shipping-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(47, 128, 255, 0.35);
}
.btn-primary:hover {
  background: var(--shipping-blue-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47, 128, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--bond-black);
  border-color: rgba(11, 13, 16, 0.2);
}
.btn-secondary:hover {
  background: var(--bond-black);
  border-color: var(--bond-black);
  color: #fff;
  text-decoration: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ── Announcement ── */
.announcement-bar {
  background: var(--bond-black);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.7rem 0;
  text-align: center;
}

.announcement-link {
  color: var(--kraft-tan);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.announcement-link:hover { color: #fff; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 13, 16, 0.08);
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--bond-black);
}

.site-branding {
  flex-shrink: 0;
}

.site-logo {
  display: block;
  width: min(240px, 52vw);
  height: auto;
  max-height: 68px;
  object-fit: contain;
  border-radius: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1rem;
  line-height: 1;
}

.logo-accent { color: var(--shipping-blue); }

.main-navigation { justify-self: center; }

.primary-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  color: var(--bond-black);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
}

.primary-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--shipping-blue);
  transition: width 0.2s;
}

.primary-menu a:hover { color: var(--shipping-blue); }
.primary-menu a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-icon {
  background: var(--surface);
  border: 0;
  color: var(--bond-black);
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  transition: background 0.2s;
}

.header-icon:hover { background: var(--label-gray); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--shipping-blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.menu-toggle {
  display: none;
  background: var(--surface);
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bond-black);
  position: relative;
  border-radius: 1px;
}
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* ── Hero ── */
.hero--premium {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--bond-black) 0%, var(--supply-navy) 45%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(47, 128, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: clamp(560px, 82vh, 820px);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hero__content { color: #fff; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.eyebrow--light { color: var(--kraft-tan); }

.hero__headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero__subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats li { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__stats strong { font-size: 0.875rem; font-weight: 700; color: #fff; }
.hero__stats span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

.hero__visual { position: relative; }

.hero__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.hero__chip {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.hero__chip:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ── Trust bar ── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid rgba(11, 13, 16, 0.06);
  padding: 0;
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.5rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(11, 13, 16, 0.06);
  text-align: left;
}

.trust-card:last-child { border-right: 0; }

.trust-card svg {
  flex-shrink: 0;
  color: var(--shipping-blue);
}

.trust-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  color: var(--bond-black);
}

/* ── Grids ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.category-grid,
.product-grid,
.bundle-grid,
.blog-grid,
.use-case-grid,
.reviews-grid {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.category-grid { grid-template-columns: repeat(3, 1fr); }
.product-grid, .bundle-grid { grid-template-columns: repeat(4, 1fr); }
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.use-case-grid { grid-template-columns: repeat(4, 1fr); }
.reviews-grid { grid-template-columns: repeat(4, 1fr); }

/* ── Cards ── */
.card-list {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(11, 13, 16, 0.08);
  box-shadow: var(--shadow-sm);
}

.problem-cards { border-top: 3px solid var(--alert-orange); }
.solution-cards { border-top: 3px solid var(--success-green); }

.category-card,
.product-card,
.bundle-card,
.blog-card,
.review-card {
  background: #fff;
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.product-card:hover,
.bundle-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }

.category-card-image { overflow: hidden; }
.category-img, .product-img, .bundle-img, .blog-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img { transform: scale(1.04); }

.category-card-body,
.product-card-body,
.bundle-card-body,
.blog-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.category-card-body p {
  font-size: 0.9rem;
  color: var(--steel-gray);
  flex: 1;
  margin-bottom: 1rem;
}

.card-link {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--shipping-blue);
  text-decoration: none;
}

.product-card-image, .blog-card-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--surface);
}

.product-card-image img, .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.product-badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: var(--bond-black);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--shipping-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  display: block;
}

.product-card h3, .bundle-card h3, .blog-card h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.product-card h3 a, .bundle-card h3 a, .blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover { color: var(--shipping-blue); }

.stars { color: var(--kraft-tan); font-size: 0.8rem; letter-spacing: 1px; }
.product-benefit { font-size: 0.875rem; color: var(--steel-gray); line-height: 1.5; }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--label-gray);
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bond-black);
}

.price .woocommerce-Price-amount { font-weight: 700; }

.cat-boxes .category-card-image { border-bottom: 3px solid var(--kraft-tan); }
.cat-mailers .category-card-image { border-bottom: 3px solid var(--shipping-blue); }
.cat-labels .category-card-image { border-bottom: 3px solid var(--bond-black); }
.cat-tape .category-card-image { border-bottom: 3px solid var(--alert-orange); }
.cat-inserts .category-card-image { border-bottom: 3px solid var(--box-beige); }
.cat-kits .category-card-image { border-bottom: 3px solid var(--success-green); }

.bundle-includes { font-size: 0.875rem; color: var(--steel-gray); margin-bottom: 1rem; }

/* ── Kit builder ── */
.kit-builder-section { background: var(--surface); }

.kit-builder {
  background: #fff;
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}

.kit-step { display: none; }
.kit-step.active { display: block; }
.kit-step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.kit-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.kit-options button {
  border: 1.5px solid rgba(11, 13, 16, 0.12);
  background: #fff;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.kit-options button:hover,
.kit-options button.selected {
  border-color: var(--shipping-blue);
  background: rgba(47, 128, 255, 0.06);
  color: var(--shipping-blue);
}

.kit-recommendations { list-style: none; padding: 0; margin: 1.5rem 0; }
.kit-recommendations li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--label-gray);
  font-size: 0.95rem;
}

/* ── Misc sections ── */
.guide-cards { display: grid; gap: 0.75rem; margin: 1.5rem 0 2rem; }

.guide-cards a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  color: var(--bond-black);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid rgba(11, 13, 16, 0.06);
  transition: border-color 0.2s;
}

.guide-cards a:hover { border-color: var(--shipping-blue); color: var(--shipping-blue); }
.guide-cards a::after { content: '→'; color: var(--shipping-blue); }

.use-case-card {
  padding: 1.25rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.review-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
  color: var(--steel-gray);
}

.review-card cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--steel-light);
  font-style: normal;
  font-weight: 600;
}

.bulk-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.bulk-image { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.bulk-content h2 { margin-bottom: 1rem; }
.bulk-content p { font-size: 1.05rem; color: var(--steel-gray); margin-bottom: 1.5rem; }

.size-guide-image { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ── Newsletter ── */
.newsletter-section {
  background: var(--supply-navy);
  color: #fff;
  width: 100%;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.newsletter-content h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.newsletter-content p { color: rgba(255, 255, 255, 0.65); margin: 0; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.9rem 1.15rem;
  color: #fff;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }

/* ── Final CTA ── */
.final-cta-section {
  background: linear-gradient(135deg, var(--box-beige) 0%, #fff 60%);
  text-align: center;
  width: 100%;
}

.final-cta-inner { max-width: 640px; margin-inline: auto; }
.final-cta-inner h2 { margin-bottom: 1.5rem; }
.cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.section-cta { margin-top: 2rem; text-align: center; }

/* ── Footer ── */
.site-footer {
  background: var(--bond-black);
  color: rgba(255, 255, 255, 0.65);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
  width: 100%;
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand p { font-size: 0.9rem; line-height: 1.65; margin: 0; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255, 255, 255, 0.55); text-decoration: none; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }

.footer-bottom { margin-top: 2rem; }
.footer-tagline { color: var(--kraft-tan); font-weight: 600; font-size: 0.9rem; }
.footer-disclaimer, .copyright { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.35); }

/* ── Cart drawer ── */
.cart-drawer { position: fixed; inset: 0; z-index: 300; pointer-events: none; }
.cart-drawer.is-open { pointer-events: auto; }
.cart-drawer-overlay { position: absolute; inset: 0; background: rgba(11, 13, 16, 0.5); opacity: 0; transition: 0.25s; }
.cart-drawer.is-open .cart-drawer-overlay { opacity: 1; }
.cart-drawer-panel {
  position: absolute; top: 0; right: 0;
  width: min(440px, 100%); height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.is-open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--label-gray);
}
.cart-drawer-header h2 { font-size: 1.15rem; margin: 0; }
.cart-drawer-close { background: none; border: 0; font-size: 1.75rem; cursor: pointer; color: var(--steel-gray); line-height: 1; }
#bond-cart-drawer-content { padding: 1.25rem 1.5rem; overflow: auto; flex: 1; }
.cart-drawer-items { list-style: none; padding: 0; margin: 0; }
.cart-drawer-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--label-gray); }
.cart-drawer-footer { padding-top: 1.25rem; }

.free-shipping-bar { margin: 1rem 0; }
.progress-track { height: 6px; background: var(--label-gray); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--success-green); transition: width 0.3s; }

.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  padding: 0.75rem var(--gutter);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(11, 13, 16, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

/* ── Inner pages ── */
.page-main, .single-post-main, .archive-main, .search-main {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.page-main .entry-content { max-width: 800px; }

.page-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--bond-black) 0%, var(--supply-navy) 100%);
  color: #fff;
  overflow: hidden;
}

.page-hero--image { padding: 0; min-height: clamp(280px, 40vw, 420px); display: flex; align-items: flex-end; }

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.35) 0%, rgba(11, 13, 16, 0.82) 100%);
}

.page-hero__image { width: 100%; height: 100%; object-fit: cover; }

.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}

.page-hero--image .page-hero__content { padding-block: clamp(2.5rem, 5vw, 4rem); }

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 720px;
  margin: 0;
  line-height: 1.7;
}

.page-intro { margin-bottom: 2.5rem; }

.category-grid--compact { grid-template-columns: repeat(3, 1fr); }

.contact-points { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-points li { padding: 0.65rem 0; border-bottom: 1px solid rgba(11, 13, 16, 0.08); }

.contact-card, .bond-card {
  background: #fff;
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.faq-list h2 { margin-top: 2rem; }
.faq-list h3 { margin-top: 1.25rem; font-size: 1.05rem; }

.reviews-page-intro .reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.page-empty-note {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  text-align: center;
}

.shop-main .section:first-of-type { padding-top: var(--section-pad); }

.policy-content h2 { margin-top: 2rem; }

.bond-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: var(--steel-gray);
}

.bond-breadcrumb a { color: var(--steel-gray); }
.bond-breadcrumb a:hover { color: var(--shipping-blue); }

.bond-product-gallery__main {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 1;
  object-fit: cover;
}

.bond-product-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.bond-product-gallery__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
}

.bond-variation-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.bond-variation-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(11, 13, 16, 0.08);
}

.product-long-desc { margin-top: 2rem; }

.bond-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9375rem; }
.bond-table th, .bond-table td { border: 1px solid rgba(11, 13, 16, 0.1); padding: 0.85rem 1rem; text-align: left; }
.bond-table th { background: var(--surface); font-weight: 600; }

.bond-form label { display: block; margin-bottom: 1rem; font-weight: 600; font-size: 0.9rem; }
.bond-form input, .bond-form textarea, .bond-form select {
  width: 100%; margin-top: 0.4rem; padding: 0.85rem 1rem;
  border: 1.5px solid rgba(11, 13, 16, 0.12); border-radius: 10px;
  font-size: 0.95rem; font-family: var(--font-body);
}

[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
[data-animate].is-visible { opacity: 1; transform: none; }
