/* Layout Styles
======================================= */

:root {
  --brand: #0b2b5b;
  --accent: #00497d;
  --accent-dark: #003a63;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
}

.hn-main-container {
  width: 100%;
  margin-bottom: 0;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* BASE */
.bundles-wrap {
  color: var(--text);
}

.bundles-wrap * {
  box-sizing: border-box;
}

.bn-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.bn-hero {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  background: #f3f4f5;
}
.bn-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
  align-items: center;
}
.bn-hero h1 {
  font-size: 42px;
  line-height: 50.4px;
  color: var(--brand);
  margin: 0 0 18px;
}
.bn-sub {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}
.bn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}
.bn-btn-primary {
  background: var(--accent);
  color: #fff;
}
.bn-btn-primary:hover {
  background: var(--accent-dark);
}
/* HERO IMAGES */
.bn-hero-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.bn-hero-img img {
  width: 100%;
  border-radius: 12px;
}
/* STEPS */
.bn-steps {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bn-steps-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 24px 0;
  gap: 20px;
}
.bn-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bn-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
/* SWATCHES NON CLICKABLE */
.bn-swatches {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 6px;
}
.bn-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  pointer-events: none;
  cursor: default;
}
.bn-swatch[data-colour="Beige"] {
  background: #d9cbb8;
}
.bn-swatch[data-colour="Navy Blue"] {
  background: #0b2b5b;
}
.bn-swatch[data-colour="Grey Graphite"] {
  background: #5a5f66;
}
.bn-swatch[data-colour="Red Lilac"] {
  background: #9a5b72;
}
/* GRID */
.bn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
}
@media (max-width: 900px) {
  .bn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bn-hero-img {
    grid-template-columns: 1fr;
    justify-items: center
  }

  .bn-hero-img img {
    width: 80%;
  }

  .bn-steps-inner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
  padding: 24px 0;
  gap: 20px;
}
}
@media (max-width: 520px) {
  .bn-grid {
    grid-template-columns: 1fr;
  }
}
/* CARD UPDATED */
.bn-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

  .bn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  }

  .bn-card-media {
      position: relative;
  }

  .bn-card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .bn-card-body {
    padding: 14px;
  }
  .bn-includes {
    padding-left: 18px;
    padding-top: 8px;
    font-size: 14px;
    color: #374151;
  }
  .bn-from {
    font-weight: 800;
    color: var(--brand);
    margin-top: 6px;
  }
  .bn-card-foot {
    padding: 14px;
    margin-top: auto;
  }

  .ribbon {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--brand);
    color: white;
    padding: 2px 8px;
    border-radius: 50px;
  }
  /* BOTTOM */
  .bn-bottom {
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid var(--border);
  }
  .bn-bottom h2 {
    font-size: 22px;
    max-width: 700px;
    margin: auto;
    color: var(--brand);
  }
  .bn-strip {
    background: #f3f4f5;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .bn-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    font-weight: 600;
    color: var(--brand);
    gap: 10px;
  }
  @media (max-width: 600px) {
    .bn-strip-inner {
      grid-template-columns: 1fr;
      gap: 8px;
    }
  }

/* Font Styles
======================================= */

/* Media Queries
======================================= */
