/* ══════════════════════════════════════════
   RAPID TACTICAL — PRODUCTS.CSS
   Products page layout, matching Figma
   References: HOME SCREEN LIGHT Figma
══════════════════════════════════════════ */

/* ────────────────────────────
   PRODUCTS HERO BANNER
   Full-bleed real image, cover fit,
   subtle bottom gradient like Figma
──────────────────────────── */
.about-card-warpper {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 710px;
  height: 260px;
  background: #9e1613;
  border-radius: 16px;
  padding: 30px 26px 30px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.card-text {
  flex: 1;
  min-width: 0;
}

.about-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--subheading-size);
  color: #fff !important;
  padding: 15px;

}

.about-card-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--content-size);
  color: #fff !important;
  line-height: 1.7;
  flex: 1;
  margin-top: 20px;
  padding: 10px;
  color: #fff !important;
}

.deploy-bottom {
  /* position: relative;
    height: 713px;
    overflow: hidden;
    isolation: isolate; */
}

.soldier-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.soldier-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}


/* ────────────────────────────
   DEPLOYMENT CAPABILITY ROW
   Two-column: left card + right text
──────────────────────────── */
.about-deploy-section {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 64px 64px 48px 64px;
  background: transparent;
}

/* Left card: "Rapid Tactical Kits" */
.about-deploy-left {
  flex: 0 0 500px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  margin-right: 48px;
  align-self: flex-start;
  height: 320px;
  width: 450px;
}

.about-deploy-kit-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0d0d0d;
  letter-spacing: 0.2px;
}

.about-deploy-kit-label {
  font-family: Inter;
  font-weight: 800;
  font-style: Extra Bold;
  font-size: 30px;
  leading-trim: CAP_HEIGHT;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #fff;
  padding: 120px;
}

.about-deploy-kit-img-wrap {
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  background-image: url('../../images/product_kit-type.png');
}

.about-deploy-kit-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 8px;
}

.about-deploy-kit-placeholder {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  /* background: linear-gradient(135deg, #e8e0d0 0%, #c8bca4 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  border: 1.5px dashed #b0a090;
  letter-spacing: 0.5px;
  background-image: url("../../images/product_kit-type.png");
}

/* Right: text panel */
.about-deploy-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.about-deploy-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: var(--heading-size);
  color: #0d0d0d;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  text-shadow: none;
  /* no text shadow needed here */
}

.about-deploy-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--content-size);
  color: #444;
  line-height: 1.75;
  max-width: 520px;
}

/* ────────────────────────────
   PRODUCTS GRID SECTION
──────────────────────────── */
.about-grid-section {
  padding: 0 64px 64px 64px;
}

/* Filter + sort toolbar */
.about-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  margin-bottom: 32px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.about-filter-btn,
.about-sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.about-filter-btn:hover,
.about-sort-btn:hover {
  border-color: #8b1a1a;
  color: #8b1a1a;
  background: rgba(139, 26, 26, 0.04);
}

.about-showing-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.about-showing-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--content-size);
  color: #1a1a1a;
}

.about-showing-count {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.3px;
}

/* Product cards 3-column grid */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Individual Product Card */
.about-card {
  position: absolute;
  right: -20px;
  top: 30%;
  width: 903px;
  height: 350px;
  background: #9E1613;
  display: flex;
  align-items: center;
}

/* .about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
} */

/* Card image wrapper — the placeholder image area */
.about-card-img-wrap {
  width: 100%;
  height: 560px;
  overflow: hidden;
  position: relative;
}

.about-card-img-placeholder {
  width: 100%;
  /* height: 100%; */
  /* background: linear-gradient(145deg, #e8e0d2 0%, #d4c8b6 100%); */
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.about-card-img-placeholder--dark {
  background: linear-gradient(145deg, #3a3530 0%, #2a2520 100%);
}

.about-card-img-placeholder--red {
  background: linear-gradient(145deg, #8b1a1a 0%, #6a1212 100%);
}

.about-card-placeholder-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
}

.about-placeholder-box {
  width: 120px;
  height: 160px;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* CFAK backpack shape — olive/military green */
.about-placeholder-cfak {
  background: linear-gradient(160deg, #7a7a50 0%, #5a5a38 60%, #4a4a2a 100%);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.about-placeholder-cfak::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* IFAK Medium — darker tactical bag */
.about-placeholder-ifak-m {
  background: linear-gradient(160deg, #4a4a38 0%, #3a3a28 60%, #2a2a18 100%);
  color: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.25);
  width: 100px;
  height: 140px;
  position: relative;
}

.about-placeholder-ifak-m::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* IFAK Small — red accent bag */
.about-placeholder-ifak-s {
  background: linear-gradient(160deg, #c0302a 0%, #8b1a1a 60%, #6a1212 100%);
  color: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(139, 26, 26, 0.3);
  width: 90px;
  height: 120px;
  position: relative;
}

.about-placeholder-ifak-s::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 32px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Card body — title, description, link */
.about-card-body {
  padding: 20px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.about-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--subheading-size);
  color: #0d0d0d;
  letter-spacing: 0.1px;
  line-height: 1.2;
}

.about-card-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--content-size);
  color: #555;
  line-height: 1.7;
  flex: 1;
}

.about-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0d0d0d;
  text-decoration: none;
  transition: color 0.15s ease;
  margin-top: 4px;
  width: fit-content;
}

.about-card-link:hover {
  color: #8b1a1a;
}

/* Featured card subtle top border accent */
.about-card--featured {
  border-top: 3px solid #8b1a1a;
}

.about-card--accent {
  border-top: 3px solid #c0302a;
}

/* ────────────────────────────
   MOBILE APP SECTION
   Left: phone placeholder
   Right: description
──────────────────────────── */
.about-app-section {
  display: flex;
  align-items: center;
  gap: 52px;
  padding: 32px 64px 72px 64px;
}

/* Phone placeholder */
.about-app-img-wrap {
  flex: 0 0 220px;
}

.about-app-phone-placeholder {
  width: 160px;
  height: 260px;
  background: #0d0d0d;
  border-radius: 28px;
  border: 8px solid #232323;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.about-app-phone-screen {
  flex: 1;
  background: #f2f2f2;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px 16px 10px;
  gap: 8px;
  overflow: hidden;
}

.about-app-phone-notch {
  width: 48px;
  height: 6px;
  background: #d0d0d0;
  border-radius: 3px;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.about-app-phone-content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.about-app-screen-bar {
  width: 100%;
  height: 8px;
  background: #d8d8d8;
  border-radius: 4px;
}

.about-app-screen-bar--short {
  width: 65%;
  align-self: flex-start;
}

.about-app-screen-bar--medium {
  width: 80%;
  align-self: flex-start;
}

.about-app-screen-icon {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 26, 26, 0.08);
  border-radius: 10px;
  width: 52px;
  height: 52px;
}

/* App section body text */
.about-app-body {
  flex: 1;
  max-width: 480px;
}

.about-app-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--subheading-size);
  color: #0d0d0d;
  letter-spacing: 0.1px;
  margin-bottom: 12px;
}

.about-app-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--content-size);
  color: #555;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-app-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0d0d0d;
  text-decoration: none;
  transition: color 0.15s ease;
}

.about-app-link:hover {
  color: #8b1a1a;
}

/* ────────────────────────────
   BRAND STATEMENT SECTION
   Large centred logo + tagline
   Matches Figma "RAPID TACTICAL"
   wordmark with TM + tagline below
──────────────────────────── */
.about-brand-section {
  padding: 80px 64px 60px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-brand-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.about-brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-brand-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.about-brand-logo-img {
  width: 480px;
  max-width: 100%;
  height: auto;
  display: block;
}

.about-brand-tagline {
  display: none;
  /* tagline is already embedded in the SVG logo */
}

/* ────────────────────────────
   DARK MODE OVERRIDES
   Products page sections
──────────────────────────── */

/* Deploy section */
body.dark .about-deploy-left {
  background: #1e1e1e;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

body.dark .about-deploy-kit-label {
  color: #f0f0f0;
}

body.dark .about-deploy-kit-placeholder {
  background: linear-gradient(135deg, #2a2520 0%, #1e1a14 100%);
  border-color: #4a3a28;
  color: #888;
}

body.dark .about-deploy-heading {
  color: #f0f0f0;
}

body.dark .about-deploy-desc {
  color: #888;
}

/* Filter bar */
body.dark .about-filter-bar {
  border-color: #2a2a2a;
}

body.dark .about-filter-btn,
body.dark .about-sort-btn {
  border-color: #333;
  color: #ccc;
}

body.dark .about-filter-btn:hover,
body.dark .about-sort-btn:hover {
  border-color: #8b1a1a;
  color: #8b1a1a;
  background: rgba(139, 26, 26, 0.08);
}

body.dark .about-showing-title {
  color: #e0e0e0;
}

body.dark .about-showing-count {
  color: #666;
}

/* Product cards */
body.dark .about-card {
  background: #1e1e1e;
  border-color: #2a2a2a;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

body.dark .about-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

body.dark .about-card-title {
  color: #f0f0f0;
}

body.dark .about-card-desc {
  color: #888;
}

body.dark .about-card-link {
  color: #ddd;
}

body.dark .about-card-link:hover {
  color: #e03030;
}

/* App section */
body.dark .about-app-phone-placeholder {
  border-color: #1e1e1e;
}

body.dark .about-app-phone-screen {
  background: #2a2a2a;
}

body.dark .about-app-phone-notch {
  background: #1a1a1a;
}

body.dark .about-app-screen-bar {
  background: #3a3a3a;
}

body.dark .about-app-title {
  color: #f0f0f0;
}

body.dark .about-app-desc {
  color: #888;
}

body.dark .about-app-link {
  color: #ddd;
}

body.dark .about-app-link:hover {
  color: #e03030;
}

/* Brand section */
body.dark .about-brand-tagline {
  color: #444;
}

/* ────────────────────────────
   RESPONSIVE — compact at 768px
──────────────────────────── */
@media (max-width: 900px) {

  .about-hero {
    height: 340px;
  }

  .about-deploy-section {
    flex-direction: column;
    padding: 40px 32px 32px 32px;
    gap: 28px;
  }

  .about-deploy-left {
    margin-right: 0;
    flex: unset;
    width: 100%;
  }

  .about-grid-section {
    padding: 0 32px 48px 32px;
  }

  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-app-section {
    flex-direction: column;
    padding: 32px 32px 48px 32px;
    gap: 32px;
  }

  .about-brand-section {
    padding: 48px 32px 40px 32px;
  }

  .about-brand-logo-img {
    width: 280px;
  }

  .kit-medium-left,
  .kit-medium-right,
  .kit-tiny {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════
   OUR STORY SECTION
   Figma: "CONTACT SCREEN LIGHT" / About page
   – Centred label + large heading + 2 cards
══════════════════════════════════════════ */

/* ── Section wrapper ── */
.story-section {
  padding: 80px 80px 88px 80px;
  text-align: center;
  position: relative;
}

/* ── "OUR STORY" label row ── */
.story-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.story-label-dash {
  width: 24px;
  height: 1.5px;
  background: #8b1a1a;
  flex-shrink: 0;
}

.story-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #8b1a1a;
  text-transform: uppercase;
}

/* ── Large headline ── */
.story-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: #0d0d0d;
  max-width: 780px;
  margin: 0 auto 60px auto;
}

/* ── Cards row: two equal columns ── */
.story-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Individual story card ── */
.story-card {
  position: relative;
  background: #f0f0f0;
  border-radius: 16px;
  padding: 32px 32px 36px 32px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.story-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

/* ── Card title ── */
.story-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0d0d0d;
  letter-spacing: 0.1px;
  margin-bottom: 16px;
}

/* ── Thin divider line below title ── */
.story-card-divider {
  width: 100%;
  height: 1px;
  background: #d8d8d8;
  margin-bottom: 14px;
}

/* ── Bold sub-heading ── */
.story-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* ── Body text ── */
.story-card-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  color: #555;
  line-height: 1.75;
}

/* ── Shield watermark on Vision card ── */
.story-card--vision {
  /* Vision card uses same background */
}

/* ── Mission: image watermark (bottom-right) ── */
.our-missoin-story-card-watermark {
  position: absolute;
  bottom: 121px;
  left: 0px;
  width: 87px;
  height: 92px;
  pointer-events: none;
  z-index: 0;
}

.mission-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  display: block;
}



/* ── Vision: SVG shield watermark (bottom-right) ── */
.our-vision-story-card-watermark {
  position: absolute;
  bottom: 0px;
  right: -8px;
  width: 87px;
  height: 140px;
  pointer-events: none;
  z-index: 0;
}

.vision-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  display: block;
}

.story-shield-svg {
  width: 100%;
  height: 100%;
}

/* ────────────────────────────
   DARK MODE — Our Story
──────────────────────────── */
body.dark .story-heading {
  color: #f0f0f0;
}

body.dark .story-label-text,
body.dark .story-label-dash {
  color: #e03030;
  background: #e03030;
}

body.dark .story-label-text {
  background: transparent;
}

body.dark .story-card {
  background: #1e1e1e;
}

body.dark .story-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body.dark .story-card-title {
  color: #f0f0f0;
}

body.dark .story-card-divider {
  background: #2e2e2e;
}

body.dark .story-card-subtitle {
  color: #ddd;
}

body.dark .story-card-body {
  color: #888;
}

body.dark .story-card-watermark {
  color: #888;
  opacity: 0.12;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .story-section {
    padding: 56px 32px 64px 32px;
  }

  .story-heading {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .story-cards-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Make sure card content sits on top of the watermarks */
.story-card .story-card-title,
.story-card .story-card-divider,
.story-card .story-card-subtitle,
.story-card .story-card-body {
  position: relative;
  z-index: 1;
}

/* Dark mode */
body.dark .mission-icon-img {
  opacity: 0.12;
  filter: invert(1);
}

body.dark .our-vision-story-card-watermark {
  color: #aaa;
  opacity: 0.14;
}

/* ══════════════════════════════════════════
   CFAK.CSS — Product Detail Page
   Matches "CFAK LIGHT" Figma screen
══════════════════════════════════════════ */

/* ── Page wrapper ── */
.cfak-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Breadcrumb ── */
.cfak-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 0 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #888;
}

.breadcrumb-link {
  color: #888;
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumb-link:hover {
  color: #8b1a1a;
}

.breadcrumb-sep {
  color: #bbb;
}

.breadcrumb-current {
  color: #333;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   PRODUCT LAYOUT
   Left: gallery (sticky)  Right: details
══════════════════════════════════════════ */
.cfak-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}

/* ────────────────────────────
   LEFT COLUMN — Gallery
──────────────────────────── */
.cfak-gallery {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Main image box */
.cfak-main-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f0ede8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cfak-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.cfak-main-img-wrap:hover .cfak-main-img {
  transform: scale(1.04);
}

/* Thumbnail strip */
.cfak-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cfak-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #f0ede8;
  transition: border-color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.cfak-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cfak-thumb:hover {
  border-color: #bbb;
  transform: translateY(-1px);
}

.cfak-thumb--active {
  border-color: #8b1a1a !important;
}

/* Colour selector */
.cfak-colors,
.cfak-sizes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cfak-option-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #999;
  text-transform: uppercase;
}

.cfak-color-swatches {
  display: flex;
  gap: 10px;
}

.cfak-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, border-color 0.15s ease;
  outline: none;
}

.cfak-swatch:hover {
  transform: scale(1.15);
}

.cfak-swatch--active {
  border-color: #8b1a1a !important;
  box-shadow: 0 0 0 2px rgba(139, 26, 26, 0.20);
}

.cfak-swatch--olive {
  background: #6b7a4a;
}

.cfak-swatch--black {
  background: #1a1a1a;
}

.cfak-swatch--coyote {
  background: #b89b6a;
}

/* Size buttons */
.cfak-size-btns {
  display: flex;
  gap: 8px;
}

.cfak-size-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1.5px solid #d0d0d0;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cfak-size-btn:hover {
  border-color: #8b1a1a;
  color: #8b1a1a;
}

.cfak-size-btn--active {
  border-color: #8b1a1a;
  background: #8b1a1a;
  color: #ffffff;
}

/* ────────────────────────────
   RIGHT COLUMN — Details
──────────────────────────── */
.cfak-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Title block */
.cfak-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cfak-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #c0302a;
  text-transform: uppercase;
  margin: 0;
}

.cfak-name {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: #0d0d0d;
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 4px 0 6px 0;
}

/* Star rating */
.cfak-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cfak-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

.cfak-star-empty {
  color: #d0d0d0;
}

.cfak-review-count {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
}

/* Product description */
.cfak-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #444;
  line-height: 1.75;
}

/* ── Specs block ── */
.cfak-specs-block {
  border-top: 1px solid #e8e8e8;
  padding-top: 20px;
}

.cfak-specs-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0d0d0d;
  letter-spacing: 0.2px;
  margin: 0 0 16px 0;
}

/* 2-column spec grid */
.cfak-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 0;
}

.cfak-spec-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cfak-spec-item--wide {
  grid-column: 1 / -1;
}

.cfak-spec-item dt {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #999;
  text-transform: uppercase;
}

.cfak-spec-item dd {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

/* ── Action buttons ── */
.cfak-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.cfak-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  letter-spacing: 0.3px;
}

.cfak-btn--primary {
  background: #8b1a1a;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.28);
}

.cfak-btn--primary:hover {
  background: #7a1616;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.38);
}

.cfak-btn--secondary {
  background: transparent;
  color: #555;
  border: 1.5px solid #d0d0d0;
}

.cfak-btn--secondary:hover {
  border-color: #8b1a1a;
  color: #8b1a1a;
}

/* ══════════════════════════════════════════
   BRAND SECTION
══════════════════════════════════════════ */
.cfak-brand-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0 48px 0;
}

.cfak-brand-link {
  display: inline-flex;
  text-decoration: none;
}

.cfak-brand-img {
  width: 520px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════════════════════════════
   DARK MODE
══════════════════════════════════════════ */
body.dark .cfak-main-img-wrap {
  background: #2a2a2a;
}

body.dark .cfak-thumb {
  background: #2a2a2a;
}

body.dark .cfak-name {
  color: #f0f0f0;
}

body.dark .cfak-desc {
  color: #aaa;
}

body.dark .cfak-specs-heading {
  color: #e0e0e0;
}

body.dark .cfak-specs-block {
  border-top-color: #2a2a2a;
}

body.dark .cfak-spec-item dt {
  color: #666;
}

body.dark .cfak-spec-item dd {
  color: #ccc;
}

body.dark .cfak-size-btn {
  border-color: #333;
  color: #ccc;
}

body.dark .cfak-size-btn--active {
  background: #8b1a1a;
  color: #fff;
  border-color: #8b1a1a;
}

body.dark .breadcrumb-current {
  color: #ddd;
}

body.dark .cfak-btn--secondary {
  border-color: #333;
  color: #aaa;
}

body.dark .cfak-btn--secondary:hover {
  border-color: #8b1a1a;
  color: #e03030;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .cfak-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cfak-gallery {
    position: static;
  }

  .cfak-page {
    padding: 0 24px;
  }

  .cfak-name {
    font-size: 32px;
  }

  .cfak-brand-img {
    width: 280px;
  }
}

.cfak-specs-grid {
  grid-template-columns: 1fr;
}

.cfak-spec-item--wide {
  grid-column: 1;
}


