/** Shopify CDN: Minification failed

Line 4880:0 Expected "}" to go with "{"

**/
/* =============================================
   KEEBEE — Shopify Theme Design System v1.0
   Primary: #40376E | Accent: #F4C531
   BG: #FAF8F3  | Text: #2F2A3A | Muted: #6B647A
   ============================================= */

/* --- Design Tokens --- */
:root {
  --kb-purple:        #40376E;
  --kb-purple-dark:   #2F2A3A;
  --kb-yellow:        #F4C531;
  --kb-yellow-hover:  #e0b220;
  --kb-bg:            #FAF8F3;
  --kb-white:         #FFFFFF;
  --kb-text:          #2F2A3A;
  --kb-muted:         #6B647A;
  --kb-border:        #EAE5D9;
  --kb-sale-red:      #E74855;

  --kb-font-display:  'Quicksand', sans-serif;
  --kb-font-body:     'Nunito Sans', sans-serif;

  --kb-radius-sm:     8px;
  --kb-radius-md:     14px;
  --kb-radius-lg:     28px;
  --kb-radius-xl:     40px;
  --kb-radius-pill:   100px;

  --kb-shadow-sm:     0 2px 8px rgba(47,42,58,0.06);
  --kb-shadow-md:     0 8px 24px rgba(47,42,58,0.10);
  --kb-shadow-xl:     0 24px 60px rgba(64,55,110,0.15);
  --kb-shadow-yellow: 0 24px 60px -12px rgba(244,197,49,0.55);

  --kb-container: 1400px;
  --kb-px: clamp(1.5rem, 5vw, 4rem);
}

/* --- Base overrides on Dawn --- */
body {
  background-color: var(--kb-bg) !important;
  font-family: var(--kb-font-body) !important;
  color: var(--kb-text) !important;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--kb-font-display) !important;
  color: var(--kb-text);
  font-weight: 700;
  line-height: 1.1;
}

/* Override Dawn font CSS variables */
:root {
  --font-body-family:    'Nunito Sans', sans-serif !important;
  --font-heading-family: 'Quicksand', sans-serif !important;
  --color-background:    250, 248, 243 !important;
  --color-foreground:    47, 42, 58 !important;
}

/* Main content spacing for fixed header */
#MainContent {
  padding-top: 5rem;
}

/* --- Layout Utilities --- */
.kb-container {
  max-width: var(--kb-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--kb-px);
  padding-right: var(--kb-px);
}

.kb-section { padding-top: clamp(3.5rem, 6vw, 5rem); }

.kb-overline {
  font-family: var(--kb-font-body);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kb-purple);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========================
   ANNOUNCEMENT BAR
   ======================== */
.kb-announcement-bar {
  background: var(--kb-purple);
  color: white;
  text-align: center;
  padding: 0.4rem var(--kb-px);
  font-family: var(--kb-font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
}

.kb-announcement-bar a { color: var(--kb-yellow); text-decoration: none; margin-left: 0.5rem; }

/* ========================
   HEADER
   ======================== */

.kb-header {
  position: fixed;
  top: 3rem;
  left: 0;
  right: 0;
  z-index: 100;
  transition: top 00.3s ease;
}
.kb-header--scrolled {
  top: 0;
  background-color: rgba(250,248,243,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--kb-border);
}
.kb-header__inner {
  max-width: var(--kb-container);
  margin: 0 auto;
  padding: 0 var(--kb-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.kb-header__logo { display: flex; align-items: center; text-decoration: none; }
.kb-header__logo img { width: auto; object-fit: contain; }
.kb-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .kb-header__nav { display: flex; } }

.kb-nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--kb-text);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.kb-nav-link:hover { color: var(--kb-purple); }
.kb-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--kb-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.kb-nav-link:hover::after { transform: scaleX(1); }

.kb-header__icons { display: flex; align-items: center; gap: 0.25rem; }

.kb-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--kb-text);
  text-decoration: none;
  transition: background-color 0.2s;
}
.kb-icon-btn:hover { background-color: rgba(64,55,110,0.06); }
.kb-icon-btn svg { width: 1.65rem; height: 1.65rem; }

.kb-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 1rem; height: 1rem;
  padding: 0 0.25rem;
  border-radius: 99px;
  font-size: 0.625rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
  font-family: var(--kb-font-body);
}
.kb-cart-badge { background: var(--kb-yellow); color: var(--kb-text); }
.kb-wish-badge { background: var(--kb-sale-red); color: white; }

.kb-account-btn { display: none; }
@media (min-width: 768px) { .kb-account-btn { display: flex; } }
.kb-menu-toggle { display: flex; }
@media (min-width: 768px) { .kb-menu-toggle { display: none; } }

/* Mobile Menu */
.kb-mobile-menu {
  display: none;
  background: var(--kb-bg);
  border-top: 1px solid var(--kb-border);
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
}
.kb-mobile-menu.is-open { display: block; }
.kb-mobile-menu__inner { padding: 1.5rem var(--kb-px) 2.5rem; }
.kb-mobile-nav-item { border-bottom: 1px solid var(--kb-border); }
.kb-mobile-nav-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--kb-text);
  text-decoration: none;
}
.kb-mobile-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--kb-text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--kb-font-body);
}
.kb-mobile-submenu-toggle svg { width: 1.25rem; height: 1.25rem; transition: transform 0.3s; }
.kb-mobile-submenu-toggle.is-open svg { transform: rotate(180deg); }

.kb-mobile-shop-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0 1rem;
}
.kb-mobile-shop-grid.is-open { display: grid; }

.kb-mobile-collection-tile {
  border-radius: var(--kb-radius-md);
  overflow: hidden;
  border: 1px solid var(--kb-border);
  background: var(--kb-white);
  text-decoration: none;
  display: block;
}

.kb-mobile-collection-tile__img{
  width:100%;
  height:110px;
  object-fit:cover;
  display:block;
}
.kb-mobile-collection-tile__label {
  padding: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--kb-text);
  text-align: center;
}

/* Search Overlay */
.kb-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(47,42,58,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.kb-search-overlay.is-open { display: flex; }
.kb-search-box {
  width: min(42rem, 90vw);
  background: var(--kb-white);
  border-radius: var(--kb-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--kb-shadow-xl);
  position: relative;
}
.kb-search-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-pill);
  padding: 0.75rem 1.25rem;
}
.kb-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--kb-font-body);
  font-size: 1rem;
  color: var(--kb-text);
}
.kb-search-input::placeholder { color: var(--kb-muted); }
.kb-search-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(250,248,243,0.9);
  border: 1px solid var(--kb-border);
  border-radius: 50%;
  width: 2rem; height: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kb-search-results { margin-top: 1rem; }
.kb-search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--kb-radius-sm);
  text-decoration: none;
  color: var(--kb-text);
  transition: background-color 0.15s;
}
.kb-search-result-item:hover { background: var(--kb-bg); }
.kb-search-native {
  display: block;
}
.kb-search-reset {
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: var(--kb-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.kb-search-reset svg {
  width: 1rem;
  height: 1rem;
}
.kb-search-results.predictive-search {
  position: static;
  display: none;
  width: 100%;
  max-height: min(55vh, 28rem);
  overflow-y: auto;
  border: 1.5px solid var(--kb-border) !important;
  border-radius: var(--kb-radius-md) !important;
  box-shadow: none;
  background: var(--kb-white);
}
.kb-search-native[open] .kb-search-results.predictive-search,
.kb-search-native[loading] .kb-search-results.predictive-search {
  display: block;
}
.kb-search-results .predictive-search__results-groups-wrapper {
  display: block;
  padding: 0.5rem;
}
.kb-search-results .predictive-search__heading {
  margin: 0.75rem 0.75rem 0.375rem;
  color: var(--kb-muted);
  font-family: var(--kb-font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kb-search-results .predictive-search__results-list {
  margin: 0;
  padding: 0;
}
.kb-search-results .predictive-search__item {
  min-height: auto;
  padding: 0.625rem 0.75rem;
  border-radius: var(--kb-radius-sm);
  color: var(--kb-text);
  text-decoration: none;
}
.kb-search-results .predictive-search__item:hover,
.kb-search-results .predictive-search__list-item[aria-selected='true'] .predictive-search__item {
  background: var(--kb-bg);
}
.kb-search-results .predictive-search__image {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--kb-radius-sm);
  object-fit: cover;
}
.kb-search-results .predictive-search__item-heading {
  margin: 0;
  font-family: var(--kb-font-body) !important;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--kb-text);
}
.kb-search-results .predictive-search__search-for-button {
  padding: 0.5rem;
  border-top: 1px solid var(--kb-border);
}
.kb-nav-sale{
  color:#E74855;
}

/* ========================
   BUTTONS
   ======================== */
.kb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--kb-radius-pill);
  padding: 0.9rem 1.75rem;
  font-family: var(--kb-font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  line-height: 1;
}
.kb-btn:active { transform: scale(0.98); }
.kb-btn--primary   { background: var(--kb-purple); color: white; }
.kb-btn--primary:hover { background: var(--kb-purple-dark); }
.kb-btn--secondary { background: var(--kb-bg); color: var(--kb-purple); }
.kb-btn--secondary:hover { background: white; }
.kb-btn--yellow    { background: var(--kb-yellow); color: var(--kb-text); }
.kb-btn--yellow:hover { background: var(--kb-yellow-hover); }
.kb-btn--outline-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}
.kb-btn--outline-white:hover { background: white; color: var(--kb-purple); }

/* ========================
   HERO SECTION
   ======================== */

.kb-hero {
  padding: 0.25rem var(--kb-px) 0;
}

.kb-hero__inner {
  max-width: var(--kb-container);
  margin: 0 auto;
}

.kb-hero__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--kb-radius-xl);
  height: 78vh;
}

@media (min-width: 768px) {
  .kb-hero__media {
    height: 86vh;
  }
}

.kb-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.10),
    transparent
  );
}

.kb-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

@media (min-width: 768px) {
  .kb-hero__content {
    padding: 4rem;
  }
}

/* OVERLINE */

.kb-hero__overline {
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;

  font-size: var(--hero-mobile-overline-size);
  color: var(--hero-overline-color);
}

@media (min-width: 768px) {
  .kb-hero__overline {
    font-size: var(--hero-desktop-overline-size);
  }
}

/* HEADING */

.kb-hero__heading {
  font-family: var(--kb-font-display) !important;
  line-height: 1;
  font-weight: 700;
  max-width: 36rem;

  font-size: var(--hero-mobile-heading-size);
  color: var(--hero-heading-color);
}

@media (min-width: 768px) {
  .kb-hero__heading {
    font-size: var(--hero-desktop-heading-size);
  }
}

/* SUBTEXT */

.kb-hero__subtext {
  margin-top: 0.2rem;
  max-width: 28rem;
  line-height: 1.6;

  color: var(--hero-subtext-color);
  font-size: var(--hero-mobile-subtext-size);
}

@media (min-width: 768px) {
  .kb-hero__subtext {
    font-size: var(--hero-desktop-subtext-size);
  }
}

/* BUTTONS */

.kb-hero__buttons {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
/* ========================
   STORY ICONS
   ======================== */
.kb-story-icons { padding-top: 3rem; }
@media (min-width: 768px) { .kb-story-icons { padding-top: 4rem; } }
.kb-story-icons__scroll {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 0.55rem;
  align-items: start;
}

@media (min-width: 768px) {
  .kb-story-icons__scroll {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.kb-story-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  min-width: 0;
}

@media (min-width: 768px) {
  .kb-story-icon {
    min-width: 0;
  }
}

.kb-story-icon__ring {
  width: min(8.4rem, 24vw);
  height: min(8.4rem, 24vw);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--kb-border);
  background: var(--kb-white);
  transition: border-color 0.2s;
}

.kb-story-icon:hover .kb-story-icon__ring {
  border-color: var(--kb-purple);
}

.kb-story-icon__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.kb-story-icon:hover .kb-story-icon__ring img {
  transform: scale(1.1);
}

.kb-story-icon__label {
  display: grid;
  justify-items: center;
  width: 100%;
  min-height: 3rem;
  margin: 0.45rem auto 0;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
  color: var(--kb-text);
  max-width: 90px;
  text-align: center;
  line-height: 1.2;
}

.kb-story-icon__label span {
  display: block;
  max-width: 100%;
}

@media (min-width: 768px) {
  .kb-story-icon__ring {
    width: 9rem;
    height: 9rem;
    border-radius: 24px;
  }
}

/* ========================
   BENTO GRID
   ======================== */
.kb-bento { padding-top: 0; }
.kb-bento__heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--kb-text);
  max-width: 36rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .kb-bento__heading {
    font-size: 2.5rem;
    line-height: 1.05;
  }
}
.kb-bento__mobile { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .kb-bento__mobile { display: none; } }
.kb-bento__desktop { display: none; }
@media (min-width: 768px) {
  .kb-bento__desktop {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
  }
}
.kb-bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--kb-radius-lg);
  text-decoration: none;
  display: block;
}
.kb-bento-tile--mobile { height: 60vh; }
.kb-bento-tile--wide { grid-column: span 4; aspect-ratio: 16/10.5; }
.kb-bento-tile--med  { grid-column: span 2; aspect-ratio: 3/4; }
.kb-bento-tile--full { grid-column: span 6; aspect-ratio: 21/9; }
.kb-bento-tile--skincare {
  box-shadow: var(--kb-shadow-yellow);
  outline: 4px solid var(--kb-yellow);
  outline-offset: -4px;
}
.kb-bento-tile__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.kb-bento-tile:hover .kb-bento-tile__img { transform: scale(1.05); }
.kb-bento-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.15), transparent);
}
.kb-bento-tile__content {
  position: absolute;
  bottom: 0; left: 0;
  padding: 2rem;
  color: white;
}
.kb-bento-tile__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  background: var(--kb-yellow);
  color: var(--kb-text);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--kb-radius-pill);
  padding: 0.375rem 0.75rem;
}
.kb-bento-tile__overline {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}
.kb-bento-tile__name {
  font-family: var(--kb-font-display) !important;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 700;
}
/* ========================
   SECTION HEADERS
   ======================== */
.kb-section-header {
  margin-bottom: 1.5rem;
}

.kb-title-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.kb-section-title {
  margin: 0;
  font-family: var(--kb-font-display) !important;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--kb-text);
  line-height: 1;
}
@media (max-width: 767px) {
  .kb-section-title {
    font-size: 2.5rem;
  }
}
.kb-section-header__link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--kb-purple);
  text-decoration: none;
  margin-bottom: 0.15em;
  line-height: 1;
}
@media (max-width: 767px) {
  .kb-title-row .kb-section-header__link {
    transform: translateY(2px);
  }
}
.kb-section-header__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* ========================
   PRODUCT CARDS
   ======================== */
.kb-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .kb-product-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
}
.kb-product-card {
  position: relative;
}
.kb-product-card__link {
  text-decoration: none;
  display: block;
}
.kb-product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--kb-radius-md);
  aspect-ratio: 3/4;
  background: var(--kb-white);
}
.kb-product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.kb-product-card__link:hover .kb-product-card__img { transform: scale(1.04); }
.kb-product-card__badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--kb-sale-red);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--kb-radius-pill);
}
.kb-product-card__wishlist {
  position: absolute;
  font-size: 1.5rem;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}
.kb-product-card__wishlist svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
.kb-product-card__info { padding: 0.75rem 0 0; }
.kb-product-card__name {
  font-weight: 600;
  color: var(--kb-text);
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.kb-product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--kb-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.kb-product-card__price--sale { color: var(--kb-sale-red); font-weight: 700; }
.kb-product-card__price--compare { color: var(--kb-muted); text-decoration: line-through; }

/* ========================
   SKINCARE FEATURE
   ======================== */
   

.kb-skincare-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: #F5F0E7;
  border-radius: 32px;
  padding: 1.5rem 1.5rem;
}
@media (min-width: 768px) { .kb-skincare-feature { grid-template-columns: 7fr 5fr; gap: 3rem; } }
.kb-skincare-feature__media {
  position: relative;
  aspect-ratio: 5 / 4;
}
.kb-skincare-feature__copy { display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; }
.kb-skincare-feature__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--kb-radius-xl);
}
.kb-skincare-feature__badge {
  position: absolute;
  bottom: -1.25rem; right: -0.75rem;
  background: var(--kb-yellow);
  color: var(--kb-text);
  border-radius: var(--kb-radius-pill);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  box-shadow: var(--kb-shadow-md);
  white-space: nowrap;
}
.kb-skincare-feature__overline {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kb-purple);
}

.kb-skincare-feature__title {
  font-family: var(--kb-font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--kb-text);
}

.kb-skincare-feature__text {
  font-size: 2rem;
  line-height: 1.8;
  color: var(--kb-muted);
  max-width: 38rem;
}

@media (max-width: 767px) {
  .kb-skincare-feature__title {
    font-size: 2.75rem;
  }

  .kb-skincare-feature__text {
    font-size: 1.5rem;
  }
}
/* ========================
   BRAND STORY
   ======================== */
.kb-brand-story__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--kb-radius-xl);
  height: 60vh;
}
@media (min-width: 768px) { .kb-brand-story__media { height: 70vh; } }
.kb-brand-story__img { width: 100%; height: 100%; object-fit: cover; }
.kb-brand-story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(64,55,110,0.85), rgba(64,55,110,0.40), transparent);
}
.kb-brand-story__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.kb-brand-story__text {
  padding: 2rem;
  max-width: 32rem;
  color: white;
}
@media (min-width: 768px) { .kb-brand-story__text { padding: 4rem; } }

/* ========================
   JOURNAL
   ======================== */
.kb-journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 768px) { .kb-journal-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.kb-journal-card { text-decoration: none; display: block; }
.kb-journal-card__media {
  overflow: hidden;
  border-radius: var(--kb-radius-lg);
  aspect-ratio: 16/10;
}
.kb-journal-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.kb-journal-card:hover .kb-journal-card__img { transform: scale(1.04); }
.kb-journal-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--kb-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 1.25rem;
}
.kb-journal-card__title {
  font-family: var(--kb-font-display) !important;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--kb-text);
  margin-top: 0.5rem;
  line-height: 1.2;
}
.kb-journal-card__excerpt {
  color: var(--kb-muted);
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ========================
   FOOTER
   ======================== */
.kb-footer {
  background: var(--kb-text);
  color: rgba(255,255,255,0.7);
  margin-top: 5rem;
  padding: 4rem var(--kb-px) 2rem;
  font-family: var(--kb-font-body);
}
.kb-footer__grid {
  max-width: var(--kb-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .kb-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}
.kb-footer__logo {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  display: block;
}
.kb-footer__logo-text {
  display: block;
  color: var(--kb-white);
  font-family: var(--kb-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.kb-footer__tagline { font-size: 1.25rem; line-height: 1.6; max-width: 22rem; }
.kb-footer__heading {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: white;
  margin-bottom: 1.25rem;
  font-family: var(--kb-font-body);
}
.kb-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.kb-footer__links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 1.15rem; transition: color 0.2s; }
.kb-footer__links a:hover { color: white; }
.kb-footer__links a.kb-footer__sale-link { color: var(--kb-yellow); }
.kb-footer__newsletter { margin-top: 1.5rem; }
.kb-footer__newsletter-label { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: white; margin-bottom: 0.75rem; }
.kb-footer__newsletter-form {
  display: flex;
  border-radius: var(--kb-radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  margin-top: 0.5rem;
}
.kb-footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1.25rem;
  font-family: var(--kb-font-body);
  font-size: 0.875rem;
  color: white;
}
.kb-footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.kb-footer__newsletter-btn {
  background: var(--kb-yellow);
  color: var(--kb-text);
  border: none;
  padding: 0.75rem 1.25rem;
  font-family: var(--kb-font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.2s;
}
.kb-footer__newsletter-btn:hover { background: var(--kb-yellow-hover); }
.kb-footer__bottom {
  max-width: var(--kb-container);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.kb-footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.kb-footer__legal a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.kb-footer__legal a:hover { color: rgba(255,255,255,0.8); }
.kb-footer__social { display: flex; gap: 0.75rem; }
.kb-footer__social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background-color 0.2s;
}

.kb-footer__social-link:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}

.kb-footer__social-link svg {
  width: 2rem;
  height: 2rem;
}

@media (max-width: 767px) {

  .kb-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }

  .kb-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .kb-footer__newsletter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }

  .kb-footer__social {
    margin: 0 !important;
    gap: 0;
  }

}
.kb-footer__newsletter-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:1rem;
}

.kb-footer__newsletter-header .kb-footer__social{
  margin:0;
}

.kb-footer__newsletter-header .kb-footer__newsletter-label{
  margin:0;
}
/* ========================
   DAWN OVERRIDES
   ======================== */
.button--primary,
.shopify-payment-button__button--unbranded {
  background: var(--kb-purple) !important;
  color: white !important;
  border-radius: var(--kb-radius-pill) !important;
  font-family: var(--kb-font-body) !important;
}
.button--secondary {
  border-color: var(--kb-purple) !important;
  color: var(--kb-purple) !important;
  border-radius: var(--kb-radius-pill) !important;
}
.drawer .drawer__header { border-color: var(--kb-border) !important; }
.predictive-search {
  border-radius: var(--kb-radius-md) !important;
  border-color: var(--kb-border) !important;
}
.price--on-sale .price-item--regular { color: var(--kb-muted); text-decoration: line-through; }
.price--on-sale .price-item--sale { color: var(--kb-sale-red); }

/* Sale badge override */
.badge--sale { background: var(--kb-sale-red) !important; border-radius: var(--kb-radius-pill) !important; }
.badge--sold-out { background: var(--kb-muted) !important; border-radius: var(--kb-radius-pill) !important; }

/* ========================
   COLLECTION PAGE
   ======================== */
.kb-sale-banner {
  background: #FFF3CD;
  border-left: 3px solid var(--kb-yellow);
  color: var(--kb-text);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem var(--kb-px);
  margin: 0;
}

.kb-collection-header { padding: 2.25rem var(--kb-px) 0; max-width: var(--kb-container); margin: 0 auto; }
.kb-collection-header h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 0; }
.kb-collection-header p { color: var(--kb-muted); margin-top: 0.5rem; font-size: 1rem; max-width: 42rem; line-height: 1.6; }
.kb-collection-back-wrap {
  max-width: var(--kb-container);
  margin: 0 auto;
  padding: 0.95rem var(--kb-px) 0;
}
.kb-collection-back-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--kb-border);
  background: var(--kb-white);
  color: var(--kb-purple);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: var(--kb-shadow-sm);
}
.kb-collection-back-pill:hover {
  border-color: var(--kb-purple);
  box-shadow: 0 0 0 3px rgba(64,55,110,0.08);
}

.kb-collection-stories {
  max-width: var(--kb-container);
  margin: 0 auto;
  padding: 0.95rem var(--kb-px) 0;
}
.kb-collection-stories__header {
  margin-bottom: 0.65rem;
}
.kb-collection-stories__scroll {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.9rem, 1.8vw, 1.45rem);
  overflow-x: auto;
  padding: 0.1rem 0.25rem 0.25rem;
  margin: 0 -0.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.kb-collection-stories__scroll::-webkit-scrollbar {
  display: none;
}
.kb-collection-story {
  width: 6.35rem;
  flex: 0 0 6.35rem;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
  text-decoration: none;
  color: var(--kb-text);
  scroll-snap-align: start;
}
.kb-collection-story__media {
  width: 5.65rem;
  height: 5.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  box-shadow: var(--kb-shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.kb-collection-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.kb-collection-story__fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(64,55,110,0.1), rgba(244,197,49,0.18));
  color: var(--kb-purple);
  font-family: var(--kb-font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.kb-collection-story__label {
  display: grid;
  justify-items: center;
  color: var(--kb-text);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}
.kb-collection-story__label span {
  display: block;
  max-width: 100%;
}
.kb-collection-story:hover .kb-collection-story__media,
.kb-collection-story--active .kb-collection-story__media {
  border-color: var(--kb-purple);
  box-shadow: 0 0 0 3px rgba(64,55,110,0.09);
  transform: translateY(-1px);
}
.kb-collection-story:hover .kb-collection-story__img {
  transform: scale(1.08);
}
.kb-collection-story--active .kb-collection-story__label {
  color: var(--kb-purple);
}

.kb-filter-bar {
  padding: 1rem var(--kb-px) 0;
  max-width: var(--kb-container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}
.kb-filter-groups {
  display: grid;
  gap: 0.875rem;
  flex: 1 1 42rem;
  min-width: 0;
}
.kb-filter-groups--compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.kb-filter-group {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
}
.kb-filter-group__label {
  color: var(--kb-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.kb-pill {
  display: inline-flex;
  align-items: center;
  border-radius: var(--kb-radius-pill);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--kb-font-body);
  border: 1.5px solid var(--kb-border);
  background: var(--kb-white);
  color: var(--kb-muted);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}
.kb-pill:hover { border-color: var(--kb-purple); color: var(--kb-purple); }
.kb-pill--active { background: var(--kb-purple); color: white; border-color: var(--kb-purple); }

.kb-filter-menu {
  position: relative;
}
.kb-filter-menu--main {
  margin-left: auto;
}
.kb-filter-menu summary {
  list-style: none;
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1rem;
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-pill);
  background: var(--kb-white);
  color: var(--kb-text);
  font-family: var(--kb-font-body);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--kb-shadow-sm);
}
.kb-filter-menu--main summary {
  min-width: 9rem;
}
.kb-filter-menu summary::-webkit-details-marker {
  display: none;
}
.kb-filter-menu[open] summary {
  border-color: var(--kb-purple);
}
.kb-filter-menu__chevron {
  color: var(--kb-purple);
  font-size: 1rem;
  line-height: 1;
}
.kb-filter-menu__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 20;
  min-width: 13rem;
  max-height: 18rem;
  overflow-y: auto;
  padding: 0.55rem;
  border: 1px solid var(--kb-border);
  border-radius: var(--kb-radius-md);
  background: var(--kb-white);
  box-shadow: var(--kb-shadow-md);
}
.kb-filter-menu__panel--price {
  min-width: 17rem;
}
.kb-filter-menu__panel--main {
  left: auto;
  right: 0;
  min-width: 18rem;
  max-width: min(22rem, calc(100vw - 2rem));
  max-height: min(32rem, calc(100vh - 10rem));
  padding: 0.75rem;
}
.kb-filter-section {
  padding: 0.75rem 0;
  border-top: 1px solid var(--kb-border);
}
.kb-filter-section:first-child {
  padding-top: 0.25rem;
  border-top: 0;
}
.kb-filter-section:last-child {
  padding-bottom: 0.25rem;
}
.kb-filter-section__title {
  margin: 0 0 0.4rem;
  color: var(--kb-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kb-filter-choice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.7rem;
  border-radius: var(--kb-radius-sm);
  color: var(--kb-text);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}
.kb-filter-choice:hover {
  background: rgba(64,55,110,0.06);
}
.kb-filter-choice__box {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border: 1.5px solid var(--kb-border);
  border-radius: 0.25rem;
  background: var(--kb-white);
}
.kb-filter-choice--active .kb-filter-choice__box {
  border-color: var(--kb-purple);
  background: var(--kb-purple);
  box-shadow: inset 0 0 0 3px var(--kb-white);
}
.kb-price-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.kb-price-filter label {
  display: grid;
  gap: 0.35rem;
  color: var(--kb-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kb-price-filter input {
  width: 100%;
  min-height: 2.5rem;
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-sm);
  padding: 0 0.7rem;
  color: var(--kb-text);
  font: inherit;
}
.kb-price-filter button {
  grid-column: 1 / -1;
  min-height: 2.6rem;
  border: 0;
  border-radius: var(--kb-radius-pill);
  background: var(--kb-purple);
  color: var(--kb-white);
  font-family: var(--kb-font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.kb-filter-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 749px) {
  .kb-filter-bar {
    align-items: center;
    flex-direction: row;
    gap: 0.75rem;
    padding-top: 0.75rem;
  }
  .kb-collection-stories {
    padding-top: 0.75rem;
  }
  .kb-collection-stories__header {
    margin-bottom: 0.6rem;
  }
  .kb-collection-stories__scroll {
    gap: 1.15rem;
    padding-bottom: 0.15rem;
  }
  .kb-collection-story {
    width: 5.9rem;
    flex-basis: 5.9rem;
    gap: 0.55rem;
  }
  .kb-collection-story__media {
    width: 5.35rem;
    height: 5.35rem;
  }
  .kb-collection-story__label {
    font-size: 0.82rem;
    line-height: 1.15;
  }
  .kb-filter-groups--compact {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }
  .kb-filter-menu {
    position: relative;
    flex: 0 0 auto;
  }
  .kb-filter-menu--main {
    margin-left: auto;
  }
  .kb-filter-menu summary {
    min-height: 2.9rem;
  }
  .kb-filter-menu__panel {
    left: 0;
    right: auto;
    min-width: min(18rem, calc(100vw - 2rem));
    max-height: 55vh;
  }
  .kb-filter-menu__panel--main {
    left: auto;
    right: 0;
    min-width: min(20rem, calc(100vw - 2rem));
  }
  .kb-filter-group {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .kb-filter-group__label {
    font-size: 0.7rem;
  }
  .kb-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }
  .kb-pills::-webkit-scrollbar { display: none; }
  .kb-pill {
    flex: 0 0 auto;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
  .kb-filter-meta {
    justify-content: flex-start;
    margin-left: 0;
  }
  .kb-collection-grid-wrap {
    padding-top: 0.85rem;
  }
}

.kb-hidden-seo {
  display: none;
}

.kb-collection-grid-wrap { max-width: var(--kb-container); margin: 0 auto; padding: 1rem var(--kb-px) 4rem; }

.kb-stock-indicator {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(47,42,58,0.8);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--kb-radius-pill);
}

/* Pagination */
.kb-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
.kb-pagination a, .kb-pagination span {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--kb-border);
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; color: var(--kb-text);
  transition: background-color 0.15s;
}
.kb-pagination a:hover { background: var(--kb-bg); }
.kb-pagination .current { background: var(--kb-purple); color: white; border-color: var(--kb-purple); }

/* ========================
   PDP — Product Detail
   ======================== */
.kb-breadcrumb {
  padding: 1.25rem var(--kb-px) 0;
  max-width: var(--kb-container);
  margin: 0 auto;
  font-size: 0.8125rem;
  color: var(--kb-muted);
}
.kb-breadcrumb a { color: var(--kb-muted); text-decoration: none; }
.kb-breadcrumb a:hover { color: var(--kb-purple); }
.kb-breadcrumb span { margin: 0 0.375rem; }

.kb-pdp { max-width: var(--kb-container); margin: 0 auto; padding: 0 var(--kb-px) 4rem; }
.kb-pdp__media { min-width: 0; }

.kb-pdp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .kb-pdp__grid { grid-template-columns: 55fr 45fr; gap: 4rem; align-items: start; }
}

/* Media Gallery — Mobile (swipe carousel) */
.kb-media-carousel { display: block; }
@media (min-width: 768px) { .kb-media-carousel { display: none; } }
.kb-media-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: var(--kb-radius-lg);
  gap: 0;
}
.kb-media-track::-webkit-scrollbar { display: none; }
.kb-media-slide {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4/5;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--kb-white);
}
.kb-media-slide img,
.kb-media-slide video { width: 100%; height: 100%; object-fit: cover; }
.kb-media-dots {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.875rem;
}
.kb-media-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--kb-border);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, width 0.2s;
  padding: 0;
}
.kb-media-dot.is-active { background: var(--kb-purple); width: 1.25rem; border-radius: var(--kb-radius-pill); }

/* Media Gallery — Desktop (thumb strip + main) */
.kb-media-gallery-desktop { display: none; }
@media (min-width: 768px) {
  .kb-media-gallery-desktop {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
}
.kb-thumb-strip {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 80px;
  flex-shrink: 0;
}
.kb-thumb {
  width: 80px; height: 80px;
  border-radius: var(--kb-radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--kb-border);
  cursor: pointer;
  padding: 0;
  background: var(--kb-white);
  transition: border-color 0.15s;
  flex-shrink: 0;
  position: relative;
}
.kb-thumb.is-active { border-color: var(--kb-purple); }
.kb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.kb-thumb--video::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}
.kb-main-media {
  flex: 1;
  border-radius: var(--kb-radius-xl);
  overflow: hidden;
  background: var(--kb-white);
  aspect-ratio: 4/5;
  position: relative;
}
.kb-main-media__img,
.kb-main-media__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.kb-main-media__video { display: none; }

/* Product Info */
.kb-pdp__info { padding-top: 0; }
@media (min-width: 768px) { .kb-pdp__info { position: sticky; top: 6rem; } }

.kb-pdp__title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 0 0 0.875rem;
}
@media (min-width: 768px) { .kb-pdp__title { font-size: 3.2rem; } }
.kb-pdp__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  color: var(--kb-text);
  text-decoration: none;
  margin-bottom: 1rem;
}
.kb-pdp__rating .stars { color: var(--kb-yellow); letter-spacing: 0.05em; font-size: 1rem; }
.kb-pdp__rating .count { color: var(--kb-muted); text-decoration: underline; text-underline-offset: 2px; }

.kb-pdp__price {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .kb-pdp__price { font-size: 2.2rem; } }
.kb-pdp__price--sale { color: var(--kb-sale-red); }
.kb-pdp__price--compare { color: var(--kb-muted); font-size: 1.35rem; font-weight: 400; text-decoration: line-through; }
.kb-save-badge {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--kb-sale-red);
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: var(--kb-radius-pill);
}

.kb-sale-disclaimer {
  background: #FFF3CD;
  border-left: 3px solid var(--kb-yellow);
  color: var(--kb-text);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 0 var(--kb-radius-sm) var(--kb-radius-sm) 0;
  margin-bottom: 1.25rem;
}

.kb-option-group { margin-bottom: 1.5rem; }
.kb-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.kb-option-label { font-size: 1.25rem; font-weight: 700; color: var(--kb-text); }
.kb-size-guide-trigger {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--kb-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--kb-font-body);
}

.kb-size-pills { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.kb-size-pill {
  min-width: 4.5rem;
  min-height: 4.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--kb-radius-sm);
  border: 1.5px solid var(--kb-border);
  background: var(--kb-white);
  font-family: var(--kb-font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--kb-text);
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.kb-size-pill:hover { border-color: var(--kb-purple); }
.kb-size-pill.is-selected { background: var(--kb-purple); color: white; border-color: var(--kb-purple); }
.kb-size-pill--unavailable { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* ATC row */
.kb-pdp__actions { display: flex; align-items: center; gap: 0.875rem; margin: 1.75rem 0; }
.kb-pdp__actions form { flex: 1; }
.kb-atc-btn { width: 100%; justify-content: center; font-size: 1.35rem; padding: 1.35rem 1.75rem; min-height: 4.75rem; }
.kb-pdp__secondary-actions { display: flex; gap: 0.25rem; }
.kb-pdp__secondary-actions .kb-icon-btn { width: 4.5rem; height: 4.5rem; }
.kb-pdp__secondary-actions .kb-icon-btn svg { width: 2.25rem; height: 2.25rem; }

/* Trust Trio */
.kb-trust-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  padding: 1.375rem 0;
  border-top: 1px solid var(--kb-border);
  border-bottom: 1px solid var(--kb-border);
  margin-bottom: 1.5rem;
}
.kb-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  flex-direction: column;
}
@media (min-width: 480px) { .kb-trust-item { flex-direction: row; align-items: center; } }
.kb-trust-item svg { width: 2.2rem; height: 2.2rem; flex-shrink: 0; color: var(--kb-purple); }
.kb-trust-item__label { font-size: 1.05rem; font-weight: 700; color: var(--kb-text); line-height: 1.2; }
.kb-trust-item__sub { font-size: 0.95rem; color: var(--kb-muted); line-height: 1.25; }

/* Description accordions */
.kb-accordion { border-top: 1px solid var(--kb-border); }
.kb-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0;
  background: none;
  border: none;
  font-family: var(--kb-font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--kb-text);
  cursor: pointer;
  border-bottom: 1px solid var(--kb-border);
}
.kb-accordion__trigger svg { width: 1.65rem; height: 1.65rem; transition: transform 0.3s; flex-shrink: 0; }
.kb-accordion__trigger.is-open svg { transform: rotate(180deg); }
.kb-accordion__body { display: none; padding: 1.125rem 0; font-size: 1.15rem; line-height: 1.75; color: var(--kb-muted); }
.kb-accordion__body.is-open { display: block; }

/* Size Guide Modal */
.kb-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(47,42,58,0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.kb-modal-overlay.is-open { display: flex; }
.kb-modal {
  background: var(--kb-white);
  border-radius: var(--kb-radius-xl);
  padding: 2rem;
  max-width: 36rem;
  width: 100%;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}
.kb-modal h2 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.kb-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--kb-border);
  background: var(--kb-bg);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--kb-text);
}
.kb-size-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.kb-size-table th, .kb-size-table td {
  border: 1px solid var(--kb-border);
  padding: 0.625rem 0.75rem;
  text-align: left;
}
.kb-size-table thead { background: var(--kb-bg); font-weight: 700; }

/* FBT Strip */
.kb-fbt-strip {
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-xl);
  padding: 1.5rem;
  margin: 3rem 0;
}
@media (min-width: 768px) { .kb-fbt-strip { padding: 2rem; } }
.kb-fbt-strip h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.kb-fbt-strip h3 .kb-fbt-save-badge {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--kb-yellow);
  color: var(--kb-text);
  padding: 0.25rem 0.625rem;
  border-radius: var(--kb-radius-pill);
}
.kb-fbt-products {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  flex-wrap: wrap;
}
.kb-fbt-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex: 1;
  min-width: 220px;
}
.kb-fbt-plus { font-size: 1.75rem; color: var(--kb-muted); font-weight: 300; }
.kb-fbt-img {
  width: 7.2rem; height: 7.2rem;
  border-radius: var(--kb-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
@media (min-width: 768px) { .kb-fbt-img { width: 8rem; height: 8rem; } }
.kb-fbt-info__name { font-size: 1.25rem; font-weight: 700; color: var(--kb-text); line-height: 1.35; }
.kb-fbt-info__price { font-size: 1.1rem; color: var(--kb-muted); margin-top: 0.25rem; }
.kb-fbt-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--kb-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.kb-fbt-total { font-size: 1.15rem; color: var(--kb-muted); }
.kb-fbt-total strong { color: var(--kb-text); font-size: 1.65rem; }
.kb-fbt-total__compare {
  color: var(--kb-muted);
  font-size: 1.25rem;
  margin-left: 0.5rem;
  text-decoration: line-through;
}
.kb-fbt-footer .kb-btn { font-size: 1.15rem; min-height: 4.4rem; padding: 1.15rem 1.75rem; }
.kb-bundle-build-link { justify-content: center; min-height: 4.4rem; }
@media (max-width: 767px) {
  .kb-fbt-products {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }
  .kb-fbt-item {
    width: 100%;
    min-width: 0;
  }
  .kb-fbt-plus { display: none; }
  .kb-fbt-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .kb-fbt-footer .kb-btn { justify-content: center; width: 100%; }
}

/* Bundle Builder */
.kb-bundle-builder {
  max-width: var(--kb-container);
  margin: 0 auto;
  padding: 3rem var(--kb-px) 8rem;
}
.kb-bundle-hero {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .kb-bundle-hero {
    grid-template-columns: 1fr auto;
    margin-bottom: 2.5rem;
  }
}
.kb-bundle-hero h1 {
  font-size: 2.6rem;
  line-height: 1.05;
  margin: 0.5rem 0 0;
}
@media (min-width: 768px) { .kb-bundle-hero h1 { font-size: 4rem; } }
.kb-bundle-hero p {
  color: var(--kb-muted);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 48rem;
  margin-top: 0.875rem;
}
.kb-bundle-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-pill);
  padding: 0.75rem 1rem;
  color: var(--kb-text);
  font-weight: 700;
}
.kb-bundle-summary__count {
  display: grid;
  place-items: center;
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--kb-purple);
  color: var(--kb-white);
}
.kb-bundle-tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  scrollbar-width: none;
}
.kb-bundle-tabs::-webkit-scrollbar { display: none; }
.kb-bundle-tab {
  flex: 0 0 auto;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-pill);
  background: var(--kb-white);
  color: var(--kb-text);
  font-family: var(--kb-font-body);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}
.kb-bundle-tab.is-active {
  background: var(--kb-purple);
  border-color: var(--kb-purple);
  color: var(--kb-white);
}
.kb-bundle-panel { display: none; }
.kb-bundle-panel.is-active { display: block; }
.kb-bundle-panel__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.kb-bundle-panel__header h2 {
  font-size: 1.5rem;
  margin: 0;
}
.kb-bundle-panel__header span {
  color: var(--kb-muted);
  font-size: 0.95rem;
  font-weight: 700;
}
.kb-bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .kb-bundle-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
}
.kb-bundle-card {
  min-width: 0;
}
.kb-bundle-card__media {
  display: block;
  overflow: hidden;
  border-radius: var(--kb-radius-lg);
  background: var(--kb-white);
  aspect-ratio: 4/5;
}
.kb-bundle-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.kb-bundle-card__media:hover .kb-bundle-card__img { transform: scale(1.04); }
.kb-bundle-card__body {
  padding-top: 0.875rem;
}
.kb-bundle-card h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}
.kb-bundle-card__price {
  font-size: 1rem;
  color: var(--kb-text);
  font-weight: 800;
  margin-top: 0.375rem;
}
.kb-bundle-card__variant {
  display: grid;
  gap: 0.375rem;
  margin-top: 0.75rem;
}
.kb-bundle-card__variant span {
  font-size: 0.8125rem;
  color: var(--kb-muted);
  font-weight: 800;
}
.kb-bundle-card__variant select {
  min-height: 2.75rem;
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-sm);
  background: var(--kb-white);
  color: var(--kb-text);
  font-family: var(--kb-font-body);
  font-weight: 700;
  padding: 0 0.75rem;
}
.kb-bundle-add {
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  margin-top: 0.875rem;
  font-size: 0.875rem;
  padding: 0.875rem 1rem;
}
.kb-bundle-empty {
  grid-column: 1/-1;
  color: var(--kb-muted);
  padding: 2rem 0;
}
.kb-bundle-tray {
  position: sticky;
  bottom: 1rem;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-lg);
  box-shadow: 0 12px 40px rgba(47,42,58,0.14);
  padding: 1rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .kb-bundle-tray {
    grid-template-columns: minmax(14rem, 1fr) 2fr auto auto;
  }
}
.kb-bundle-tray strong {
  display: block;
  font-size: 1.125rem;
}
.kb-bundle-tray span {
  color: var(--kb-muted);
  font-size: 0.9rem;
}
.kb-bundle-selected {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}
.kb-bundle-selected__item {
  position: relative;
  flex: 0 0 auto;
  width: 4.5rem;
}
.kb-bundle-selected__item img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--kb-radius-sm);
  object-fit: cover;
  display: block;
}
.kb-bundle-selected__item span {
  display: none;
}
.kb-bundle-selected__item button {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  border-radius: 50%;
  background: var(--kb-purple);
  color: var(--kb-white);
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
}
.kb-bundle-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 900px) { .kb-bundle-total { display: block; min-width: 8rem; } }
.kb-bundle-total strong {
  color: var(--kb-text);
  font-size: 1.35rem;
}
.kb-bundle-checkout {
  justify-content: center;
  min-height: 3.5rem;
}
.kb-bundle-checkout[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Reviews */
.kb-reviews-section {
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--kb-border);
  margin-top: 2rem;
}
.kb-reviews-section h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1.5rem; }
.kb-reviews-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.kb-reviews-summary__score {
  font-family: var(--kb-font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--kb-text);
}
.kb-reviews-summary__stars { font-size: 1.375rem; color: var(--kb-yellow); letter-spacing: 0.05em; }
.kb-reviews-summary__count { font-size: 0.875rem; color: var(--kb-muted); margin-top: 0.25rem; }
.kb-review-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .kb-review-grid { grid-template-columns: repeat(3, 1fr); } }
.kb-review-card {
  background: var(--kb-white);
  border: 1px solid var(--kb-border);
  border-radius: var(--kb-radius-lg);
  padding: 1.25rem 1.5rem;
}
.kb-review-card__stars { color: var(--kb-yellow); font-size: 0.9375rem; margin-bottom: 0.5rem; }
.kb-review-card__text { font-size: 0.9375rem; line-height: 1.6; color: var(--kb-text); margin-bottom: 0.75rem; }
.kb-review-card__meta { font-size: 0.8125rem; color: var(--kb-muted); }
.kb-judgeme-placeholder {
  padding: 2rem;
  border: 1.5px dashed var(--kb-border);
  border-radius: var(--kb-radius-lg);
  text-align: center;
  color: var(--kb-muted);
  font-size: 0.875rem;
}
.kb-judgeme-placeholder a { color: var(--kb-purple); font-weight: 600; }

/* Sticky ATC (mobile only) */
.kb-sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--kb-white);
  border-top: 1px solid var(--kb-border);
  padding: 0.875rem var(--kb-px) calc(0.875rem + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(47,42,58,0.08);
}
.kb-sticky-atc.is-visible { transform: translateY(0); }
@media (min-width: 768px) { .kb-sticky-atc { display: none; } }
.kb-sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--kb-container);
  margin: 0 auto;
}
.kb-sticky-atc__name {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--kb-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kb-sticky-atc__price { font-size: 1.2rem; font-weight: 700; color: var(--kb-text); flex-shrink: 0; }
.kb-sticky-atc__btn { flex-shrink: 0; padding: 1rem 1.5rem; font-size: 1.05rem; min-height: 4.2rem; }
.kb-sticky-atc__btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}


/* =============================================
   SESSION 3 — CART DRAWER OVERRIDES
   ============================================= */

/* Overlay */
.cart-drawer__overlay,
#CartDrawer-Overlay {
  background: rgba(47, 42, 58, 0.45) !important;
  backdrop-filter: blur(4px) !important;
}

/* Panel */
.cart-drawer,
.drawer__inner {
  background: var(--kb-white) !important;
  border-left: none !important;
  box-shadow: -8px 0 40px rgba(64, 55, 110, 0.12) !important;
}

/* Header */
.drawer__heading {
  font-family: var(--kb-font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--kb-text) !important;
}

/* Cart rewards progress bar */
.kb-cart-progress {
  width: 100%;
  padding: 0;
  border-top: 1px solid rgba(75, 62, 134, 0.16);
  border-bottom: 1px solid rgba(75, 62, 134, 0.16);
  background: #f1edff;
}
.kb-cart-progress__saving {
  margin: 0;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(75, 62, 134, 0.16);
  background: var(--kb-white);
  color: var(--kb-purple);
  font-family: var(--kb-font-display);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}
.kb-cart-progress__saving strong {
  color: var(--kb-purple);
}
.kb-cart-progress__label {
  margin: 0;
  padding: 0.85rem 1.5rem 0.15rem;
  color: var(--kb-text);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}
.kb-cart-progress__label strong { color: var(--kb-purple); }
.kb-cart-progress__track {
  position: relative;
  height: 0.28rem;
  margin-top: 1.35rem;
  overflow: hidden;
  background: #d8d1ee;
}
.kb-cart-progress__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--kb-yellow), #ffd55c);
  border-radius: var(--kb-radius-pill);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.kb-cart-progress__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: -1.35rem 0 0;
  padding: 0 0.7rem 1rem;
  list-style: none;
}
.kb-cart-progress__step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.24rem;
  min-width: 0;
  color: var(--kb-text);
  font-size: 0.78rem;
  line-height: 1.18;
  text-align: center;
}
.kb-cart-progress__icon {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 2px solid #ddd7ee;
  border-radius: 50%;
  background: var(--kb-white);
  box-shadow: 0 2px 10px rgba(47,42,58,0.12);
  color: #9a91b8;
}
.kb-cart-progress__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}
.kb-cart-progress__threshold {
  color: var(--kb-text);
  font-weight: 900;
}
.kb-cart-progress__step strong {
  max-width: 9.2rem;
  color: var(--kb-text);
  font-weight: 800;
}
.kb-cart-progress__step.is-unlocked {
  color: var(--kb-purple);
}
.kb-cart-progress__step.is-unlocked .kb-cart-progress__icon {
  border-color: var(--kb-purple);
  background: var(--kb-yellow);
  color: var(--kb-purple);
}

cart-items > .page-width > #main-cart-progress > .kb-cart-progress {
  margin: -0.5rem 0 1.35rem;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

/* Cart item images */
.cart-item__image { border-radius: var(--kb-radius-sm) !important; }

.kb-cart-item__mobile-line-price {
  display: none;
}

.cart-item__compare-prices {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.cart-item__compare-prices dd {
  margin: 0;
}

.cart-item__compare-prices .cart-item__final-price,
.cart-item__compare-prices .price:not(.cart-item__old-price) {
  color: #ef4b5f;
  font-weight: 800;
}

.cart-item__compare-prices .cart-item__old-price {
  color: rgba(47, 42, 58, 0.58);
  text-decoration-thickness: 1px;
}

@media screen and (max-width: 749px) {
  .cart-items thead tr {
    margin-bottom: 1rem !important;
  }

  .cart-items .cart-item {
    grid-template-columns: 7rem minmax(0, 1fr) 7rem;
    grid-template-areas:
      "media details controls";
    align-items: center;
    column-gap: 0.85rem;
    row-gap: 0;
    margin-bottom: 0 !important;
    padding-top: 0.55rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(75, 62, 134, 0.12);
  }

  .cart-items .cart-item__media {
    grid-area: media;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .cart-items .cart-item__image-container,
  .cart-items .cart-item__image {
    max-width: 7rem !important;
    width: 7rem !important;
  }

  .cart-items .cart-item__details {
    grid-area: details;
    min-width: 0;
    padding-right: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .cart-items .cart-item__name {
    font-size: 1.15rem !important;
    line-height: 1.18 !important;
  }

  .cart-items .cart-item__totals {
    display: none;
  }

  .cart-items .cart-item__details .product-option,
  .cart-items .cart-item__discounted-prices {
    font-size: 1.08rem !important;
    line-height: 1.22 !important;
  }

  .cart-items .kb-cart-item__mobile-line-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    color: var(--kb-text);
    font-size: 1.08rem;
    line-height: 1.22;
  }

  .cart-items .kb-cart-item__unit-price {
    display: none;
  }

  .cart-items .kb-cart-item__mobile-line-price strong {
    color: #ef4b5f;
    font-weight: 800;
  }

  .cart-items .kb-cart-item__mobile-line-price s {
    color: rgba(47, 42, 58, 0.58);
  }

  .cart-items .cart-item__compare-prices {
    gap: 0.35rem;
  }

  .cart-items .cart-item__quantity {
    grid-area: controls;
    justify-self: end;
    align-self: center;
    width: auto;
    margin-top: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .cart-items .cart-item__quantity-wrapper {
    flex-direction: row-reverse;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.55rem;
  }

  .cart-items .cart-quantity {
    min-height: 3.2rem;
    min-width: 4.8rem;
    width: auto;
    border: 0;
    background: transparent;
  }

  .cart-items .cart-quantity .quantity__button {
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--kb-border) !important;
    border-radius: 50%;
    background: var(--kb-white);
  }

  .cart-items .cart-item--single-quantity .cart-quantity .quantity__button[name="minus"] {
    display: none;
  }

  .cart-items .cart-item--multi-quantity cart-remove-button {
    display: none;
  }

  .cart-items .cart-quantity .quantity__input {
    width: 1.8rem;
    padding: 0;
    font-size: 1.22rem;
    font-weight: 800;
  }

  .cart-items cart-remove-button .button {
    width: 3rem;
    min-width: 3rem;
    height: 3.2rem;
    padding: 0;
  }

  cart-items > .page-width > #main-cart-progress > .kb-cart-progress {
    width: calc(100% + 3.2rem);
    margin: 0.25rem -1.6rem 1.35rem;
    border-radius: 0;
  }

  .kb-cart-progress__saving {
    padding: 0.9rem 1.1rem;
    font-size: 1.15rem;
  }

  .kb-cart-progress__label {
    padding: 0.8rem 1rem 0.1rem;
    font-size: 0.78rem;
  }

  .kb-cart-progress__steps {
    margin-top: -1.22rem;
    padding: 0 0.25rem 0.85rem;
  }

  .kb-cart-progress__step {
    font-size: 0.72rem;
  }

  .kb-cart-progress__icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .kb-cart-progress__icon svg {
    width: 1rem;
    height: 1rem;
  }
}

/* Cart add-on product tiles */
.kb-cart-additions {
  margin-top: 1.5rem;
}
.kb-cart-additions .collection__title {
  margin-bottom: 1.2rem;
}
.kb-cart-additions .collection__title .title {
  color: var(--kb-text);
  font-family: var(--kb-font-display);
  font-weight: 900;
}

@media screen and (max-width: 749px) {
  .kb-cart-additions {
    margin-top: 1.2rem;
    padding-top: 1.35rem !important;
    padding-bottom: 1.35rem !important;
    background: #f1edff;
  }

  .kb-cart-additions .collection__title {
    padding: 0 1.6rem;
    margin-bottom: 0.9rem;
  }

  .kb-cart-additions .collection__title .title {
    font-size: 1.35rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .kb-cart-additions slider-component {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .kb-cart-additions .product-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1.6rem 0.4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .kb-cart-additions .product-grid::-webkit-scrollbar {
    display: none;
  }

  .kb-cart-additions .grid__item {
    flex: 0 0 min(30rem, 84vw);
    width: min(30rem, 84vw) !important;
    max-width: min(30rem, 84vw) !important;
    scroll-snap-align: start;
  }

  .kb-cart-additions .card-wrapper,
  .kb-cart-additions .card {
    height: 100%;
  }

  .kb-cart-additions .card {
    display: grid;
    grid-template-columns: 8.2rem minmax(0, 1fr);
    align-items: center;
    min-height: 10.2rem;
    padding: 0.85rem;
    border: 1.5px solid rgba(75, 62, 134, 0.35);
    border-radius: 1.45rem;
    background: var(--kb-white);
    box-shadow: none;
  }

  .kb-cart-additions .card__inner {
    width: 8.2rem;
    min-height: 8.2rem;
    align-self: stretch;
    border-radius: 1rem;
    overflow: hidden;
  }

  .kb-cart-additions .card__inner.ratio::before {
    padding-bottom: 100%;
  }

  .kb-cart-additions .card__inner > .card__content {
    display: none;
  }

  .kb-cart-additions .card > .card__content {
    min-width: 0;
    padding: 0 0 0 0.9rem;
  }

  .kb-cart-additions .card__information {
    padding: 0;
  }

  .kb-cart-additions .card__heading {
    font-size: 1.05rem !important;
    line-height: 1.18 !important;
  }

  .kb-cart-additions .price {
    margin-top: 0.35rem;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .kb-cart-additions .quick-add {
    margin: 0.65rem 0 0;
  }

  .kb-cart-additions .quick-add__submit {
    min-height: 3.2rem;
    padding: 0 1rem;
    border-radius: 0.7rem;
    background: #111 !important;
    color: var(--kb-white) !important;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }
}

/* Qty stepper */
.quantity__button {
  color: var(--kb-purple) !important;
  border-color: var(--kb-border) !important;
}
.quantity__button:hover { background: var(--kb-purple) !important; color: var(--kb-white) !important; }

/* Remove button */
.cart-item__remove { color: var(--kb-muted) !important; }
.cart-item__remove:hover { color: var(--kb-sale-red) !important; }

/* Cart gift and seller note */
.cart__footer {
  gap: 1.35rem !important;
}
#main-cart-footer .cart__footer {
  padding-top: 1.25rem !important;
  padding-bottom: 2rem !important;
}
#main-cart-footer .cart__footer > * + * {
  margin-top: 1.25rem !important;
}
#main-cart-footer .cart__blocks {
  margin-top: 0 !important;
}
.kb-cart-extras {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 990px) {
  .cart__footer {
    align-items: start !important;
  }
  .kb-cart-extras {
    max-width: 46rem;
  }
}
.kb-cart-gift-card,
.kb-cart-note {
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-xl);
  box-shadow: 0 8px 28px rgba(47,42,58,0.04);
}
.kb-cart-gift-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem 1.1rem;
}
.kb-cart-gift-card__icon,
.kb-cart-note__icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: rgba(255, 199, 39, 0.22);
  color: var(--kb-purple);
  transform: translateY(0.16rem);
}
.kb-cart-gift-card__icon svg,
.kb-cart-note__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}
.kb-cart-gift-card__title {
  display: block;
  color: var(--kb-text);
  font-family: var(--kb-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}
.kb-cart-gift-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.kb-cart-gift-card__copy p,
.kb-cart-note__copy p {
  color: var(--kb-muted);
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0.25rem 0 0;
}
.kb-cart-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transform: translateY(0.12rem);
}
.kb-cart-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.kb-cart-switch > span {
  position: relative;
  display: block;
  width: 4rem;
  height: 2.25rem;
  border-radius: var(--kb-radius-pill);
  background: #e7e0d3;
  transition: background 0.2s;
}
.kb-cart-switch > span::after {
  content: '';
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--kb-white);
  box-shadow: 0 2px 8px rgba(47,42,58,0.16);
  transition: transform 0.2s;
}
.kb-cart-switch input:checked + span {
  background: var(--kb-purple);
}
.kb-cart-switch input:checked + span::after {
  transform: translateX(1.75rem);
}
.kb-cart-switch input:focus-visible + span {
  outline: 2px solid var(--kb-purple);
  outline-offset: 3px;
}
.kb-cart-note {
  display: block;
  padding: 0.95rem 1.1rem;
}
.kb-cart-note__intro {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem;
}
.kb-cart-note__icon {
  background: rgba(255, 199, 39, 0.16);
}
.kb-cart-note__copy label {
  display: block;
  color: var(--kb-purple);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.kb-cart-note__textarea {
  width: 100%;
  min-height: 8rem;
  margin-top: 0.75rem;
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-lg);
  background: var(--kb-bg);
  color: var(--kb-text);
  font-family: var(--kb-font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  padding: 1.25rem 1.4rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kb-cart-note__textarea::placeholder {
  color: rgba(47,42,58,0.42);
}
.kb-cart-note__textarea:focus {
  border-color: var(--kb-purple);
  box-shadow: 0 0 0 3px rgba(64,55,110,0.1);
}
@media (max-width: 749px) {
  .cart__footer {
    gap: 1rem !important;
  }
  #main-cart-footer .cart__footer {
    padding-top: 0.75rem !important;
    padding-bottom: 1.25rem !important;
  }
  #main-cart-footer .cart__footer > * + * {
    margin-top: 0.75rem !important;
  }
  .kb-cart-extras {
    gap: 0.65rem;
  }
  .kb-cart-gift-card {
    grid-template-columns: auto 1fr;
    padding: 0.8rem 0.9rem;
  }
  .kb-cart-gift-card__title-row {
    gap: 0.75rem;
  }
  .kb-cart-note {
    padding: 0.8rem 0.9rem;
  }
  .kb-cart-note__textarea {
    min-height: 7rem;
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }
}

/* Checkout footer */
.drawer__footer { border-top: 1px solid var(--kb-border) !important; }
.cart__checkout-button,
.cart-drawer__checkout {
  background: var(--kb-purple) !important;
  border-color: var(--kb-purple) !important;
  border-radius: var(--kb-radius-pill) !important;
  font-family: var(--kb-font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  transition: background 0.2s, transform 0.15s !important;
}
.cart__checkout-button:hover,
.cart-drawer__checkout:hover {
  background: var(--kb-purple-dark) !important;
  transform: translateY(-1px) !important;
}

/* Cart subtotal */
.totals__subtotal { color: var(--kb-muted) !important; font-size: 0.875rem !important; }
.totals__subtotal-value { font-family: var(--kb-font-display) !important; font-weight: 700 !important; color: var(--kb-text) !important; }

/* Empty cart state */
.cart__empty-text { font-family: var(--kb-font-display) !important; color: var(--kb-text) !important; }


/* =============================================
   RECENTLY VIEWED STRIP
   ============================================= */

.kb-rv-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--kb-border);
  background: var(--kb-bg);
}
.kb-rv-header { margin-bottom: 1.75rem; }
.kb-rv-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0.25rem 0 0;
}
.kb-rv-track-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.kb-rv-track-wrap::-webkit-scrollbar { display: none; }
.kb-rv-track {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
}
.kb-rv-card {
  flex: 0 0 160px;
  text-decoration: none;
  color: inherit;
  border-radius: var(--kb-radius-md);
  overflow: hidden;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.kb-rv-card:hover { box-shadow: var(--kb-shadow-md); transform: translateY(-3px); }
.kb-rv-card__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.kb-rv-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.kb-rv-card:hover .kb-rv-card__img-wrap img { transform: scale(1.05); }
.kb-rv-card__sale-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--kb-sale-red);
  color: var(--kb-white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--kb-radius-pill);
}
.kb-rv-card__info { padding: 0.625rem 0.75rem 0.75rem; }
.kb-rv-card__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--kb-text);
  margin: 0 0 0.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.35;
}
.kb-rv-card__price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--kb-text);
  margin: 0;
}
.kb-rv-card__compare {
  font-weight: 400;
  color: var(--kb-muted);
  font-size: 0.75rem;
  margin-right: 0.25rem;
}
.kb-rv-card__sale-price { color: var(--kb-sale-red); }
@media (min-width: 768px) { .kb-rv-card { flex: 0 0 200px; } }


/* =============================================
   WISHLIST PAGE
   ============================================= */

.kb-wishlist-page {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  min-height: 60vh;
}
.kb-wishlist-page__header { margin-bottom: 2.5rem; }
.kb-wishlist-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0.25rem 0 0.5rem;
}
.kb-wishlist-count {
  font-size: 0.9375rem;
  color: var(--kb-muted);
  font-weight: 500;
  margin: 0;
}
.kb-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}
.kb-wl-card {
  border-radius: var(--kb-radius-md);
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.3s;
}
.kb-wl-card:hover { box-shadow: var(--kb-shadow-md); transform: translateY(-3px); }
.kb-wl-card__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.kb-wl-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.kb-wl-card:hover .kb-wl-card__img-wrap img { transform: scale(1.05); }
.kb-wl-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--kb-sale-red);
  color: var(--kb-white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--kb-radius-pill);
}
.kb-wl-card__info { padding: 1rem 1rem 1.25rem; }
.kb-wl-card__name { font-size: 0.9375rem; font-weight: 600; margin: 0 0 0.5rem; }
.kb-wl-card__price { font-size: 0.9375rem; font-weight: 700; margin: 0 0 1rem; }
.kb-wl-card__price s { color: var(--kb-muted); font-weight: 400; font-size: 0.875rem; margin-right: 0.35rem; }
.kb-sale-price { color: var(--kb-sale-red); }
.kb-wl-card__actions { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.kb-wishlist-empty {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 5rem 1rem;
  color: var(--kb-muted);
}
.kb-wishlist-empty__icon { color: var(--kb-border); }
.kb-wishlist-empty h2 { font-size: 1.5rem; color: var(--kb-text); margin: 0; }
.kb-wishlist-empty p  { font-size: 0.9375rem; margin: 0; }
.kb-wishlist-empty .kb-btn { margin-top: 0.5rem; }

@media (max-width: 749px) {
  .kb-wishlist-page {
    padding: 2rem 0;
  }

  .kb-wishlist-page__header {
    margin-bottom: 1.5rem;
  }

  .kb-wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .kb-wl-card {
    border-radius: 1rem;
  }

  .kb-wl-card__img-wrap {
    aspect-ratio: 3 / 4;
  }

  .kb-wl-card__info {
    padding: 0.7rem 0.65rem 0.8rem;
  }

  .kb-wl-card__name {
    display: -webkit-box;
    min-height: 2.35em;
    margin-bottom: 0.4rem;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .kb-wl-card__price {
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
  }

  .kb-wl-card__price s {
    font-size: 0.72rem;
  }

  .kb-wl-card__actions {
    display: grid;
    gap: 0.45rem;
  }

  .kb-wl-card__actions .kb-btn {
    width: 100%;
    min-height: 2.25rem;
    padding: 0 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .kb-wl-card__badge {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.6rem;
  }
}


/* =============================================
   ABOUT PAGE
   ============================================= */

.kb-story-page {
  background: var(--kb-bg);
  color: var(--kb-text);
  overflow: hidden;
}

.kb-story-hero {
  padding: clamp(5rem, 9vw, 9rem) var(--kb-px) clamp(4rem, 8vw, 7rem);
}

.kb-story-hero__inner {
  max-width: 1260px;
  margin: 0 auto;
  text-align: left;
}

.kb-story-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  color: var(--kb-purple);
  font-family: var(--kb-font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.kb-story-kicker__line {
  display: inline-block;
  width: clamp(2.75rem, 7vw, 5.25rem);
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

.kb-story-kicker__favicon {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.kb-story-kicker__icon,
.kb-story-kicker__dot,
.kb-story-kicker__heart,
.kb-story-kicker__design {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  overflow: hidden;
  color: transparent;
  flex: 0 0 auto;
}

.kb-story-kicker__icon::before {
  content: "";
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 48% 52% 45% 55%;
  background: var(--kb-yellow);
  box-shadow: 0.25rem -0.15rem 0 -0.03rem var(--kb-sale-red);
  transform: rotate(-12deg);
}

.kb-story-kicker__dot::before {
  content: "";
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: #8d68d9;
  box-shadow:
    0.42rem 0.1rem 0 #8d68d9,
    0.2rem 0.48rem 0 #b594ff,
    -0.18rem 0.28rem 0 #b594ff;
}

.kb-story-kicker__heart::before {
  content: "♥";
  color: var(--kb-sale-red);
  font-size: 1rem;
  line-height: 1;
}

.kb-story-kicker__design::before {
  content: "✦";
  color: var(--kb-yellow);
  font-size: 1rem;
  line-height: 1;
}

.kb-story-hero__title {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  max-width: 1240px;
  color: var(--kb-text);
  font-size: clamp(2.5rem, 4.8vw, 4.6rem) !important;
  font-weight: 400 !important;
  line-height: 0.98 !important;
}

.kb-story-hero__text {
  max-width: 760px;
  margin: clamp(2rem, 4vw, 3.2rem) 0 0;
  color: rgba(107,100,122,0.9);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.kb-story-hero__media {
  max-width: 1800px;
  margin: clamp(3.5rem, 6vw, 5.2rem) auto 0;
  border-radius: clamp(1.5rem, 3vw, 3rem);
  overflow: hidden;
  aspect-ratio: 16 / 5.4;
  background: rgba(64,55,110,0.08);
}

.kb-story-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.kb-story-principles {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 5rem) var(--kb-px) clamp(4rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4rem, 10vw, 9rem);
}

.kb-story-principle--design {
  grid-column: 1 / -1;
  max-width: 920px;
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

.kb-story-kicker--left {
  justify-content: flex-start;
}

.kb-story-principle h2,
.kb-story-split__copy h2 {
  margin: 1.8rem 0 0;
  color: var(--kb-text);
  font-size: clamp(1.85rem, 2.6vw, 3rem) !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
}

.kb-story-principle p,
.kb-story-split__copy p {
  margin: 1.9rem 0 0;
  max-width: 680px;
  color: rgba(107,100,122,0.9);
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: 1.6;
}

.kb-story-split {
  max-width: 1800px;
  margin: 0 auto clamp(5rem, 8vw, 8rem);
  padding: 0 var(--kb-px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.kb-story-split__media {
  min-height: clamp(520px, 70vw, 900px);
  border-radius: clamp(1.5rem, 3vw, 3rem);
  overflow: hidden;
  background: rgba(64,55,110,0.08);
}

.kb-story-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.kb-story-split__copy {
  min-height: clamp(520px, 70vw, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
  background: rgba(255,255,255,0.22);
  border-radius: 0 clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem) 0;
}

.kb-story-skincare-product {
  width: 100%;
  margin-top: 2.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  border-radius: 1.5rem;
  background: rgba(64,55,110,0.08);
}

.kb-story-skincare-product__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kb-story-skincare-product + .kb-story-button {
  margin-top: 2rem;
}

.kb-story-button {
  align-self: flex-start;
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  padding: 0 2.4rem;
  border-radius: var(--kb-radius-pill);
  background: var(--kb-yellow);
  color: var(--kb-text);
  font-family: var(--kb-font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.kb-story-button:hover {
  background: var(--kb-yellow-hover);
  transform: translateY(-1px);
}

@media (max-width: 989px) {
  .kb-story-hero {
    padding-top: clamp(3.5rem, 12vw, 5rem);
  }

  .kb-story-hero__title {
    max-width: 760px;
  }

  .kb-story-hero__media {
    aspect-ratio: 16 / 8.5;
  }

  .kb-story-principles {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .kb-story-principle--design {
    padding-bottom: 0;
  }

  .kb-story-split {
    grid-template-columns: 1fr;
  }

  .kb-story-split__media {
    min-height: auto;
    aspect-ratio: 4 / 3.2;
    border-radius: clamp(1.5rem, 6vw, 2.2rem);
  }

  .kb-story-split__copy {
    min-height: auto;
    border-radius: 0 0 clamp(1.5rem, 6vw, 2.2rem) clamp(1.5rem, 6vw, 2.2rem);
  }
}

@media (max-width: 749px) {
  .kb-story-hero {
    padding-bottom: 0;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .kb-story-kicker {
    gap: 0.55rem;
    font-size: 1.05rem;
    letter-spacing: 0.22em;
  }

  .kb-story-kicker__favicon {
    width: 1.65rem;
    height: 1.65rem;
  }

  .kb-story-hero__title {
    font-size: clamp(2.15rem, 8.5vw, 3rem) !important;
  }

  .kb-story-hero__text {
    font-size: 1.3rem;
  }

  .kb-story-hero__media {
    margin-top: 2.7rem;
    aspect-ratio: 4 / 3.2;
    border-radius: 1.6rem;
  }

  .kb-story-hero__media,
  .kb-story-split__media,
  .kb-story-skincare-product {
    width: 100%;
    aspect-ratio: 4 / 3.2;
    border-radius: 1.6rem;
    overflow: hidden;
  }

  .kb-story-principles {
    padding: 2.5rem 1.35rem;
    gap: 2.5rem;
  }

  .kb-story-principle h2,
  .kb-story-split__copy h2 {
    margin-top: 1.25rem;
    font-size: clamp(1.75rem, 7vw, 2.4rem) !important;
  }

  .kb-story-principle p,
  .kb-story-split__copy p {
    margin-top: 1.25rem;
    font-size: 1.3rem;
  }

  .kb-story-split {
    padding: 0 1.1rem;
    margin-bottom: 4.5rem;
  }

  .kb-story-split__copy {
    padding: 2.5rem 1.35rem;
  }

  .kb-story-split__copy h2:first-child {
    margin-top: 0;
  }

  .kb-story-skincare-product {
    width: calc(100% + 2.7rem);
    margin-top: 2.5rem;
    margin-right: -1.35rem;
    margin-left: -1.35rem;
  }

  .kb-story-skincare-product + .kb-story-button {
    margin-top: 2.5rem;
  }

  .kb-story-button {
    width: 100%;
    min-height: 3.75rem;
    padding: 0 1.5rem;
    font-size: 0.9rem;
  }
}

.kb-about-hero {
  position: relative;
  height: clamp(360px, 50vw, 560px);
  overflow: hidden;
}
.kb-about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kb-about-hero__placeholder {
  background: linear-gradient(135deg, rgba(64,55,110,0.72), rgba(244,197,49,0.28));
}
.kb-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(47,42,58,0.72) 0%, rgba(47,42,58,0.28) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--kb-px);
  max-width: 700px;
}
.kb-about-hero__h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
  color: var(--kb-white) !important;
  line-height: 1.1 !important;
  margin: 0.5rem 0 1rem !important;
}
.kb-about-hero__sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0;
  line-height: 1.6;
}

/* Mission pillars */
.kb-about-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--kb-border);
}
.kb-about-pillar { text-align: center; }
.kb-about-pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--kb-radius-md);
  background: rgba(64,55,110,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--kb-purple);
}
.kb-about-pillar h3 { font-size: 1rem; margin: 0 0 0.5rem; }
.kb-about-pillar p  { font-size: 0.875rem; color: var(--kb-muted); margin: 0; line-height: 1.6; }

/* Story section */
.kb-about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--kb-border);
}
@media (min-width: 768px) { .kb-about-story { grid-template-columns: 1fr 1fr; align-items: center; } }
.kb-about-story__text h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0.5rem 0 1.25rem; }
.kb-about-story__body { color: var(--kb-muted); line-height: 1.8; }
.kb-about-story__body p { margin: 0 0 1rem; }
.kb-about-story__img-wrap { border-radius: var(--kb-radius-lg); overflow: hidden; }
.kb-about-story__img { width: 100%; height: auto; display: block; }
.kb-about-story__placeholder {
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, rgba(64,55,110,0.1), rgba(244,197,49,0.15));
}

/* Certifications */
.kb-about-certs {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--kb-border);
}
.kb-about-certs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}
.kb-cert-badge {
  padding: 1.75rem 1.25rem;
  border: 2px solid var(--kb-border);
  border-radius: var(--kb-radius-md);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kb-cert-badge:hover { border-color: var(--kb-purple); box-shadow: var(--kb-shadow-sm); }
.kb-cert-badge__name {
  font-family: var(--kb-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--kb-purple);
  margin: 0 0 0.5rem;
}
.kb-cert-badge__desc { font-size: 0.8125rem; color: var(--kb-muted); margin: 0; line-height: 1.5; }

/* Team */
.kb-about-team { padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--kb-border); }
.kb-about-team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.kb-team-card { text-align: center; }
.kb-team-card__photo, .kb-team-card__avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
  object-fit: cover;
}
.kb-team-card__avatar {
  background: var(--kb-purple);
  color: var(--kb-white);
  font-family: var(--kb-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kb-team-card__name { font-size: 1rem; margin: 0 0 0.25rem; }
.kb-team-card__role { font-size: 0.8125rem; color: var(--kb-purple); font-weight: 600; margin: 0 0 0.5rem; }
.kb-team-card__bio  { font-size: 0.8125rem; color: var(--kb-muted); margin: 0; line-height: 1.6; }

/* Impact numbers */
.kb-about-impact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.kb-about-impact__num {
  display: block;
  font-family: var(--kb-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--kb-purple);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.kb-about-impact__label { font-size: 0.875rem; color: var(--kb-muted); }
.kb-about-impact__item { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
/* kb-about-page, kb-contact-form-wrap are structural wrappers — no direct rules needed */


/* =============================================
   FAQ PAGE
   ============================================= */

.kb-faq-page { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.kb-faq-page__header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.kb-faq-page__header h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin: 0.25rem 0 1rem; }
.kb-faq-page__sub { font-size: 1.125rem; color: var(--kb-muted); margin: 0; line-height: 1.7; }

.kb-faq-group { margin-bottom: 3rem; }
.kb-faq-group__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--kb-purple);
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--kb-yellow);
  display: inline-block;
}
.kb-faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.kb-faq-item {
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.kb-faq-item[open] { border-color: var(--kb-purple); }
.kb-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--kb-text);
  list-style: none;
  user-select: none;
}
.kb-faq-item__q::-webkit-details-marker { display: none; }
.kb-faq-item__q:hover { color: var(--kb-purple); }
.kb-faq-item__caret {
  flex-shrink: 0;
  color: var(--kb-muted);
  transition: transform 0.25s ease;
}
.kb-faq-item[open] .kb-faq-item__caret { transform: rotate(180deg); color: var(--kb-purple); }
.kb-faq-item__a {
  padding: 0 1.25rem 1.25rem;
  font-size: 1.075rem;
  color: var(--kb-muted);
  line-height: 1.75;
}
.kb-faq-item__a p { margin: 0; }

@media (max-width: 749px) {
  .kb-faq-page__sub { font-size: 1rem; }
  .kb-faq-group__title { font-size: 1.2rem; }
  .kb-faq-item__q {
    padding: 1.15rem 1rem;
    font-size: 1.05rem;
    line-height: 1.45;
  }
  .kb-faq-item__a {
    padding: 0 1rem 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* FAQ CTA */
.kb-faq-cta {
  text-align: center;
  background: rgba(64,55,110,0.04);
  border-radius: var(--kb-radius-lg);
  padding: 3rem 2rem;
  margin-top: 3rem;
}
.kb-faq-cta h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.kb-faq-cta p  { color: var(--kb-muted); margin-bottom: 1.75rem; }
.kb-faq-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


/* =============================================
   POLICIES PAGE
   ============================================= */

.kb-policy-page { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.kb-policy-page__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .kb-policy-page__inner { grid-template-columns: 220px 1fr; gap: 4rem; align-items: start; }
}

/* Sidebar */
.kb-policy-nav {
  position: sticky;
  top: 6rem;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-md);
  padding: 1.5rem;
}
.kb-policy-nav ul { list-style: none; padding: 0; margin: 0.75rem 0 0; display: flex; flex-direction: column; gap: 0.25rem; }
.kb-policy-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--kb-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--kb-text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.kb-policy-nav a:hover { background: rgba(64,55,110,0.06); color: var(--kb-purple); }

/* Content */
.kb-policy-content h1 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1.75rem; }
.kb-policy-body { color: var(--kb-muted); line-height: 1.85; }
.kb-policy-body h2 { font-size: 1.1875rem; color: var(--kb-text); margin: 2rem 0 0.75rem; }
.kb-policy-body h3 { font-size: 1rem; color: var(--kb-text); margin: 1.5rem 0 0.5rem; }
.kb-policy-body p  { margin: 0 0 1rem; }
.kb-policy-body a  { color: var(--kb-purple); text-decoration: underline; }
.kb-policy-body ul, .kb-policy-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.kb-policy-body li { margin-bottom: 0.375rem; }
.kb-policy-updated { font-size: 0.8125rem; color: var(--kb-muted); margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--kb-border); }


/* =============================================
   BUTTON EXTRAS (sm sizes, outline, ghost)
   ============================================= */

.kb-btn--sm { padding: 0.5rem 1rem !important; font-size: 0.8125rem !important; }
.kb-btn--outline {
  background: transparent;
  border: 2px solid var(--kb-purple);
  color: var(--kb-purple);
  border-radius: var(--kb-radius-pill);
  padding: 0.75rem 1.75rem;
  font-family: var(--kb-font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.kb-btn--outline:hover { background: var(--kb-purple); color: var(--kb-white); transform: translateY(-1px); }
.kb-btn--ghost {
  background: transparent;
  border: 1.5px solid var(--kb-border);
  color: var(--kb-muted);
  border-radius: var(--kb-radius-pill);
  padding: 0.75rem 1.75rem;
  font-family: var(--kb-font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.kb-btn--ghost:hover { border-color: var(--kb-purple); color: var(--kb-purple); transform: translateY(-1px); }


/* =============================================
   SESSION 5 — BLOG / JOURNAL LIST PAGE
   ============================================= */

/* Hero */
.kb-blog-hero {
  position: relative;
  height: clamp(280px, 36vw, 440px);
  overflow: hidden;
  background: var(--kb-purple-dark);
}
.kb-blog-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  display: block;
}
.kb-blog-hero__img--placeholder {
  background: linear-gradient(135deg, var(--kb-purple) 0%, #1e1a2e 100%);
  opacity: 1;
}
.kb-blog-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 var(--kb-px);
  background: rgba(47,42,58,0.3);
}
.kb-blog-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  color: var(--kb-white) !important;
  margin: 0.375rem 0 1rem !important;
  line-height: 1.1 !important;
  max-width: 640px;
}
.kb-blog-hero__sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
}

/* Tag filter pills */
.kb-blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 2rem 0 0.5rem;
}
.kb-blog-filter-pill {
  padding: 0.45rem 1.1rem;
  border-radius: var(--kb-radius-pill);
  border: 1.5px solid var(--kb-border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--kb-muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.kb-blog-filter-pill:hover { border-color: var(--kb-purple); color: var(--kb-purple); }
.kb-blog-filter-pill.is-active { background: var(--kb-purple); border-color: var(--kb-purple); color: var(--kb-white); }

/* Article count */
.kb-blog-count {
  font-size: 0.875rem;
  color: var(--kb-muted);
  margin: 0.75rem 0 2rem;
}

/* Featured article */
.kb-blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
  background: var(--kb-white);
  border-radius: var(--kb-radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--kb-border);
  margin-bottom: 3rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
@media (min-width: 768px) { .kb-blog-featured { grid-template-columns: 1fr 1fr; } }
.kb-blog-featured:hover { box-shadow: var(--kb-shadow-md); transform: translateY(-3px); }
.kb-blog-featured__img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  min-height: 280px;
}
@media (min-width: 768px) { .kb-blog-featured__img-wrap { aspect-ratio: auto; min-height: 360px; } }
.kb-blog-featured__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.kb-blog-featured:hover .kb-blog-featured__img-wrap img { transform: scale(1.05); }
.kb-blog-featured__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(64,55,110,0.1), rgba(244,197,49,0.15)); }
.kb-blog-featured__info {
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
}
.kb-blog-featured__title { font-size: clamp(1.25rem, 2.5vw, 1.875rem); margin: 0.25rem 0; line-height: 1.25; }
.kb-blog-featured__excerpt { font-size: 0.9375rem; color: var(--kb-muted); margin: 0; line-height: 1.7; flex: 1; }
.kb-blog-featured__meta { font-size: 0.8125rem; color: var(--kb-muted); display: flex; align-items: center; gap: 0.5rem; }
.kb-blog-featured__meta-sep { opacity: 0.5; }
.kb-blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--kb-purple);
  margin-top: 0.5rem;
}
.kb-blog-featured:hover .kb-blog-featured__cta { gap: 0.625rem; }

/* Article grid */
.kb-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.kb-blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--kb-white);
  border-radius: var(--kb-radius-md);
  overflow: hidden;
  border: 1.5px solid var(--kb-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.kb-blog-card:hover { box-shadow: var(--kb-shadow-md); transform: translateY(-3px); }
.kb-blog-card__img-wrap { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.kb-blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.kb-blog-card:hover .kb-blog-card__img-wrap img { transform: scale(1.06); }
.kb-blog-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(64,55,110,0.08), rgba(244,197,49,0.12)); }
.kb-blog-card__info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.375rem; }
.kb-blog-card__title { font-size: 1rem; font-weight: 700; margin: 0.25rem 0 0; line-height: 1.35; }
.kb-blog-card__excerpt { font-size: 0.875rem; color: var(--kb-muted); line-height: 1.65; margin: 0; flex: 1; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.kb-blog-card__meta { font-size: 0.8125rem; color: var(--kb-muted); display: flex; align-items: center; gap: 0.375rem; margin-top: auto; padding-top: 0.5rem; }

/* Empty state */
.kb-blog-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 5rem 1rem;
  color: var(--kb-muted);
}
.kb-blog-empty svg { color: var(--kb-border); }
.kb-blog-empty h2 { font-size: 1.5rem; color: var(--kb-text); margin: 0; }
.kb-blog-empty p  { margin: 0; }

/* Pagination */
.kb-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding-bottom: 3rem;
}
.kb-pagination__btn,
.kb-pagination__page {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--kb-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--kb-text);
  border: 1.5px solid var(--kb-border);
  background: var(--kb-white);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  cursor: pointer;
}
.kb-pagination__btn:hover,
.kb-pagination__page:hover { border-color: var(--kb-purple); color: var(--kb-purple); }
.kb-pagination__page.is-active { background: var(--kb-purple); border-color: var(--kb-purple); color: var(--kb-white); }
.kb-pagination__ellipsis { width: 40px; text-align: center; color: var(--kb-muted); font-size: 0.875rem; }


/* =============================================
   SESSION 5 — 404 PAGE
   ============================================= */

.kb-404-page { padding: clamp(3rem, 6vw, 5rem) 0; }

/* Hero area */
.kb-404-hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.kb-404-hero__num {
  font-family: var(--kb-font-display);
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 700;
  color: var(--kb-purple);
  line-height: 1;
  opacity: 0.12;
  flex-shrink: 0;
  user-select: none;
  letter-spacing: -0.04em;
}
.kb-404-hero__content { flex: 1; min-width: 280px; }
.kb-404-hero__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0.25rem 0 1rem;
  line-height: 1.2;
}
.kb-404-hero__sub {
  font-size: 1rem;
  color: var(--kb-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.kb-404-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Quick links grid */
.kb-404-links {
  margin-bottom: 3.5rem;
}
.kb-404-links__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kb-muted);
  margin-bottom: 1rem;
}
.kb-404-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.kb-404-link-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--kb-text);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.kb-404-link-card:hover { border-color: var(--kb-purple); color: var(--kb-purple); box-shadow: var(--kb-shadow-sm); transform: translateY(-2px); }
.kb-404-link-card svg { flex-shrink: 0; width: 18px; height: 18px; }

/* Search bar */
.kb-404-search { margin-bottom: 3.5rem; }
.kb-404-search__label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--kb-muted); margin-bottom: 0.75rem; }
.kb-404-search__form { max-width: 600px; }
.kb-404-search__wrap { display: flex; align-items: center; background: var(--kb-white); border: 1.5px solid var(--kb-border); border-radius: var(--kb-radius-pill); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.kb-404-search__wrap:focus-within { border-color: var(--kb-purple); box-shadow: 0 0 0 3px rgba(64,55,110,0.1); }
.kb-404-search__icon { margin-left: 1.125rem; flex-shrink: 0; color: var(--kb-muted); }
.kb-404-search__input { flex: 1; border: none; background: none; padding: 0.875rem 0.875rem; font-family: var(--kb-font-body); font-size: 0.9375rem; color: var(--kb-text); outline: none; }
.kb-404-search__input::placeholder { color: var(--kb-muted); }
.kb-404-search__btn { flex-shrink: 0; padding: 0.875rem 1.5rem; background: var(--kb-purple); color: var(--kb-white); border: none; font-family: var(--kb-font-display); font-size: 0.875rem; font-weight: 700; cursor: pointer; transition: background 0.2s; border-radius: 0 var(--kb-radius-pill) var(--kb-radius-pill) 0; }
.kb-404-search__btn:hover { background: var(--kb-purple-dark); }

/* Bestsellers strip */
.kb-404-bestsellers { padding: 3rem 0 0; border-top: 1px solid var(--kb-border); }
.kb-404-bestsellers__title { font-size: clamp(1.25rem, 2.5vw, 1.75rem); text-align: center; margin: 0.25rem 0 2rem; }
.kb-404-bestsellers__track { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.25rem; }
.kb-404-bs-card { text-decoration: none; color: inherit; border-radius: var(--kb-radius-md); overflow: hidden; background: var(--kb-white); border: 1.5px solid var(--kb-border); transition: box-shadow 0.2s, transform 0.2s; }
.kb-404-bs-card:hover { box-shadow: var(--kb-shadow-md); transform: translateY(-3px); }
.kb-404-bs-card__img { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.kb-404-bs-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.kb-404-bs-card:hover .kb-404-bs-card__img img { transform: scale(1.05); }
.kb-404-bs-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(64,55,110,0.08), rgba(244,197,49,0.12)); }
.kb-404-bs-card__name { font-size: 0.8125rem; font-weight: 600; padding: 0.625rem 0.75rem 0.25rem; margin: 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.kb-404-bs-card__price { font-size: 0.8125rem; font-weight: 700; color: var(--kb-purple); padding: 0 0.75rem 0.75rem; margin: 0; }


/* =============================================
   SESSION 5 — SEARCH RESULTS PAGE
   ============================================= */

.kb-search-page { padding: clamp(2.5rem, 5vw, 4rem) 0; min-height: 60vh; }

/* Header */
.kb-search-page__header { margin-bottom: 3rem; }
.kb-search-page__title { font-size: clamp(1.25rem, 2.5vw, 1.875rem); margin: 0.25rem 0 1.5rem; }
.kb-search-page__form { max-width: 680px; }
.kb-search-page__input-wrap {
  display: flex;
  align-items: center;
  background: var(--kb-white);
  border: 2px solid var(--kb-border);
  border-radius: var(--kb-radius-pill);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kb-search-page__input-wrap:focus-within { border-color: var(--kb-purple); box-shadow: 0 0 0 3px rgba(64,55,110,0.1); }
.kb-search-page__icon { margin-left: 1.25rem; flex-shrink: 0; color: var(--kb-muted); }
.kb-search-page__input {
  flex: 1;
  border: none;
  background: none;
  padding: 0.875rem 1rem;
  font-family: var(--kb-font-body);
  font-size: 1rem;
  color: var(--kb-text);
  outline: none;
}
.kb-search-page__input::placeholder { color: var(--kb-muted); }

/* Sections */
.kb-search-section { margin-bottom: 3rem; }
.kb-search-section__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 0.625rem; border-bottom: 2px solid var(--kb-yellow); display: inline-block; }

/* Product grid */
.kb-search-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.kb-search-product-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border-radius: var(--kb-radius-md);
  overflow: hidden;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.kb-search-product-card:hover { box-shadow: var(--kb-shadow-md); transform: translateY(-3px); }
.kb-search-product-card__img { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.kb-search-product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.kb-search-product-card:hover .kb-search-product-card__img img { transform: scale(1.05); }
.kb-search-product-card__placeholder { width: 100%; height: 100%; background: rgba(64,55,110,0.06); }
.kb-badge-sale { position: absolute; top: 0.625rem; left: 0.625rem; background: var(--kb-sale-red); color: var(--kb-white); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: var(--kb-radius-pill); }
.kb-search-product-card__info { padding: 0.75rem 0.875rem; }
.kb-search-product-card__name { font-size: 0.875rem; font-weight: 600; margin: 0 0 0.25rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.kb-search-product-card__price { font-size: 0.875rem; font-weight: 700; margin: 0; }
.kb-search-product-card__price s { font-weight: 400; color: var(--kb-muted); font-size: 0.8125rem; margin-right: 0.25rem; }

/* Content list */
.kb-search-content-list { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--kb-border); border-radius: var(--kb-radius-md); overflow: hidden; }
.kb-search-content-item {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem 1.25rem;
  text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--kb-border);
  background: var(--kb-white);
  transition: background 0.15s;
}
.kb-search-content-item:last-child { border-bottom: none; }
.kb-search-content-item:hover { background: rgba(64,55,110,0.03); }
.kb-search-content-item__img { flex-shrink: 0; width: 80px; height: 52px; border-radius: var(--kb-radius-sm); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.kb-search-content-item__img img { width: 100%; height: 100%; object-fit: cover; }
.kb-search-content-item__placeholder { width: 80px; height: 52px; background: rgba(64,55,110,0.06); border-radius: var(--kb-radius-sm); display: flex; align-items: center; justify-content: center; }
.kb-search-content-item__title { font-size: 0.9375rem; font-weight: 600; margin: 0.25rem 0; }
.kb-search-content-item__excerpt { font-size: 0.8125rem; color: var(--kb-muted); margin: 0; }

/* Empty state */
.kb-search-empty {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1rem; padding: 4rem 1rem;
  color: var(--kb-muted);
}
.kb-search-empty svg { color: var(--kb-border); }
.kb-search-empty h2 { font-size: 1.375rem; color: var(--kb-text); margin: 0; }
.kb-search-empty p { margin: 0; }
.kb-search-empty__tips { margin-top: 1rem; }
.kb-search-empty__tips-label { font-size: 0.8125rem; font-weight: 700; color: var(--kb-muted); margin-bottom: 0.75rem; }
.kb-search-empty__suggestions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }

/* Trending pills (pre-search) */
.kb-search-trending { margin-top: 2rem; }
.kb-search-trending__label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--kb-muted); margin-bottom: 0.75rem; }
.kb-search-trending__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.kb-search-suggestion {
  padding: 0.45rem 1.1rem;
  border-radius: var(--kb-radius-pill);
  border: 1.5px solid var(--kb-border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kb-text);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  background: var(--kb-white);
}
.kb-search-suggestion:hover { border-color: var(--kb-purple); color: var(--kb-purple); background: rgba(64,55,110,0.04); }



/* Article hero */
.kb-article-hero {
  position: relative;
  height: clamp(320px, 44vw, 520px);
  overflow: hidden;
  background: var(--kb-purple-dark);
}
.kb-article-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.kb-article-hero__placeholder {
  background: linear-gradient(135deg, var(--kb-purple) 0%, #2F2A3A 100%);
  opacity: 1;
}
.kb-article-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--kb-px) 3rem;
  background: linear-gradient(to top, rgba(47,42,58,0.85) 0%, transparent 60%);
  max-width: var(--kb-container);
  margin: 0 auto;
  right: var(--kb-px);
  left: var(--kb-px);
}
.kb-article-hero__tags { display: flex; gap: 0.5rem; margin-bottom: 0.875rem; }
.kb-article-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--kb-yellow);
  color: var(--kb-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--kb-radius-pill);
  text-decoration: none;
  transition: opacity 0.15s;
}
.kb-article-tag:hover { opacity: 0.85; }
.kb-article-hero__title {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem) !important;
  color: var(--kb-white) !important;
  line-height: 1.15 !important;
  margin: 0 0 0.875rem !important;
  max-width: 760px;
}
.kb-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Article layout (sidebar + body) */
.kb-article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 900px) {
  .kb-article-layout { grid-template-columns: 56px 1fr; gap: 3rem; align-items: start; }
}

/* Share sidebar */
.kb-article-share {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .kb-article-share {
    position: sticky;
    top: 6rem;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .kb-article-share .kb-overline { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }

.kb-share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  color: var(--kb-muted);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}
.kb-share-btn:hover { border-color: var(--kb-purple); color: var(--kb-purple); transform: translateY(-2px); }
.kb-copied-msg { font-size: 0.75rem; color: var(--kb-purple); font-weight: 700; }

/* Article body */
.kb-article-body { min-width: 0; }
.kb-article-content {
  font-size: 1.0625rem;
  line-height: 1.875;
  color: var(--kb-text);
  max-width: 72ch;
}
.kb-article-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.kb-article-content h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.kb-article-content p  { margin: 0 0 1.25rem; }
.kb-article-content a  { color: var(--kb-purple); text-decoration: underline; }
.kb-article-content img { max-width: 100%; border-radius: var(--kb-radius-md); margin: 1.5rem 0; }
.kb-article-content blockquote {
  border-left: 4px solid var(--kb-yellow);
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  background: rgba(64,55,110,0.04);
  border-radius: 0 var(--kb-radius-md) var(--kb-radius-md) 0;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--kb-purple);
}
.kb-article-content ul, .kb-article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.kb-article-content li { margin-bottom: 0.5rem; }

/* Article tags */
.kb-article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--kb-border);
}
.kb-article-tag-pill {
  padding: 0.35rem 0.875rem;
  background: rgba(64,55,110,0.07);
  color: var(--kb-purple);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--kb-radius-pill);
  text-decoration: none;
  transition: background 0.15s;
}
.kb-article-tag-pill:hover { background: rgba(64,55,110,0.14); }

/* Author bio */
.kb-article-author-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-lg);
}
.kb-article-author-card__avatar {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--kb-purple);
  color: var(--kb-white);
  font-family: var(--kb-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kb-article-author-card__name { font-size: 1rem; font-weight: 700; margin: 0 0 0.25rem; }
.kb-article-author-card__bio  { font-size: 0.875rem; color: var(--kb-muted); margin: 0; line-height: 1.6; }

/* Prev/Next nav */
.kb-article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--kb-border);
}
.kb-article-nav__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--kb-purple);
  text-decoration: none;
  transition: gap 0.2s;
}
.kb-article-nav__link:hover { gap: 0.625rem; }
.kb-article-nav__back {
  font-size: 0.875rem;
  color: var(--kb-muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.kb-article-nav__back:hover { color: var(--kb-purple); text-decoration-color: var(--kb-purple); }

/* Related articles */
.kb-related-articles { background: var(--kb-bg); }
.kb-related-articles__title { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin: 0.25rem 0 2rem; }
.kb-related-articles__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.75rem; }
.kb-journal-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--kb-white);
  border-radius: var(--kb-radius-md);
  overflow: hidden;
  border: 1.5px solid var(--kb-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.kb-journal-card:hover { box-shadow: var(--kb-shadow-md); transform: translateY(-3px); }
.kb-journal-card__img-wrap { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.kb-journal-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.kb-journal-card:hover .kb-journal-card__img-wrap img { transform: scale(1.05); }
.kb-journal-card__img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(64,55,110,0.1), rgba(244,197,49,0.15)); }
.kb-journal-card__info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.375rem; }
.kb-journal-card__title { font-size: 1rem; font-weight: 700; margin: 0.25rem 0 0; line-height: 1.35; }
.kb-journal-card__excerpt { font-size: 0.875rem; color: var(--kb-muted); line-height: 1.6; margin: 0; flex: 1; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.kb-journal-card__date { font-size: 0.8125rem; color: var(--kb-muted); margin: 0; }


/* =============================================
   SESSION 4 — CONTACT PAGE
   ============================================= */

.kb-contact-page { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.kb-contact-page__header { max-width: 600px; margin-bottom: 3rem; }
.kb-contact-page__header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 0.25rem 0 0.75rem; }
.kb-contact-page__sub { font-size: 0.9375rem; color: var(--kb-muted); margin: 0; }

.kb-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) { .kb-contact-layout { grid-template-columns: 300px 1fr; gap: 4rem; } }

/* Info panel */
.kb-contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.kb-contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.kb-contact-info__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--kb-radius-md);
  background: rgba(64,55,110,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--kb-purple);
}
.kb-contact-info__label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--kb-muted); margin: 0 0 0.25rem; }
.kb-contact-info__value { font-size: 0.9375rem; font-weight: 500; color: var(--kb-text); margin: 0; text-decoration: none; }
a.kb-contact-info__value:hover { color: var(--kb-purple); text-decoration: underline; }

.kb-contact-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.kb-contact-social__link {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  color: var(--kb-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.kb-contact-social__link:hover { border-color: var(--kb-purple); color: var(--kb-purple); transform: translateY(-2px); }

/* Form card */
.kb-contact-form-card {
  background: var(--kb-white);
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-lg);
  padding: 2.5rem;
}
.kb-contact-form-card__title { font-size: 1.25rem; margin: 0 0 1.75rem; }
.kb-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.kb-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .kb-contact-form__row { grid-template-columns: 1fr; } }

.kb-form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.kb-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kb-text);
}
.kb-form-label span { color: var(--kb-sale-red); }
.kb-form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--kb-border);
  border-radius: var(--kb-radius-md);
  font-family: var(--kb-font-body);
  font-size: 0.9375rem;
  color: var(--kb-text);
  background: var(--kb-bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.kb-form-input:focus { border-color: var(--kb-purple); box-shadow: 0 0 0 3px rgba(64,55,110,0.1); }
.kb-form-input::placeholder { color: var(--kb-muted); opacity: 0.8; }
.kb-form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B647A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.kb-form-textarea { resize: vertical; min-height: 120px; }

.kb-contact-success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(64,55,110,0.06);
  border: 1.5px solid var(--kb-purple);
  border-radius: var(--kb-radius-md);
  font-weight: 600;
  color: var(--kb-purple);
}
.kb-contact-success p { margin: 0; }
.kb-contact-error {
  padding: 1rem 1.25rem;
  background: rgba(231,72,85,0.06);
  border: 1.5px solid var(--kb-sale-red);
  border-radius: var(--kb-radius-md);
  font-size: 0.875rem;
  color: var(--kb-sale-red);
}


/* =============================================
   SESSION 4 — ACCOUNT / AUTH PAGES
   ============================================= */

/* Shared customer page layout */
.customer {
  max-width: 600px;
  margin: 0 auto;
  padding-left: var(--kb-px);
  padding-right: var(--kb-px);
}

/* Headings */
.customer h1,
.customer h2,
.customer .title {
  font-family: var(--kb-font-display) !important;
  color: var(--kb-text) !important;
}

/* Inputs */
.customer .field__input,
.customer .field input[type="text"],
.customer .field input[type="email"],
.customer .field input[type="password"],
.customer .field input[type="tel"] {
  border: 1.5px solid var(--kb-border) !important;
  border-radius: var(--kb-radius-md) !important;
  background: var(--kb-bg) !important;
  font-family: var(--kb-font-body) !important;
  color: var(--kb-text) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.customer .field__input:focus,
.customer .field input:focus {
  border-color: var(--kb-purple) !important;
  box-shadow: 0 0 0 3px rgba(64,55,110,0.1) !important;
  outline: none !important;
}

/* Labels */
.customer .field__label {
  font-family: var(--kb-font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--kb-muted) !important;
}

/* Buttons */
.customer .button,
.customer button[type="submit"] {
  background: var(--kb-purple) !important;
  border-color: var(--kb-purple) !important;
  border-radius: var(--kb-radius-pill) !important;
  font-family: var(--kb-font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  transition: background 0.2s, transform 0.15s !important;
}
.customer .button:hover,
.customer button[type="submit"]:hover {
  background: var(--kb-purple-dark) !important;
  transform: translateY(-1px) !important;
}

/* Links */
.customer a:not(.button):not([class]) {
  color: var(--kb-purple) !important;
  text-decoration: underline !important;
}

/* Error messages */
.customer .form__error,
.customer .errors {
  color: var(--kb-sale-red) !important;
  font-size: 0.875rem !important;
}

/* Account dashboard */
.customer .account-dashboard {
  max-width: none !important;
}

/* Order table */
.customer table th {
  color: var(--kb-muted) !important;
  font-size: 0.8125rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-bottom: 2px solid var(--kb-border) !important;
}
.customer table td {
  border-bottom: 1px solid var(--kb-border) !important;
  font-size: 0.9375rem !important;
}
