/* ─── Wilber Stone Design System — Shared Components ────────────────────
   Loaded on all interior pages that use the WS component system.
   Extracted from about.css so styles can be reused across product,
   FAQ, and other content pages without duplication.
─────────────────────────────────────────────────────────────────────── */

/* BREADCRUMBS */
.page-title .breadcrumbs .current {
    font-weight: 900;
    color: var(--accent-color);
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION EYEBROW LABEL
══════════════════════════════════════════════════════════════════════ */
.ws-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.ws-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #CB6015;
  flex-shrink: 0;
}
.ws-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #CB6015;
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION HEADINGS
══════════════════════════════════════════════════════════════════════ */
.ws-section-heading {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 24px;
}
.ws-section-heading .accent {
  color: #0047BB;
}
.ws-section-heading .accent-orange {
  color: #CB6015;
}

/* ══════════════════════════════════════════════════════════════════════
   BODY COPY
══════════════════════════════════════════════════════════════════════ */
.ws-body-lead {
  font-size: 1.08rem;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.85;
  margin-bottom: 18px;
}
.ws-body {
  font-size: 0.98rem;
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════════════
   STAT BAR
══════════════════════════════════════════════════════════════════════ */
.ws-stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 2px solid #e5e5e5;
  margin-top: 40px;
  padding-top: 32px;
}
.ws-stat {
  flex: 1;
  min-width: 140px;
  padding-right: 32px;
}
.ws-stat-number {
  font-family: 'Teko', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #0047BB;
  display: block;
}
.ws-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #75787B;
}

/* ══════════════════════════════════════════════════════════════════════
   IMAGE TREATMENTS
══════════════════════════════════════════════════════════════════════ */

/* --- Overlapping image stack --- */
.ws-img-stack {
  position: relative;
}
.ws-img-stack .img-main {
  position: relative;
  z-index: 2;
}
.ws-img-stack .img-main img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}
.ws-img-stack .img-float {
  position: absolute;
  bottom: -36px;
  right: -28px;
  width: 46%;
  border: 5px solid #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  z-index: 3;
}
.ws-img-stack .img-float img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.ws-img-stack .img-accent-block {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 58%;
  height: 58%;
  background: #0047BB;
  z-index: 1;
  opacity: 0.1;
}
.ws-img-stack .img-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  background: #CB6015;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
}

/* --- Single tall portrait image with accent stripe --- */
.ws-img-tall {
  position: relative;
}
.ws-img-tall img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
}
.ws-img-tall .img-accent-stripe {
  position: absolute;
  top: 24px;
  left: -12px;
  width: 6px;
  height: calc(100% - 48px);
  background: #CB6015;
  z-index: 1;
}

/* --- 2×2 photo mosaic --- */
.ws-img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.ws-img-mosaic img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.ws-img-mosaic .mosaic-tall {
  grid-row: 1 / 3;
  aspect-ratio: unset;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════════════
   BUTTON SYSTEM
══════════════════════════════════════════════════════════════════════ */
.ws-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
              background-color 0.4s ease, color 0.4s ease,
              border-color 0.4s ease;
  transform-origin: center;
  will-change: transform;
}
.ws-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}
/* .ws-btn:visited { color: inherit; } */

.ws-section .ws-btn-primary {
  background: #0047BB;
  border: 2px solid #0047BB;
  color: #ffffff;
}
.ws-btn-primary:hover {
  background: #003491;
  border-color: #003491;
  color: #ffffff;
}

.ws-btn-orange {
  background: #CB6015;
  border: 2px solid #CB6015;
  color: #ffffff;
}
.ws-btn-orange:hover {
  background: #a84e10;
  border-color: #a84e10;
  color: #ffffff;
}

.ws-btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
.ws-btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.95);
  color: #ffffff;
}

.ws-btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
}
.ws-btn-md {
  font-size: 0.95rem;
  padding: 14px 30px;
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════════════════════════════════ */
.ws-section     { padding: 100px 0; }
.ws-section-alt { padding: 100px 0; background: #f7f8fa; }
.pb-img-pad     { padding-bottom: 60px; }

/* ══════════════════════════════════════════════════════════════════════
   PRODUCT PAGES — SECTION WRAPPERS
══════════════════════════════════════════════════════════════════════ */
.prod-section     { padding: 100px 0; }
.prod-section-alt { padding: 100px 0; background: #f7f8fa; }

/* ══════════════════════════════════════════════════════════════════════
   PRODUCT PAGES — CATEGORY INTRO BLOCK (dark panel per category)
══════════════════════════════════════════════════════════════════════ */
.prod-cat-block {
  background: #0a0a0a;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.prod-cat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #0047BB 0%, #CB6015 100%);
}
.prod-cat-block .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #CB6015;
  margin-bottom: 16px;
  display: block;
}
.prod-cat-block h2 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}
.prod-cat-block p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   PRODUCT PAGES — PRODUCT CARDS
══════════════════════════════════════════════════════════════════════ */
.prod-card {
  background: #ffffff;
  border-top: 3px solid #0047BB;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.prod-card:hover {
  box-shadow: 0 12px 40px rgba(0, 71, 187, 0.1);
  transform: translateY(-4px);
}
.prod-card-img {
  position: relative;
  overflow: hidden;
}
.prod-card-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.5s ease;
}
.prod-card:hover .prod-card-img img {
  transform: scale(1.04);
}
.prod-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #CB6015;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}
.prod-card-body {
  padding: 28px 28px 32px;
}
.prod-card-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 4px;
  line-height: 1.1;
}
.prod-card-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #75787B;
  margin-bottom: 14px;
}
.prod-card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.prod-best-for,
.prod-pro-tip {
  padding: 12px 16px;
  margin-bottom: 10px;
}
.prod-best-for:last-child,
.prod-pro-tip:last-child {
  margin-bottom: 0;
}
.prod-best-for {
  background: #f0f5ff;
  border-left: 3px solid #0047BB;
}
.prod-pro-tip {
  background: #fff8f0;
  border-left: 3px solid #CB6015;
}
.prod-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0047BB;
  margin-bottom: 4px;
}
.prod-pro-tip .prod-label {
  color: #CB6015;
}
.prod-best-for p,
.prod-pro-tip p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.87rem;
  color: #3a3a3a;
  line-height: 1.7;
  margin: 0;
}
/* Wide card variant: horizontal image + content */
.prod-card-wide .prod-card-img img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 220px;
}

/* ══════════════════════════════════════════════════════════════════════
   PRODUCT PAGES — OVERVIEW TABLE SECTION (dark)
══════════════════════════════════════════════════════════════════════ */
.prod-overview-section {
  background: #0a0a0a;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.prod-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(0, 71, 187, 0.07);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.prod-overview-section .section-label {
  position: relative;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #CB6015;
  margin-bottom: 14px;
  display: block;
}
.prod-overview-section h2 {
  position: relative;
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 40px;
}
.prod-overview-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.prod-overview-table thead th {
  background: rgba(0, 71, 187, 0.4);
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border: none;
}
.prod-overview-table thead th:first-child {
  border-left: 3px solid #CB6015;
}
.prod-overview-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}
.prod-overview-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}
.prod-overview-table tbody td {
  padding: 14px 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  vertical-align: middle;
}
.prod-overview-table tbody td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.03em;
  border-left: 3px solid transparent;
}
.prod-overview-table tbody tr:hover td:first-child {
  border-left-color: #CB6015;
}
.prod-overview-table .badge-blue {
  display: inline-block;
  background: rgba(0, 71, 187, 0.25);
  border: 1px solid rgba(0, 71, 187, 0.4);
  color: #a8c4ff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
}
.prod-overview-table .badge-orange {
  display: inline-block;
  background: rgba(203, 96, 21, 0.2);
  border: 1px solid rgba(203, 96, 21, 0.4);
  color: #f0a87a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
}
