/** Shopify CDN: Minification failed

Line 511:19 Expected identifier but found whitespace
Line 1346:1 Unexpected "/"
Line 1871:10 Expected identifier but found whitespace
Line 1871:22 Unexpected ";"

**/
/* ==========================================================================
   KittyKloset Design System & Theme Styles for Dawn
   ========================================================================== */

:root {
  --kk-brand: #8AA0F2;
  --kk-brand-deep: #6C72E0;
  --kk-brand-dark: #5B6CC4;
  --kk-text-dark: #2A2C42;
  --kk-text-muted: #6B7088;
  --kk-text-subtle: #8A8EA6;
  --kk-bg-soft: #F4F6FF;
  --kk-bg-alt: #F4F5F7;
  --kk-card-bg: #F6F5F2;
  --kk-border-soft: #E2E7FF;
  --kk-border-alt: #E6E8F0;
  --kk-star-amber: #F5A623;
  --kk-crisis-pulse: #E5484D;
  --kk-radius-sm: 8px;
  --kk-radius-md: 16px;
  --kk-radius-lg: 22px;
  --kk-radius-pill: 999px;
}

body {
  color: var(--kk-text-dark);
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  color: var(--kk-text-dark);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background-color: var(--kk-brand);
  color: #ffffff;
}

.announcement-bar__message {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.announcement-bar__link {
  color: #ffffff;
  text-decoration: none;
}

.announcement-bar__message .icon-arrow {
  width: 14px;
  height: 10px;
  transition: transform 0.2s ease;
}

.announcement-bar__link:hover .icon-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Header & Navigation Styling
   ========================================================================== */
.header {}

.header__menu-item,
.header__menu-item span {
  font-size: 14px;

  color: var(--kk-text-dark);
  text-decoration: none;
  transition: color 0.15s ease;
}

.header__menu-item:hover,
.header__active-menu-item,
.header__active-menu-item:hover {
  color: var(--kk-brand-deep);
  text-decoration: none;
}

.header__icon {
  color: var(--kk-text-dark);
}

.cart-count-bubble {
  background-color: var(--kk-brand-deep);
  color: #ffffff;

}

/* ==========================================================================
   Hero Banner Component (kk-banner)
   ========================================================================== */
.kk-banner {
  display: block;
  line-height: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.kk-banner picture {
  display: block;
  width: 100%;
}

.kk-banner img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  box-shadow: none;
  object-fit: cover;
}

/* ==========================================================================
   Mission / Social Proof Title Component (kk-title)
   ========================================================================== */
.shopify-section:has(.kk-title) {
  padding-top: 0;
  padding-bottom: 0;
}

.kk-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 16px 30px;
}

.kk-title__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;

  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kk-brand-deep);
}

.kk-title__main {
  margin: 0;
  color: var(--kk-text-dark);

  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  font-size: clamp(34px, 7vw, 54px);
}

.kk-title__main span {
  color: var(--kk-brand-deep);
}

.kk-title__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 0;
  color: var(--kk-brand);
}

.kk-title__line {
  width: 46px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.55;
}

.kk-title__divider svg {
  display: block;
  width: 18px;
  height: 18px;
}

.kk-title__sub {
  margin: 16px 0 0;
  color: var(--kk-text-dark);
  opacity: 0.75;

  line-height: 1.4;
  font-size: clamp(14px, 3.2vw, 17px);
}

.kk-title__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 540px;
  margin: 28px auto 0;
  text-align: center;
  align-items: start;
}

.kk-proof__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 4px;
}

.kk-proof__item+.kk-proof__item::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--kk-border-soft);
}

.kk-proof__top {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kk-proof__stars {
  color: var(--kk-star-amber);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

.kk-proof__icon {
  width: 20px;
  height: 20px;
  color: var(--kk-brand-deep);
}

.kk-proof__value {
  font-weight: 700;
  font-size: clamp(15px, 4vw, 20px);
  color: var(--kk-text-dark);
  line-height: 1.1;
  white-space: nowrap;
}

.kk-proof__label {
  font-size: 11px;
  color: var(--kk-text-muted);
  line-height: 1.2;
}

/* ==========================================================================
   Product Cards Badges & Styling
   ========================================================================== */
.card-wrapper .card__inner .card__badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  top: 8px;
  left: 8px;
  bottom: auto;
  right: auto;
  z-index: 2;
}

/* Compact Badges on Image */
.card-wrapper .card__inner .card__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  top: auto;
  right: auto;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
}

.card-wrapper .card__inner .card__badge .badge.badge--kk-sale,
.card-wrapper .card__inner .card__badge .badge:not(.kk-badge--freeship) {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  min-height: 0;
  letter-spacing: 0.02em;
  background-color: #8AA0F2;
  color: #ffffff;
  border: none;
  border-radius: var(--kk-radius-pill);
  box-shadow: 0 2px 6px rgba(138, 160, 242, 0.25);
  display: inline-flex;
  align-items: center;
}

.card-wrapper .card__inner .card__badge .kk-badge--freeship,
.kk-badge--freeship {
  order: -1;
  background-color: #ffffff;
  color: #5B6CC4;
  border: 1px solid #d7dbf0;
  border-radius: var(--kk-radius-pill);
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(42, 44, 66, 0.08);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-wrapper .card__inner .card__badge .kk-badge--freeship svg,
.kk-badge--freeship svg {
  width: 13px;
  height: 13px;
  color: #5B6CC4;
  stroke: #5B6CC4;
  flex: 0 0 auto;
}

.card__heading {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 4px;
}

.card__heading a {
  color: var(--kk-text-dark);
  text-decoration: none;
}

.card__heading a:hover {
  color: var(--kk-brand-deep);
}

/* Product Card Star Rating */
.kk-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 6px;
  font-size: 12px;
}

.kk-card-rating__stars {
  color: var(--kk-star-amber);
  font-size: 12px;
  letter-spacing: 1px;
}

.kk-card-rating__score {

  color: var(--kk-text-dark);
}

.kk-card-rating__count {
  color: var(--kk-text-muted);
  font-size: 11px;
}

/* Price Styling */
.price {
  font-size: 15px;
  font-weight: 700;
  color: var(--kk-text-dark);
}

.price .price-item--sale {
  color: var(--kk-brand-deep);
  font-weight: 800;
}

.price .price-item--regular s,
.price-item--sale+.price__sale .price-item--regular {
  color: var(--kk-text-muted);
  font-size: 13px;
  text-decoration: line-through;
  margin-left: 6px;
}

/* ==========================================================================
   Mission Story Section (kk-mission)
   ========================================================================== */
.kk-mission--soft {
  --brand: var(--kk-brand);
  --brand-deep: var(--kk-brand-deep);
  --text: var(--kk-text-dark);
  --band: var(--kk-bg-soft);
  color: var(--text);
  max-width: 1100px;
  margin: 20px auto;
  padding: 32px 28px;
  background: var(--band);
  border-radius: var(--kk-radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
}

.kk-mission--soft .kk-mission__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;

  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.kk-mission--soft .kk-mission__title {
  margin: 0;

  line-height: 1.15;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--text);
}

.kk-mission--soft .kk-mission__title span {
  color: var(--brand-deep);
}

.kk-mission--soft .kk-mission__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  color: var(--brand);
}

.kk-mission--soft .kk-mission__line {
  width: 40px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.55;
}

.kk-mission--soft .kk-mission__body p {
  margin: 0 0 14px;
  line-height: 1.6;
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--text);
}

.kk-mission--soft .kk-mission__body p:last-child {
  margin-bottom: 0;
}

.kk-mission--soft .kk-mission__stat {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(42, 44, 66, 0.08);
  border: 1px solid var(--kk-border-soft);
}

.kk-mission--soft .kk-mission__statrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kk-mission--soft .kk-mission__staticon {
  width: 34px;
  height: 34px;
  color: var(--brand-deep);
  flex: 0 0 auto;
}

.kk-mission--soft . {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--brand-deep);
  line-height: 1;
}

.kk-mission--soft .kk-mission__statlabel {
  font-size: 13px;
  color: var(--kk-text-muted);
  line-height: 1.3;
  margin-top: 4px;
}

.kk-mission--soft .kk-mission__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--kk-radius-md);
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(42, 44, 66, 0.08);
}

@media (max-width: 749px) {
  .kk-mission--soft {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
    text-align: center;
    border-radius: var(--kk-radius-md);
    margin: 12px 16px;
  }

  .kk-mission--soft .kk-mission__divider {
    justify-content: center;
  }

  .kk-mission--soft .kk-mission__stat {
    align-items: center;
    text-align: center;
  }

  .kk-mission--soft .kk-mission__statrow {
    justify-content: center;
  }
}

/* ==========================================================================
   PDP Product Info Additions (kk-freeship, kk-perks, kk-acc)
   ========================================================================== */
.kk-freeship {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 10px;
  padding: 7px 16px;
  background: #ffffff;
  border: 1px solid var(--kk-border-soft);
  border-radius: var(--kk-radius-pill);
  box-shadow: 0 2px 8px rgba(42, 44, 66, 0.08);
}

.kk-freeship__icon {
  color: var(--kk-brand-deep);
  display: flex;
  width: 16px;
  height: 16px;
}

.kk-freeship__text {
  font-size: 13px;
  line-height: 1.2;
  color: var(--kk-text-muted);
}

.kk-freeship__text strong {
  color: var(--kk-brand-deep);

}

.kk-perks {
  --text: var(--kk-text-dark);
  list-style: none;
  margin: 18px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--text);
}

.kk-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}

.kk-perks__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kk-brand-deep);
}

.kk-perks strong {}

/* Stylized Accordions (kk-acc) - Reference Match (Kitty Kloset) */
.product__info-container>.kk-acc {
  margin: 0;
  width: 100%;
}

.product__info-container>.kk-acc:first-of-type,
.product__info-container> :not(.kk-acc)+.kk-acc {
  margin-top: 24px;
}

.product__info-container>.kk-acc:last-of-type,
.product__info-container>.kk-acc:has(+ :not(.kk-acc)) {
  margin-bottom: 24px;
}

.kk-acc+.kk-acc {
  margin-top: 0;
}

.kk-acc {
  color: #2a2c42;
  width: 100%;
}

.kk-acc .kk-acc__item,
.kk-acc__item {
  border: none;
  border-bottom: 1px solid #edf0f8;
  margin: 0;
  padding: 0;
}

.product__info-container>.kk-acc:first-of-type .kk-acc__item,
.product__info-container> :not(.kk-acc)+.kk-acc .kk-acc__item,
.kk-acc:first-of-type .kk-acc__item {
  border-top: 1px solid #edf0f8;
}

.kk-acc__head {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;

  font-size: 16px;
  line-height: 1.4;
  color: #2a2c42;
  user-select: none;
  transition: color 0.15s ease;
}

.kk-acc__head::-webkit-details-marker {
  display: none;
}

.kk-acc__head::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid #8AA0F2;
  border-bottom: 1.8px solid #8AA0F2;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-right: 4px;
  margin-top: -3px;
}

.kk-acc__item[open] .kk-acc__head::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.kk-acc__body {
  padding: 0 0 18px;
  line-height: 1.6;
  font-size: 14.5px;
  color: #4a4d65;
}

.kk-acc__body p {
  margin: 0 0 12px;
}

.kk-acc__body p:last-child {
  margin-bottom: 0;
}

.kk-acc__body a {
  color: #8AA0F2;
  font-weight: 600;
  text-decoration: underline;
}

.kk-acc__body ul {
  margin: 10px 0;
  padding-left: 18px;
}

.kk-acc__body li {
  margin: 0 0 8px;
}

.kk-acc__body ul.kk-acc__check {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.kk-acc__body ul.kk-acc__check li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.kk-acc__body ul.kk-acc__check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8AA0F2;

}


/* ==========================================================================
   Cart Drawer Gratis fragt Progress Bar
   ========================================================================== */
.kk-cart-shipping-bar {
  padding: 14px 16px;
  background: var(--kk-bg-soft);
  border-bottom: 1px solid var(--kk-border-soft);
}

.kk-cart-shipping-bar__message {
  font-size: 13px;
  font-weight: 600;
  color: var(--kk-text-dark);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kk-cart-shipping-bar__message strong {
  color: var(--kk-brand-deep);
}

.kk-cart-shipping-bar__track {
  width: 100%;
  height: 8px;
  background: #e2e7ff;
  border-radius: 999px;
  overflow: hidden;
}

.kk-cart-shipping-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--kk-brand), var(--kk-brand-deep));
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* Button & Pill Polish */
.button--primary,
.button {
  border-radius: var(--kk-radius-sm);

}

.product-form__submit {
  background-color: var(--kk-brand-deep);
  color: #ffffff;
  border-radius: var(--kk-radius-sm);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color 0.15s ease;
}

.product-form__submit:hover {
  background-color: var(--kk-brand-dark);
}

/* ==========================================================================
   Payment Icons (MobilePay, Cards & Wallets) - Footer & Cart Drawer
   ========================================================================== */
.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 6px;
}

.payment-icons svg,
.payment-icons img,
.payment-icons .payment-icon {
  height: 24px;
  width: auto;
  max-width: 42px;
  object-fit: contain;
  border-radius: 4px;
  vertical-align: middle;
  transition: transform 0.15s ease;
}

.payment-icons svg:hover,
.payment-icons img:hover,
.payment-icons .payment-icon:hover {
  transform: translateY(-1px);
}

/* In Cart Drawer */
.cart-drawer .payment-icons {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #e2e5f1;
}

/* In Footer */
.footer__payment .payment-icons,
.footer__payment .list-payment {
  margin-top: 8px;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.footer__payment .list-payment__item {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.footer__payment .list-payment__item svg,
.footer__payment .list-payment__item .icon {
  width: 38px;
  height: 24px;
  display: block;
  border-radius: 3px;
  transition: transform 0.15s ease;
}

.footer__payment .list-payment__item svg:hover,
.footer__payment .list-payment__item .icon:hover {
  transform: translateY(-1px);
}

@media screen and (max-width: 749px) {

  .footer__payment .payment-icons,
  .footer__payment .list-payment {
    justify-content: center;
  }
}


/* ==========================================================================
   Product Card Exact Design (Reference Match)
   ========================================================================== */
.card-wrapper.product-card-wrapper {}

.card-wrapper .card__inner {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #f8f8fb;
}

.card-wrapper .card__media,
.card-wrapper .card__inner {
  border-radius: 0;
  background-color: #f4f5f7;
  overflow: hidden;
}

.card-wrapper .card__media img {
  object-fit: contain;
  background-color: #f4f5f7;
}

/* Badges stacked vertically on bottom-left of image */
.card-wrapper .card__badge,
.card-wrapper .card__inner .card__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  top: auto;
  right: auto;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
}

/* Gratis fragt badge (White pill + Purple truck) */
.card-wrapper .card__inner .card__badge .kk-badge--freeship,
.kk-badge--freeship {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #ffffff;
  color: #5B6CC4;
  border: 1px solid #d7dbf0;
  border-radius: 9999px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .02em;
  box-shadow: 0 2px 6px rgba(42, 44, 66, 0.08);
  white-space: nowrap;
}

.card-wrapper .card__inner .card__badge .kk-badge--freeship svg,
.kk-badge--freeship svg {
  width: 13px;
  height: 13px;
  color: #5B6CC4;
  stroke: #5B6CC4;
  flex: 0 0 auto;
}

/* Sale badge (Periwinkle pill + White text) */
.card-wrapper .card__inner .card__badge .badge--kk-sale,
.card-wrapper .card__inner .card__badge .badge:not(.kk-badge--freeship) {
  display: inline-flex;
  align-items: center;
  background-color: #8AA0F2;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(138, 160, 242, 0.25);
  min-height: 0;
}

/* Card Information Below Image */
.card-wrapper .card__content {
  padding: 0;
}

.card-wrapper .card__information {
  padding: 10px 2px 4px;
  text-align: left;
}

.card-wrapper .card__heading {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #2A2C42;
  letter-spacing: -0.01em;
}

.card-wrapper .card__heading a {
  color: #2A2C42;
  text-decoration: none;
  transition: color 0.15s ease;
}

.card-wrapper .card__heading a:hover {
  color: #6C72E0;
}

.card-wrapper .caption-with-letter-spacing {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7f86a0;
  margin: 0 0 4px;
  display: block;
}

/* Review Stars + Count */
.card-wrapper .kk-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 6px;
}

.card-wrapper .kk-card-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.card-wrapper .kk-card-rating__stars svg {
  width: 12px;
  height: 12px;
  color: #8AA0F2;
  fill: #8AA0F2;
  flex: 0 0 auto;
}

.card-wrapper .kk-card-rating__count {
  font-size: 12px;

  color: #8A8EA6;
  line-height: 1;
}

/* PDP Review Block Specific */
.kk-pdp-rating {
  margin: 4px 0 10px;
}

.kk-pdp-rating .kk-card-rating__stars {
  font-size: 15px;
  letter-spacing: 3px;
}

.kk-pdp-rating .kk-card-rating__count {
  font-size: 14px;

}

/* Price Row - Strikethrough on left, Sale price on right */
.card-wrapper .price {
  margin: 2px 0 0;
}

.card-wrapper .price__container {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 8px;
}

.card-wrapper .price__regular {
  display: flex;
  align-items: baseline;
  margin: 0;
  white-space: nowrap;
}

.card-wrapper .price__sale {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
  margin: 0;
  white-space: nowrap;
}

/* When on sale, hide regular single price */
.card-wrapper .price.price--on-sale .price__regular {
  display: none;
}

/* When not on sale, hide sale block */
.card-wrapper .price:not(.price--on-sale) .price__sale {
  display: none;
}

.card-wrapper .price__sale s,
.card-wrapper .price__sale s.price-item--regular,
.card-wrapper .price__sale .price-item--regular,
.card-wrapper s.price-item--regular {
  font-size: 12.5px;
  color: #9aa0ad;
  font-weight: 400;
  text-decoration: line-through;
  white-space: nowrap;
  letter-spacing: 0;
  display: inline-block;
  line-height: 1.2;
}

.card-wrapper .price__sale .price-item--sale,
.card-wrapper .price__regular .price-item--regular,
.card-wrapper .price-item--sale,
.card-wrapper .price-item--last {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  letter-spacing: 0.1px;
  line-height: 1.2;
}

/* ==========================================================================
   Product Detail Page (PDP) Exact Matching Styles
   ========================================================================== */

/* PDP Title & Rating */
.product__info-container .product__title h1 {
  font-size: 28px;

  color: #2A2C42;
  margin-bottom: 0px;
  line-height: 1.25;
}

@media screen and (min-width: 750px) {
  .product__info-container .product__title h1 {
    font-size: 32px;
  }
}

.kk-pdp-rating-wrapper {
  margin-top: 4px;
  margin-bottom: 8px;
}

/* Gratis fragt Badge */
.kk-freeship {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 6px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #e2e7ff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(42, 44, 66, 0.10);
}

.kk-freeship__icon {
  color: #6c72e0;
  display: flex;
}

.kk-freeship__text {
  font-size: 13px;
  line-height: 1.2;
  color: #6b7088;
}

.kk-freeship__text strong {
  color: #6c72e0;

}

/* PDP Price */
.product__info-container .price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 8px;
}

.product__info-container .price--on-sale .price-item--regular {
  color: #8A8EA6;
  font-size: 18px;
  text-decoration: line-through;
  font-weight: 400;
}

.product__info-container .price-item--sale {
  color: #2A2C42;
  font-size: 22px;

}

.product__info-container .price__badge-sale {
  background: #6C72E0;
  color: #ffffff;
  border: none;
  font-size: 12px;

  border-radius: 4px;
  padding: 3px 8px;
}

/* Product Perks List */
.kk-perks {
  --text: #2a2c42;
  list-style: none;
  margin: 18px 0 10px;
  padding: 0;
  display: grid;
  gap: 14px;
  color: var(--text);
}

.kk-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}

.kk-perks__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.kk-perks strong {}

/* 
/* Variant Swatches (Color) */
.product-form__input--color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.product-form__input--color-swatches legend.form__label {
  width: 100%;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #2A2C42;
}

.product-form__input--color-swatches input[type="radio"]+label.kk-swatch-circle {
  position: relative;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  border: 1.5px solid transparent !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  background-color: transparent !important;
  box-sizing: border-box;
  letter-spacing: normal !important;
  line-height: normal !important;
}

.product-form__input--color-swatches input[type="radio"]+label.kk-swatch-circle:hover {
  transform: scale(1.06);
}

.product-form__input--color-swatches input[type="radio"]+label.kk-swatch-circle::before {
  display: none !important;
}

.product-form__input--color-swatches .kk-swatch-circle__color {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-form__input--color-swatches input[type="radio"]:checked+.kk-swatch-circle {
  border-color: #2A2C42 !important;
}

/* Variant Size Pills */
.product-form__input--pill:not(.product-form__input--color-swatches) {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.product-form__input--pill:not(.product-form__input--color-swatches) legend.form__label {
  width: 100%;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #2A2C42;
}

.product-form__input--pill input[type="radio"]+label:not(.kk-swatch-circle) {
  background-color: #ffffff !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 4px !important;
  color: #2a2c42 !important;
  font-size: 14px;

  padding: 8px 16px !important;
  margin: 0 !important;
  min-width: 48px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.product-form__input--pill input[type="radio"]+label:not(.kk-swatch-circle)::before {
  display: none !important;
}

.product-form__input--pill input[type="radio"]:checked+label:not(.kk-swatch-circle) {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

*/

/* Size Chart Trigger & Modal */
.kk-size-guide-container {
  margin-top: 8px;
  margin-bottom: 12px;
}

.kk-size-guide-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  color: #2A2C42;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.kk-size-guide-trigger:hover {
  opacity: 0.8;
}

.kk-size-guide-trigger .kk-size-guide-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kk-size-modal {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 560px;
  width: 100%;
  border-radius: 16px;
}

.kk-size-modal::backdrop {
  background: rgba(42, 44, 66, 0.5);
  backdrop-filter: blur(2px);
}

.kk-size-modal__dialog {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(42, 44, 66, 0.2);
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px;
}

.kk-size-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  border-bottom: 1px solid #e6e8f0;
  padding-bottom: 12px;
}

.kk-size-modal__title {
  font-size: 18px;

  margin: 0;
  color: #2a2c42;
}

.kk-size-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #8A8EA6;
}

.kk-size-modal__close:hover {
  color: #2a2c42;
}

.kk-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.kk-size-table th,
.kk-size-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e6e8f0;
}

.kk-size-table th {
  background: #f4f6ff;
  font-weight: 600;
  color: #2a2c42;
}

.kk-size-table tr:hover td {
  background: #fafafa;
}


/* Bundle Deals Widget */
.cb_bundles {
  margin: 20px 0 14px;
  width: 100%;
}

.WidgetContainer {
  width: 100%;
}

.widget_title {
  text-align: center;
  font-size: 15px;

  color: #2A2C42;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}

.kk-bundle-offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kk-bundle-offer {
  border: 2px solid #e2e7ff;
  border-radius: 12px;
  padding: 14px 16px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.kk-bundle-offer:hover {
  border-color: #8AA0F2;
  box-shadow: 0 4px 12px rgba(138, 160, 242, 0.14);
}

.kk-bundle-offer.is-selected {
  border-color: #6C72E0;
  background: #fcfdff;
  box-shadow: 0 4px 16px rgba(108, 114, 224, 0.18);
}

.kk-bundle-offer.is-popular {
  border-color: #8AA0F2;
}

.OfferContent__Container-sc-1xtpph2-11 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.kk-bundle-offer__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kk-bundle-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #c4c8d8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.kk-bundle-offer.is-selected .kk-bundle-radio {
  border-color: #6C72E0;
  background: #6C72E0;
}

.kk-bundle-offer.is-selected .kk-bundle-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.MostPopularText {
  display: inline-block;
  background: #6C72E0;
  color: #ffffff;
  font-size: 10px;

  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 2px;
}

.OfferText {
  margin: 0;
  font-size: 15px;

  color: #2A2C42;
  line-height: 1.2;
}

.ResultBlock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.SaveText {
  margin: 0;
  font-size: 12px;

  color: #388e3c;
  background: #e8f5e9;
  padding: 2px 6px;
  border-radius: 4px;
}

.PriceBlock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.ComparePrice {
  text-decoration: line-through;
  color: #8A8EA6;
  font-size: 13px;
}

.Price {
  color: #2A2C42;

}

.TotalBlock {
  font-size: 12px;
  color: #6B7088;
}

.title-wrapper-with-link,
.collection__title.title-wrapper,
.collection__title {
  margin-bottom: 40px;
}

/* Product card — exact match to KittyKloset collection cards */
.product-card-wrapper.underline-links-hover:hover a {
  text-decoration: none;
}

.card-wrapper.product-card-wrapper .card--standard .card__inner {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 0;
  overflow: hidden;
}

.card-wrapper.product-card-wrapper .card__media,
.card-wrapper.product-card-wrapper .card__media .media,
.card-wrapper.product-card-wrapper .card__inner {
  background-color: #f5f5f5;
}

.card-wrapper.product-card-wrapper .card__media img {
  object-fit: cover;
  object-position: center center;
  background-color: #f5f5f5;
}

.card-wrapper.product-card-wrapper .card--media .card__inner .card__content {
  position: absolute;
  inset: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.card-wrapper.product-card-wrapper .card__inner .card__badge,
.card-wrapper.product-card-wrapper .card__inner .card__badge.bottom,
.card-wrapper.product-card-wrapper .card__inner .card__badge.left {
  position: absolute;
  bottom: 10px;
  left: 10px;
  top: auto;
  right: auto;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
}

.card-wrapper.product-card-wrapper .card__inner .card__badge .kk-badge--freeship {
  order: -1;
  background-color: #ffffff;
  background-image: none;
  color: #6c72e0;
  border: 1px solid #e2e7ff;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(42, 44, 66, 0.12);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-wrapper.product-card-wrapper .card__inner .card__badge .kk-badge--freeship svg {
  width: 11px;
  height: 11px;
  color: #6c72e0;
  stroke: #6c72e0;
}

.card-wrapper.product-card-wrapper .card__inner .card__badge .badge--kk-sale,
.card-wrapper.product-card-wrapper .card__inner .card__badge .badge:not(.kk-badge--freeship) {
  background-color: #8aa0f2;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  min-height: 0;
  box-shadow: none;
}

.card-wrapper.product-card-wrapper>.card>.card__content,
.card-wrapper.product-card-wrapper .card--standard>.card__content {
  padding: 0;
}

.card-wrapper.product-card-wrapper .card__information {
  padding: 10px 0 4px;
  text-align: left;
}

.card-wrapper.product-card-wrapper .card-information {
  text-align: left;
}

.card-wrapper.product-card-wrapper .card-information>.caption-large {
  display: none;
}

.card-wrapper.product-card-wrapper .card__information-volume-pricing-note {
  display: none;
}

.card-wrapper.product-card-wrapper .card-information>*+*,
.card-wrapper.product-card-wrapper .card-information>*:not(.visually-hidden:first-child)+*:not(.rating):not(.card__information-volume-pricing-note) {
  margin-top: 4px;
}

.card-wrapper.product-card-wrapper .card__heading,
.card-wrapper.product-card-wrapper .card__heading.h5,
.card-wrapper.product-card-wrapper .card__heading a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 2px;
  text-decoration: none;
}

.card-wrapper.product-card-wrapper .caption-with-letter-spacing,
.card-wrapper.product-card-wrapper .caption-with-letter-spacing.light {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #808080;
  opacity: 1;
  margin: 0;
  display: block;
}

.card-wrapper.product-card-wrapper .kk-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.card-wrapper.product-card-wrapper .kk-card-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #6c72e0;
}

.card-wrapper.product-card-wrapper .kk-card-rating__stars svg {
  width: 14px;
  height: 14px;
  color: #6c72e0;
  fill: #6c72e0;
}

.card-wrapper.product-card-wrapper .kk-card-rating__count {
  font-size: 13px;
  font-weight: 400;
  color: #808080;
  line-height: 1;
}

.card-wrapper.product-card-wrapper .price {
  display: block;
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: #000000;
}

.card-wrapper.product-card-wrapper .price__container,
.card-wrapper.product-card-wrapper .price__sale,
.card-wrapper.product-card-wrapper .price__regular {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.card-wrapper.product-card-wrapper .price.price--on-sale .price__regular {
  display: none;
}

.card-wrapper.product-card-wrapper .price:not(.price--on-sale) .price__sale {
  display: none;
}

.card-wrapper.product-card-wrapper .price .price-item {
  margin: 0;
}

.card-wrapper.product-card-wrapper .price__sale s,
.card-wrapper.product-card-wrapper .price__sale s.price-item--regular,
.card-wrapper.product-card-wrapper .price__sale .price-item--regular,
.card-wrapper.product-card-wrapper s.price-item--regular {
  font-size: 12.5px;
  font-weight: 400;
  color: #9aa0ad;
  text-decoration: line-through;
  letter-spacing: 0;
  line-height: 1.2;
}

.card-wrapper.product-card-wrapper .price-item--sale,
.card-wrapper.product-card-wrapper .price-item--last,
.card-wrapper.product-card-wrapper .price__regular .price-item--regular {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.1px;
  line-height: 1.2;
}

.card-wrapper.product-card-wrapper .price-item__from {
  font-weight: 400;
  margin-right: 0.25em;
}

.card-wrapper.product-card-wrapper .price-item__amount {
  color: #000000;
}

.TotalBlock .Price {
  color: #6C72E0;
}

/* PDP Payment Icons */
.pdp-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  /* padding: 12px 0 4px; */
  margin: 0;
}

.pdp-payment-icons li {
  display: flex;
  align-items: center;
}

/* Fix: hamburger always in left grid area; hide any orphaned left search */
header-drawer {
  grid-area: left-icons;
  justify-self: start;
}
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-wrapper.product-card-wrapper .card__inner .card__badge .kk-badge--freeship svg {
  width: 11px;
  height: 11px;
  color: #6c72e0;
  stroke: #6c72e0;
}

.card-wrapper.product-card-wrapper .card__inner .card__badge .badge--kk-sale,
.card-wrapper.product-card-wrapper .card__inner .card__badge .badge:not(.kk-badge--freeship) {
  background-color: #8aa0f2;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  min-height: 0;
  box-shadow: none;
}

.card-wrapper.product-card-wrapper>.card>.card__content,
.card-wrapper.product-card-wrapper .card--standard>.card__content {
  padding: 0;
}

.card-wrapper.product-card-wrapper .card__information {
  padding: 10px 0 4px;
  text-align: left;
}

.card-wrapper.product-card-wrapper .card-information {
  text-align: left;
}

.card-wrapper.product-card-wrapper .card-information>.caption-large {
  display: none;
}

.card-wrapper.product-card-wrapper .card__information-volume-pricing-note {
  display: none;
}

.card-wrapper.product-card-wrapper .card-information>*+*,
.card-wrapper.product-card-wrapper .card-information>*:not(.visually-hidden:first-child)+*:not(.rating):not(.card__information-volume-pricing-note) {
  margin-top: 4px;
}

.card-wrapper.product-card-wrapper .card__heading,
.card-wrapper.product-card-wrapper .card__heading.h5,
.card-wrapper.product-card-wrapper .card__heading a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 2px;
  text-decoration: none;
}

.card-wrapper.product-card-wrapper .caption-with-letter-spacing,
.card-wrapper.product-card-wrapper .caption-with-letter-spacing.light {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #808080;
  opacity: 1;
  margin: 0;
  display: block;
}

.card-wrapper.product-card-wrapper .kk-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.card-wrapper.product-card-wrapper .kk-card-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #6c72e0;
}

.card-wrapper.product-card-wrapper .kk-card-rating__stars svg {
  width: 14px;
  height: 14px;
  color: #6c72e0;
  fill: #6c72e0;
}

.card-wrapper.product-card-wrapper .kk-card-rating__count {
  font-size: 13px;
  font-weight: 400;
  color: #808080;
  line-height: 1;
}

.card-wrapper.product-card-wrapper .price {
  display: block;
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: #000000;
}

.card-wrapper.product-card-wrapper .price__container,
.card-wrapper.product-card-wrapper .price__sale,
.card-wrapper.product-card-wrapper .price__regular {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.card-wrapper.product-card-wrapper .price.price--on-sale .price__regular {
  display: none;
}

.card-wrapper.product-card-wrapper .price:not(.price--on-sale) .price__sale {
  display: none;
}

.card-wrapper.product-card-wrapper .price .price-item {
  margin: 0;
}

.card-wrapper.product-card-wrapper .price__sale s,
.card-wrapper.product-card-wrapper .price__sale s.price-item--regular,
.card-wrapper.product-card-wrapper .price__sale .price-item--regular,
.card-wrapper.product-card-wrapper s.price-item--regular {
  font-size: 12.5px;
  font-weight: 400;
  color: #9aa0ad;
  text-decoration: line-through;
  letter-spacing: 0;
  line-height: 1.2;
}

.card-wrapper.product-card-wrapper .price-item--sale,
.card-wrapper.product-card-wrapper .price-item--last,
.card-wrapper.product-card-wrapper .price__regular .price-item--regular {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.1px;
  line-height: 1.2;
}

.card-wrapper.product-card-wrapper .price-item__from {
  font-weight: 400;
  margin-right: 0.25em;
}

.card-wrapper.product-card-wrapper .price-item__amount {
  color: #000000;
}

.TotalBlock .Price {
  color: #6C72E0;
}

/* PDP Payment Icons */
.pdp-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  /* padding: 12px 0 4px; */
  margin: 0;
}

.pdp-payment-icons li {
  display: flex;
  align-items: center;
}

/* Fix: hamburger always in left grid area; hide any orphaned left search */
header-drawer {
  grid-area: left-icons;
  justify-self: start;
}

/* Hide any .header__search that is a direct child of .header (not inside header__icons) */
.header > .header__search,
.header > details-modal {
  display: none !important;
}

/* ── PDP Sale Badge ── */
.pdp-sale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f2fa;
  color: #2b2b36;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 15px;
  gap: 8px;
}
.pdp-sale-badge img,
.pdp-sale-badge svg {
  width: 18px;
  height: 18px;
}

/* ── Image Banner Clickable Link ── */
.banner {
  position: relative;
}
.banner__link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner__content {
  position: relative;
  z-index: 2; /* Ensures buttons inside the content remain clickable above the overlay */
}

/* ── Custom Blog Post Styles (kk-post) ── */
.kk-post {
  --kk-acc: #8AA0F2;
  --kk-acc-deep: #6c72e0;
  --kk-text: #2a2c42;
  --kk-muted: #7f86a0;
  --kk-cream: #f6f5f2;
  --kk-band: #f4f6ff;
  --kk-line: #e6e8f5;
  font-family: 'Poppins', sans-serif;
  color: var(--kk-text);
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 4px 40px;
  line-height: 1.7;
}
.kk-post * {
  box-sizing: border-box;
}
.kk-post .kk-ic {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.12em;
}
.kk-post__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--kk-acc-deep);
  background: var(--kk-band);
  border: 1px solid var(--kk-line);
  padding: 6px 13px;
  border-radius: 999px;
}
.kk-post__title {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.12;
  text-wrap: balance;
  margin: 16px 0 10px;
}
.kk-post__lede {
  font-size: clamp(16px, 2.4vw, 19px);
  color: #4b5069;
  margin: 0 0 26px;
}
.kk-post__hero {
  margin: 0 0 30px;
}
.kk-post__hero img,
.kk-post__wide img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.kk-post figcaption {
  font-size: 13.5px;
  color: var(--kk-muted);
  text-align: center;
  margin-top: 9px;
}
.kk-post__wide {
  margin: 26px 0;
}
.kk-post__vid {
  margin: 26px 0;
}
.kk-post__vid video {
  display: block;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  border-radius: 16px;
  background: #000;
}
.kk-h2 {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(23px, 3.4vw, 30px);
  line-height: 1.15;
  margin: 34px 0 12px;
}
.kk-h2__eb {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--kk-acc-deep);
  margin-bottom: 5px;
}
.kk-post p {
  margin: 0 0 16px;
}
.kk-post strong {
  color: var(--kk-text);
  font-weight: 700;
}
.kk-post em {
  font-style: italic;
}
.kk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.kk-stat {
  background: var(--kk-band);
  border: 1px solid var(--kk-line);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
}
.kk-stat__ic {
  width: 26px;
  height: 26px;
  color: var(--kk-acc-deep);
}
.kk-stat__n {
  display: block;
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--kk-text);
  line-height: 1.1;
  margin-top: 4px;
}
.kk-stat__l {
  display: block;
  font-size: 12.5px;
  color: var(--kk-muted);
  margin-top: 4px;
  line-height: 1.35;
}
.kk-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 12px;
}
.kk-ba__side {
  position: relative;
  margin: 0;
}
.kk-ba__side img {
  width: 100%;
  border-radius: 14px;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.kk-ba__tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.kk-ba__tag--before {
  background: rgba(42, 44, 66, .82);
}
.kk-ba__tag--after {
  background: rgba(108, 114, 224, .92);
}
.kk-post__caption {
  font-size: 14px;
  color: var(--kk-muted);
  font-style: italic;
  margin: 0 0 18px;
}
.kk-pull {
  background: var(--kk-cream);
  border-left: 4px solid var(--kk-acc);
  border-radius: 0 14px 14px 0;
  padding: 20px 22px;
  margin: 26px 0;
}
.kk-pull__q {
  width: 24px;
  height: 24px;
  color: var(--kk-acc);
}
.kk-pull p {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
  color: var(--kk-text);
  margin: 6px 0 8px;
}
.kk-pull__by {
  font-size: 13.5px;
  color: var(--kk-muted);
  font-weight: 600;
}
.kk-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
}
.kk-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 13px;
}
.kk-list li .kk-ic {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--kk-acc-deep);
  border-radius: 50%;
  padding: 4px;
  margin-top: 2px;
}
.kk-post__thanks {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--kk-text);
  margin: 22px 0 26px;
}
.kk-cta {
  text-align: center;
  background: var(--kk-band);
  border: 1px solid var(--kk-line);
  border-radius: 18px;
  padding: 28px 20px;
  margin-top: 8px;
}
.kk-post a.kk-cta__btn,
.kk-post a.kk-cta__btn:hover,
.kk-post a.kk-cta__btn:visited {
  display: inline-block;
  background: var(--kk-acc-deep);
  color: #ffffff !important;
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-decoration: none !important;
  padding: 15px 34px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(108, 114, 224, .28);
  transition: transform .15s;
}
.kk-cta__btn:hover {
  transform: translateY(-2px);
}
.kk-cta__sub {
  font-size: 13.5px;
  color: var(--kk-muted);
  margin: 12px 0 0;
}
@media(max-width:560px) {
  .kk-stats {
    grid-template-columns: 1fr;
  }
  .kk-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 14px 16px;
  }
  .kk-stat__n {
    margin-top: 0;
  }
}
