/* Krishara Fashion — luxury minimal (Silverora-inspired, custom; not default Bootstrap) */
:root {
  --kf-white: #ffffff;
  --kf-cream: #f5efe6;
  --kf-black: #000000;
  --kf-gold: #c9a96e;
  --kf-grey: #faf7f2;
  --kf-muted: #6b6b6b;
  --kf-border: #ececec;
  --kf-font: "Poppins", system-ui, sans-serif;
  --kf-display: "Playfair Display", Georgia, serif;
  /* Spacing scale */
  --kf-space-xs: 0.5rem;
  --kf-space-sm: 1rem;
  --kf-space-md: 1.75rem;
  --kf-space-lg: 2.5rem;
  --kf-space-xl: 4rem;
  --kf-space-2xl: 6rem;
  /* Motion */
  --kf-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --kf-ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --kf-duration: 0.4s;
  --kf-duration-fast: 0.25s;
}

/* ——— Base typography ——— */
body.kf-body {
  font-family: var(--kf-font);
  color: var(--kf-black);
  background: #fcfaf7;
  letter-spacing: 0.01em;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.kf-body,
body.kf-body * {
  cursor: default;
}

body.kf-body a,
body.kf-body button,
body.kf-body [role="button"],
body.kf-body .js-wishlist-toggle,
body.kf-body .js-add-cart {
  cursor: pointer;
}

.container {
  max-width: 1200px;
}

.kf-main {
  padding-bottom: clamp(var(--kf-space-xl), 6vw, var(--kf-space-2xl));
}

.kf-font-display {
  font-family: var(--kf-display);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.kf-accent {
  color: var(--kf-gold);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--kf-duration-fast) var(--kf-ease-soft);
}
a:hover {
  color: var(--kf-gold);
}

/* ——— Header ——— */
.kf-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(245, 239, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--kf-border);
  transition: box-shadow var(--kf-duration) var(--kf-ease-out);
}
.kf-header:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.kf-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  gap: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.kf-header__left,
.kf-header__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.kf-header__right {
  justify-content: flex-end;
}

.kf-header__logo {
  font-family: var(--kf-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: color var(--kf-duration) var(--kf-ease-out), letter-spacing var(--kf-duration) var(--kf-ease-out);
}
.kf-header__logo:hover {
  color: var(--kf-gold);
  letter-spacing: 0.12em;
}

.kf-nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--kf-black);
  border: none;
  background: none;
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--kf-duration-fast) var(--kf-ease-soft);
}
.kf-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--kf-duration) var(--kf-ease-out);
}
.kf-nav-link:hover {
  color: var(--kf-gold);
}
.kf-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.kf-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  transition: border-color var(--kf-duration-fast) var(--kf-ease-soft), background var(--kf-duration-fast) var(--kf-ease-soft),
    transform var(--kf-duration-fast) var(--kf-ease-out), box-shadow var(--kf-duration-fast) var(--kf-ease-soft);
}
.kf-icon-btn:hover {
  border-color: var(--kf-border);
  background: var(--kf-grey);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.kf-icon-btn:active {
  transform: translateY(0);
}

.kf-badge-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--kf-black);
  color: var(--kf-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--kf-duration-fast) var(--kf-ease-out);
}
.kf-icon-btn:hover .kf-badge-count {
  transform: scale(1.05);
}

/* ——— Hero ——— */
.kf-hero {
  position: relative;
  background: var(--kf-grey);
}

.kf-hero .carousel-item img {
  width: 100%;
  height: min(70vh, 560px);
  object-fit: contain;
  background: #f8f5f0;
}

.kf-hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--kf-white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12));
}

.kf-hero-caption .text-uppercase {
  letter-spacing: 0.22em !important;
  font-weight: 500;
  opacity: 0.95;
}

.kf-hero-caption h1 {
  font-family: var(--kf-display);
  letter-spacing: 0.06em;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.kf-hero .carousel-control-prev,
.kf-hero .carousel-control-next {
  width: 12%;
  opacity: 1;
  transition: opacity var(--kf-duration) var(--kf-ease-out);
}
.kf-hero .carousel-control-prev:hover,
.kf-hero .carousel-control-next:hover {
  opacity: 1;
}

.kf-hero .carousel-control-prev-icon,
.kf-hero .carousel-control-next-icon,
.kf-home-hero__slider .carousel-control-prev-icon,
.kf-home-hero__slider .carousel-control-next-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.65);
  background-size: 55% 55%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.kf-hero .carousel-control-prev:hover .carousel-control-prev-icon,
.kf-hero .carousel-control-next:hover .carousel-control-next-icon,
.kf-home-hero__slider .carousel-control-prev:hover .carousel-control-prev-icon,
.kf-home-hero__slider .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.85);
}

.kf-hero .carousel-indicators [data-bs-target] {
  width: 2rem;
  height: 3px;
  border-radius: 0;
  margin: 0 4px;
  transition: opacity var(--kf-duration-fast) var(--kf-ease-soft), background var(--kf-duration-fast) var(--kf-ease-soft);
}

.kf-home-hero {
  background: linear-gradient(180deg, #f8f5f0 0%, #fff 100%);
}

.kf-home-hero__title {
  font-family: var(--kf-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.kf-home-hero__slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.kf-home-hero__slider .carousel-item img {
  height: clamp(320px, 48vw, 540px);
  object-fit: contain;
  background: #f8f5f0;
}

.kf-home-hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.1rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent);
}

.kf-home-hero__overlay h2 {
  font-family: var(--kf-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  margin: 0;
}

.kf-home-section-alt {
  background: #f8f5f0;
}

.bg-light {
  background-color: #f8f5f0 !important;
}

/* ——— Sections ——— */
.kf-section,
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

.kf-section__title {
  font-family: var(--kf-display);
  font-size: clamp(1.85rem, 3.2vw, 2.125rem);
  letter-spacing: 0.04em;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}

.kf-section__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #c8a97e;
  margin-top: 10px;
}

.kf-section__subtitle {
  color: var(--kf-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 44rem;
  font-weight: 400;
  margin-bottom: 30px;
}

/* ——— Category cards ——— */
.kf-category-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--kf-grey);
  aspect-ratio: 3/4;
  transition: transform var(--kf-duration) var(--kf-ease-out), box-shadow var(--kf-duration) var(--kf-ease-out);
}
.kf-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.kf-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--kf-ease-out);
}

.kf-category-card:hover img {
  transform: scale(1.07);
}

.kf-category-card__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  color: var(--kf-white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: padding var(--kf-duration) var(--kf-ease-out);
}
.kf-category-card:hover .kf-category-card__label {
  padding-bottom: 1.75rem;
}

.kf-signature-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 360px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.kf-signature-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.55s var(--kf-ease-out);
}

.kf-signature-card:hover img {
  transform: scale(1.06);
}

.kf-signature-card__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: var(--kf-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
}

.kf-signature-card--slider {
  min-height: 340px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

/* ——— Product cards ——— */
.kf-product-card {
  position: relative;
  text-align: left;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kf-product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--kf-grey);
  aspect-ratio: 3/4;
  margin-bottom: 1.15rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.kf-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--kf-ease-out), opacity 0.4s var(--kf-ease-soft);
}

.kf-product-card:hover .kf-product-card__main {
  transform: scale(1.05);
}

.kf-product-card__alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s var(--kf-ease-soft);
}

.kf-product-card:hover .kf-product-card__alt {
  opacity: 1;
}

.kf-product-card:hover .kf-product-card__main {
  opacity: 0.88;
}

.kf-product-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--kf-duration) var(--kf-ease-soft), padding var(--kf-duration) var(--kf-ease-out);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 45%);
}

.kf-product-card:hover .kf-product-card__overlay {
  opacity: 1;
  pointer-events: auto;
  padding-bottom: 1.5rem;
}

.kf-product-card > a:last-child {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color var(--kf-duration-fast) var(--kf-ease-soft);
}

a.kf-product-card__img-hit,
a.kf-product-card__body-hit {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color var(--kf-duration-fast) var(--kf-ease-soft);
}

.kf-product-card:hover .kf-product-card__title {
  color: var(--kf-gold);
}

.kf-product-card:hover {
  transform: translateY(-4px);
}

.kf-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--kf-gold);
  background: var(--kf-white);
  color: var(--kf-black);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: background var(--kf-duration) var(--kf-ease-out), color var(--kf-duration) var(--kf-ease-out),
    transform var(--kf-duration-fast) var(--kf-ease-out), box-shadow var(--kf-duration) var(--kf-ease-out);
}
.kf-btn-gold::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s var(--kf-ease-out);
}
.kf-btn-gold:hover::before {
  transform: scale(8);
}

.kf-btn-gold:hover {
  background: var(--kf-gold);
  color: var(--kf-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 169, 110, 0.35);
}
.kf-btn-gold:active {
  transform: translateY(0);
}

.kf-body .btn,
.kf-body button,
.kf-body [type="button"],
.kf-body [type="submit"] {
  transition: all 0.3s ease;
}

.kf-product-card__title {
  font-family: var(--kf-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  transition: color var(--kf-duration-fast) var(--kf-ease-soft);
}

.kf-product-card__meta {
  font-size: 0.875rem;
  color: var(--kf-muted);
  letter-spacing: 0.04em;
}

.kf-product-card__body-hit:hover .kf-product-card__title {
  color: var(--kf-gold);
}

a.kf-product-card__collection-link {
  position: relative;
  z-index: 5;
  color: var(--kf-gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.kf-product-card__collection-row {
  position: relative;
  z-index: 5;
}

a.kf-product-card__collection-link:hover {
  color: var(--kf-black);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.kf-price {
  color: var(--kf-black);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.kf-price-old {
  text-decoration: line-through;
  color: #b0b0b0;
  margin-right: 0.5rem;
  font-weight: 400;
  font-size: 0.9rem;
}

/* ——— PDP ——— */
.kf-pdp-gallery {
  background: var(--kf-grey);
  border-radius: 14px;
  padding: 0.6rem;
}

.kf-pdp-gallery__main {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.kf-pdp-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--kf-duration) var(--kf-ease-soft), transform 0.4s ease;
  transform-origin: center center;
}

.kf-pdp-gallery__main:hover img {
  transform: scale(1.12);
}

.kf-thumb {
  width: 76px;
  height: 94px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 0.72;
  transition: border-color var(--kf-duration-fast) var(--kf-ease-soft), opacity var(--kf-duration-fast) var(--kf-ease-soft),
    transform var(--kf-duration-fast) var(--kf-ease-out);
  border-radius: 2px;
}

.kf-thumb:hover {
  border-color: var(--kf-gold);
  opacity: 1;
  transform: translateY(-2px);
}
.kf-thumb.is-active {
  border-color: var(--kf-gold);
  opacity: 1;
}

.kf-size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 0.5rem 0.85rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--kf-border);
  background: var(--kf-white);
  cursor: pointer;
  transition: border-color var(--kf-duration-fast) var(--kf-ease-soft), background var(--kf-duration-fast) var(--kf-ease-soft),
    color var(--kf-duration-fast) var(--kf-ease-soft), transform var(--kf-duration-fast) var(--kf-ease-out);
  position: relative;
}

.kf-size-pill:hover {
  border-color: var(--kf-black);
  transform: translateY(-1px);
}
.size-btn.active {
  border-color: var(--kf-black);
  background: var(--kf-black);
  color: var(--kf-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px) scale(1.02);
}
.size-btn[disabled],
.size-btn.is-out {
  cursor: not-allowed;
  opacity: 0.45;
  border-style: dashed;
}
.size-btn.pulse-in {
  animation: kfSizeSelect 0.24s var(--kf-ease-out);
}
@keyframes kfSizeSelect {
  0% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1.02);
  }
}

.kf-size-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.kf-size-pill:has(input:checked) {
  border-color: var(--kf-black);
  background: var(--kf-black);
  color: var(--kf-white);
}

.kf-color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--kf-white);
  box-shadow: 0 0 0 1px var(--kf-border);
}

/* PDP color swatches */
.kf-pdp-breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.kf-pdp-breadcrumb a {
  color: var(--kf-muted);
  transition: color var(--kf-duration-fast) var(--kf-ease-soft);
}
.kf-pdp-breadcrumb a:hover {
  color: var(--kf-black);
}

.kf-color-option {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  min-width: 3.5rem;
  transition: transform var(--kf-duration-fast) var(--kf-ease-out);
}
.kf-color-option:hover {
  transform: translateY(-2px);
}
.kf-color-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.kf-color-option__ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--kf-border);
  background: var(--kf-white);
  transition: box-shadow var(--kf-duration) var(--kf-ease-out), border-color var(--kf-duration-fast) var(--kf-ease-soft);
}
.kf-color-option__fill {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.kf-color-option__initial {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--kf-muted);
  text-transform: uppercase;
}
.kf-color-option__label {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--kf-muted);
  text-align: center;
  max-width: 5.5rem;
  line-height: 1.35;
}
.kf-color-option:hover .kf-color-option__ring {
  border-color: #bbb;
}
.kf-color-option:has(input:focus-visible) .kf-color-option__ring {
  outline: 2px solid var(--kf-gold);
  outline-offset: 2px;
}
.kf-color-option:has(input:checked) .kf-color-option__ring {
  border-color: var(--kf-black);
  box-shadow: 0 0 0 1px var(--kf-white), 0 0 0 2px var(--kf-black);
}
.kf-color-option:has(input:checked) .kf-color-option__label {
  color: var(--kf-black);
  font-weight: 600;
}

.kf-pdp-buy {
  position: sticky;
  top: 7rem;
}
@media (max-width: 991.98px) {
  .kf-pdp-buy {
    position: static;
  }
}

.kf-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--kf-border);
  border-radius: 999px;
  overflow: hidden;
}
.kf-qty button {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--kf-white);
  transition: background var(--kf-duration-fast) var(--kf-ease-soft), color var(--kf-duration-fast) var(--kf-ease-soft);
}
.kf-qty button:hover {
  background: var(--kf-grey);
  color: var(--kf-black);
}
.kf-qty input {
  width: 48px;
  border: none;
  text-align: center;
  font-weight: 500;
}

/* ——— Tables / cart ——— */
.kf-table-clean th {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--kf-muted);
  font-weight: 600;
  border-bottom-color: var(--kf-border) !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.kf-table-clean td {
  vertical-align: middle;
  border-color: var(--kf-border) !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.kf-cart-size {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--kf-border);
  min-width: 2.75rem;
  font-weight: 500;
}
.kf-cart-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.kf-checkout-sticky {
  position: sticky;
  top: 104px;
}

.kf-order-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: capitalize;
}
.kf-order-badge--pending {
  background: #fff6d4;
  color: #856404;
}
.kf-order-badge--confirmed {
  background: #d4edda;
  color: #155724;
}
.kf-order-badge--shipped {
  background: #d1ecf1;
  color: #0c5460;
}
.kf-order-badge--delivered {
  background: #c3e6cb;
  color: #0b3d20;
}
.kf-order-badge--cancelled {
  background: #f8d7da;
  color: #721c24;
}
.kf-order-badge--processing {
  background: #fff6d4;
  color: #856404;
}

/* ——— Toast & loader ——— */
.kf-toast-wrap {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.kf-toast {
  min-width: 260px;
  padding: 1rem 1.15rem;
  background: var(--kf-black);
  color: var(--kf-white);
  font-size: 0.875rem;
  line-height: 1.5;
  border-left: 3px solid var(--kf-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  opacity: 0;
  transform: translateY(10px);
  animation: kfToastIn 0.45s var(--kf-ease-out) forwards;
}

@keyframes kfToastIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kf-loader {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.kf-loader.is-active {
  display: flex;
}
.kf-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--kf-border);
  border-top-color: var(--kf-gold);
  animation: kfSpin 0.75s linear infinite;
}
@keyframes kfSpin {
  to {
    transform: rotate(360deg);
  }
}

.kf-modal .modal-content {
  border-radius: 2px;
  border: 1px solid var(--kf-border);
}
.kf-modal .modal-header {
  border-bottom-color: var(--kf-border);
}

/* ——— Footer ——— */
footer.kf-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 28px;
  margin-top: 0;
}

.footer-link {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #ccc;
  transition: all 0.3s ease;
}
a.footer-link:hover {
  color: #c8a97e;
  transform: translateX(4px);
}

footer.kf-footer .text-uppercase {
  color: #fff;
}

footer.kf-footer .form-control {
  border-radius: 10px;
}

/* ——— Bootstrap tie-ins ——— */
.kf-body .btn-dark {
  transition: background var(--kf-duration) var(--kf-ease-out), transform var(--kf-duration-fast) var(--kf-ease-out),
    box-shadow var(--kf-duration) var(--kf-ease-out);
}
.kf-body .btn-dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.kf-body .dropdown-menu {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}
.kf-body .dropdown-item {
  transition: background var(--kf-duration-fast) var(--kf-ease-soft), padding-left var(--kf-duration-fast) var(--kf-ease-out);
}
.kf-body .dropdown-item:hover {
  padding-left: 1.35rem;
  background: var(--kf-grey);
}

.kf-body .form-control,
.kf-body .form-select {
  transition: border-color var(--kf-duration-fast) var(--kf-ease-soft), box-shadow var(--kf-duration-fast) var(--kf-ease-soft);
  border-radius: 10px;
  border-color: #e7ddcf;
}
.kf-body .form-control:focus,
.kf-body .form-select:focus {
  border-color: var(--kf-gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.18);
}

/* ——— Shop sidebar ——— */
.kf-shop-sidebar .nav-link {
  transition: color var(--kf-duration-fast) var(--kf-ease-soft), padding-left var(--kf-duration) var(--kf-ease-out), background var(--kf-duration-fast) var(--kf-ease-soft);
  border-radius: 4px;
  margin-bottom: 0.15rem;
}
.kf-shop-sidebar .nav-link:hover {
  color: var(--kf-black) !important;
  padding-left: 0.35rem;
  background: rgba(0, 0, 0, 0.03);
}
.kf-shop-sidebar .nav-link img {
  transition: transform var(--kf-duration) var(--kf-ease-out), box-shadow var(--kf-duration) var(--kf-ease-out);
}
.kf-shop-sidebar .nav-link:hover img {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.kf-offer-banner {
  background: linear-gradient(135deg, #f8f2e8, #f2e4cf);
  border: 1px solid #eadfcd;
  border-radius: 18px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 14px 30px rgba(201, 169, 110, 0.16);
}

.kf-inspire-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.kf-inspire-tile img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s var(--kf-ease-out);
}

.kf-inspire-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.64), transparent);
}

.kf-inspire-tile:hover img {
  transform: scale(1.06);
}

.kf-wish-btn-wrap {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
}

.kf-wish-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(17, 24, 39, 0.72);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, background 0.2s ease;
}

.kf-wish-btn:hover {
  transform: translateY(-2px);
  background: rgba(17, 24, 39, 0.88);
  color: #ffffff;
}
.kf-wish-btn.is-active {
  color: #e11d48;
  background: rgba(255, 255, 255, 0.98);
}

.kf-pdp-tabs .nav-link {
  border: 0;
  color: var(--kf-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kf-pdp-tabs .nav-link.active {
  color: var(--kf-black);
  background: transparent;
  border-bottom: 2px solid var(--kf-gold);
}

.kf-why-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.kf-why-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.kf-why-point {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid #eee1ce;
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem 0.9rem;
  transition: transform var(--kf-duration-fast) var(--kf-ease-out), box-shadow var(--kf-duration-fast) var(--kf-ease-soft);
}

.kf-why-point i {
  color: var(--kf-gold);
  font-size: 0.95rem;
}

.kf-why-point span {
  font-size: 0.9rem;
  color: #1a1a1a;
}

.kf-why-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .kf-section {
    padding: 50px 0;
  }
}

.kf-bg-beige {
  background: #f8f5f0;
}

.kf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.kf-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes kfFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kf-luxe-hero,
.kf-contact-hero {
  background: linear-gradient(rgba(15, 15, 15, 0.45), rgba(15, 15, 15, 0.35)),
    url("https://images.unsplash.com/photo-1583391733956-6c77a7f8f4f1?q=80&w=1800&auto=format&fit=crop")
      center/cover no-repeat;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #fff;
}

.kf-luxe-hero__content h1,
.kf-contact-hero h1 {
  font-family: var(--kf-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0.03em;
}

.kf-luxe-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.15);
}

.kf-luxe-card,
.kf-contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem;
  border: 1px solid #ece4d8;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kf-luxe-card:hover,
.kf-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.kf-luxe-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c8a97e;
  background: #f8f2e8;
  margin-bottom: 0.8rem;
}

.kf-luxe-split {
  background: #fff;
  border: 1px solid #ece4d8;
  border-radius: 16px;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kf-luxe-cta {
  background: #f8f5f0;
  border: 1px solid #ece4d8;
  border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.kf-luxe-cta .form-control {
  border-radius: 999px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.kf-subscribe-btn {
  background: #c8a97e;
  color: #fff;
  border-color: #c8a97e;
}

.kf-subscribe-btn:hover {
  background: #b89768;
  border-color: #b89768;
  box-shadow: 0 10px 24px rgba(200, 169, 126, 0.35);
}

.kf-contact-form-wrap {
  background: #fff;
  border: 1px solid #ece4d8;
  border-radius: 18px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.kf-contact-form-wrap .form-floating > .form-control,
.kf-contact-form-wrap .form-floating > .form-control-plaintext,
.kf-contact-form-wrap .form-floating > .form-select {
  border-radius: 12px;
  border-color: #e7ddcf;
}

.kf-contact-form-wrap .form-control:focus {
  border-color: #c8a97e;
  box-shadow: 0 0 0 0.2rem rgba(200, 169, 126, 0.2);
}

.kf-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid #ece4d8;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.kf-track-card {
  background: #fff;
  border: 1px solid #ece4d8;
  border-radius: 14px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.kf-track-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #efe6d8;
  overflow: hidden;
}
.kf-track-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #c8a97e, #b7925f);
  transition: width 0.4s ease;
}
.kf-timeline-step {
  text-align: center;
  border: 1px solid #ece4d8;
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem 0.55rem;
  height: 100%;
}
.kf-timeline-step__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2d3be;
  color: #8d744c;
  background: #fbf6ee;
}
.kf-timeline-step.is-done .kf-timeline-step__icon,
.kf-timeline-step.is-current .kf-timeline-step__icon {
  background: #c8a97e;
  color: #fff;
  border-color: #c8a97e;
}
.kf-timeline-step.is-current {
  box-shadow: 0 10px 24px rgba(200, 169, 126, 0.24);
}

@media (max-width: 991.98px) {
  .kf-luxe-split {
    grid-template-columns: 1fr;
  }
  .kf-luxe-hero,
  .kf-contact-hero {
    min-height: 290px;
  }
}

.kf-cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 126, 0.7);
  background: rgba(200, 169, 126, 0.12);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2001;
  transition: transform 0.14s ease, opacity 0.2s ease;
  opacity: 0;
}

.kf-cursor.is-active {
  opacity: 1;
}

.kf-cursor.is-hover {
  transform: translate(-50%, -50%) scale(1.55);
}

.kf-wish-btn.bump,
.js-add-cart.bump {
  animation: kfBump 0.28s ease;
}

@keyframes kfBump {
  0% { transform: scale(1); }
  45% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@media (hover: none), (pointer: coarse) {
  .kf-cursor {
    display: none;
  }
  .kf-pdp-gallery__main:hover img {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .kf-header__inner {
    grid-template-columns: 1fr auto auto;
    min-height: auto;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
  .kf-header__logo {
    justify-self: center;
    grid-column: 1 / -1;
    order: -1;
    padding: 0.65rem 0 0;
  }
  .kf-nav-link::after {
    display: none;
  }
}

/* ——— Account pages ——— */
.kf-account-wrap {
  background: #f8f5f0;
}
.kf-account-wrap .card {
  border: 1px solid #ece4d8;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}
.kf-account-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kf-order-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}
.kf-account-sidebar {
  position: sticky;
  top: 100px;
}
.kf-account-nav {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: #1a1a1a;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 0.92rem;
}
.kf-account-nav + .kf-account-nav {
  margin-top: 0.35rem;
}
.kf-account-nav:hover {
  background: #f8f5f0;
  border-color: #eadfce;
  color: #1a1a1a;
}
.kf-account-nav.is-active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.kf-order-item-image {
  width: 56px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ece4d8;
  background: #fff;
}

@media (max-width: 991.98px) {
  .kf-account-sidebar {
    position: static;
  }
}

/* ——— Instagram conversion homepage ——— */
.kf-bg-white {
  background: #fff;
}

.kf-instagram-hero {
  background: linear-gradient(180deg, #f8f5f0 0%, #fff 100%);
}

.kf-hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.kf-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid #111;
  color: #111;
  background: transparent;
  border-radius: 999px;
}

.kf-btn-outline:hover {
  background: #111;
  color: #fff;
}

.kf-btn-outline--disabled,
.kf-btn-outline.kf-btn-outline--disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.45;
  border-color: rgba(17, 17, 17, 0.35);
  color: rgba(17, 17, 17, 0.45);
  background: transparent;
}

.kf-btn-outline--disabled:hover,
.kf-btn-outline.kf-btn-outline--disabled:hover {
  background: transparent;
  color: rgba(17, 17, 17, 0.45);
}

.kf-btn-outline--disabled.kf-btn-lift:hover {
  transform: none;
  box-shadow: none;
}

.kf-btn-lift {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.kf-btn-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.kf-instagram-hero__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  will-change: transform;
}

.kf-instagram-hero__img {
  width: 100%;
  height: clamp(360px, 54vw, 580px);
  object-fit: contain;
  display: block;
  background: #f8f5f0;
}

.kf-instagram-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.01) 42%);
}

.kf-instagram-hero__chips {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.kf-instagram-hero__media .carousel-item {
  background: #f8f5f0;
}

.kf-hero-chip {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.kf-hero-chip--ghost {
  background: rgba(17, 17, 17, 0.78);
  color: #fff;
}

.kf-reels-scroll {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kf-reels-swiper {
  position: relative;
  padding: 0 0.2rem;
}

.kf-reels-swiper .swiper-slide {
  height: auto;
}

.kf-reels-swiper__prev,
.kf-reels-swiper__next {
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  color: #182f5f !important;
}

.kf-reels-swiper__prev::after,
.kf-reels-swiper__next::after {
  font-size: 12px !important;
  font-weight: 700;
}

.kf-reel-card {
  display: block;
}

.kf-reel-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 9/16;
  background: #f3f0eb;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.kf-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.kf-reel-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  color: #fff;
}

.kf-reel-card__title {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

.kf-reel-card__cta {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f8f5f0;
}

.kf-reel-card:hover .kf-reel-video {
  transform: scale(1.06);
}

.kf-badge-bestseller {
  background: #111;
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 0.66rem;
}

.kf-product-card__rating .kf-muted {
  color: #6b6b6b;
}

.kf-stars {
  color: #c8a97e;
  font-size: 0.78rem;
}

.kf-stars--lg {
  font-size: 0.9rem;
}

.kf-review-card {
  background: #fff;
  border: 1px solid #ede5d9;
  border-radius: 16px;
  padding: 1.15rem 1.15rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.kf-review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #f0e5d4;
}

.kf-review-text {
  color: #2e2e2e;
  line-height: 1.7;
}

.kf-reviews-swiper {
  position: relative;
  padding: 0.2rem 0.2rem 0.4rem;
}

.kf-reviews-swiper .swiper-slide {
  height: auto;
}

.kf-reviews-swiper__prev,
.kf-reviews-swiper__next {
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  color: #182f5f !important;
}

.kf-reviews-swiper__prev::after,
.kf-reviews-swiper__next::after {
  font-size: 12px !important;
  font-weight: 700;
}

.kf-review-summary-card,
.kf-review-form-card,
.kf-review-display-card {
  background: #fff;
  border: 1px solid #ece7de;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}

.kf-review-summary-score {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
  color: #1f1f1f;
}

.kf-rating-bar {
  position: relative;
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: #f0ede6;
  overflow: hidden;
}

.kf-rating-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #c79a46 0%, #e6bf70 100%);
}

.kf-review-stars {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.kf-review-star-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #d0a44d;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .18s ease;
}

.kf-review-star-btn:hover {
  transform: translateY(-1px) scale(1.06);
}

.kf-review-display-card + .kf-review-display-card {
  margin-top: .8rem;
}

.kf-review-display-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #ece7de;
}

@media (max-width: 575.98px) {
  .kf-review-summary-card,
  .kf-review-form-card,
  .kf-review-display-card {
    border-radius: 12px;
    padding: .85rem;
  }
}

.kf-whatsapp-hero {
  position: relative;
}

.kf-whatsapp-btn {
  min-width: 220px;
}

.kf-whatsapp-floating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  font-size: 2rem;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.3);
}

.kf-whatsapp-sticky {
  display: none;
}

.kf-edit-3d-wrap {
  position: relative;
  padding: 0.55rem 0 0.35rem;
  overflow: hidden;
}

.kf-edit-3d-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  top: 47%;
  height: 52px;
  border-radius: 999px;
  background:
    radial-gradient(100% 120% at 0% 50%, rgba(190, 190, 190, 0.1), rgba(190, 190, 190, 0) 68%),
    radial-gradient(100% 120% at 100% 50%, rgba(190, 190, 190, 0.1), rgba(190, 190, 190, 0) 68%),
    linear-gradient(90deg, rgba(173, 173, 173, 0.12) 0%, rgba(181, 181, 181, 0.2) 50%, rgba(173, 173, 173, 0.12) 100%);
  filter: blur(0.6px);
  pointer-events: none;
  z-index: 1;
}

.kf-edit-3d-bgtext {
  position: absolute;
  inset: 44% 0 auto;
  transform: translateY(-50%);
  text-align: center;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(4.2rem, 15vw, 10rem);
  line-height: 1;
  color: rgba(10, 52, 126, 0.16);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: 0.02em;
}

.kf-edit-swiper {
  position: relative;
  z-index: 2;
  padding: 0;
  overflow: visible;
}

.kf-edit-swiper .swiper-slide {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(10px) scale(0.92);
  opacity: 0.7;
  filter: blur(0.2px);
  width: 220px;
  flex-shrink: 0;
  transform-origin: center bottom;
}

.kf-edit-swiper .swiper-slide-active {
  transform: translateY(-25px) scale(1.12) rotate(0deg);
  opacity: 1;
  filter: blur(0);
  z-index: 8;
  animation: kfEditActiveFloat 5.8s ease-in-out infinite;
}

.kf-edit-swiper .swiper-slide-prev,
.kf-edit-swiper .swiper-slide-next {
  transform: translateY(9px) scale(0.92);
  opacity: 0.72;
  filter: blur(0.12px);
}

.kf-edit-swiper .swiper-slide-prev {
  transform: translateY(9px) scale(0.92) rotate(-2deg);
}

.kf-edit-swiper .swiper-slide-next {
  transform: translateY(9px) scale(0.92) rotate(2deg);
}

.kf-edit-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
  opacity: 0.38;
  transform: translateY(12px) scale(0.88);
  filter: blur(0.45px);
}

.kf-edit-3d-card {
  display: block;
  border-radius: 10px;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  animation: kfEditFloat 6s ease-in-out infinite;
}

.kf-edit-3d-card__image-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: transparent;
  margin: 0;
  padding: 0;
}

.kf-edit-3d-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
  display: block;
}

.kf-edit-swiper .swiper-slide-active .kf-edit-3d-card__image-wrap {
  background: transparent;
}

.kf-edit-swiper .swiper-slide-active .kf-edit-3d-card__image-wrap img {
  object-fit: contain;
  object-position: center center;
  transform: scale(1);
}

.kf-edit-swiper .swiper-slide-prev .kf-edit-3d-card__image-wrap img,
.kf-edit-swiper .swiper-slide-next .kf-edit-3d-card__image-wrap img,
.kf-edit-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .kf-edit-3d-card__image-wrap img {
  object-fit: contain;
  object-position: center center;
  transform: scale(1);
}

.kf-edit-3d-card__body {
  display: none;
}

.kf-edit-3d-card__title {
  font-family: var(--kf-display);
  font-size: 1rem;
  color: #161616;
  text-align: center;
  letter-spacing: 0.02em;
}

.kf-edit-3d-card:hover {
  transform: translateY(-3px) scale(1.006);
  box-shadow: none;
  filter: saturate(1.05);
}

.kf-edit-3d-card:hover .kf-edit-3d-card__image-wrap img {
  transform: scale(1.03);
}

/* Krishara Edit swiper: display-only slides (no collection links) */
.kf-edit-3d-slide {
  cursor: default;
  outline: none;
}

.kf-edit-swiper .kf-edit-3d-slide .kf-edit-3d-card:hover,
.kf-edit-swiper .kf-edit-3d-slide .kf-edit-3d-card:focus-within {
  transform: none;
  filter: none;
  box-shadow: none;
}

.kf-edit-swiper .kf-edit-3d-slide .kf-edit-3d-card:hover .kf-edit-3d-card__image-wrap img {
  transform: none;
}

.kf-edit-swiper__prev,
.kf-edit-swiper__next {
  width: 36px !important;
  height: 36px !important;
  top: 50% !important;
  margin-top: 0 !important;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #182f5f !important;
  transition: transform 0.22s ease, background 0.22s ease;
  z-index: 30 !important;
  pointer-events: auto !important;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
}

.kf-edit-swiper__prev:hover,
.kf-edit-swiper__next:hover {
  transform: translateY(calc(-50% - 2px));
  background: rgba(255, 255, 255, 1);
}

.kf-edit-swiper__prev {
  left: -6px !important;
}

.kf-edit-swiper__next {
  right: -6px !important;
}

.kf-edit-swiper__prev::after,
.kf-edit-swiper__next::after {
  font-size: 12px !important;
  font-weight: 700;
}

@keyframes kfEditFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes kfEditActiveFloat {
  0%, 100% { transform: translateY(-25px) scale(1.12); }
  50% { transform: translateY(-28px) scale(1.12); }
}

@media (max-width: 991.98px) {
  .kf-reels-swiper__prev,
  .kf-reels-swiper__next {
    width: 30px !important;
    height: 30px !important;
  }

  .kf-whatsapp-floating {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .kf-edit-3d-bgtext {
    font-size: clamp(2.8rem, 15vw, 5.1rem);
    inset: 47% 0 auto;
  }

  .kf-edit-3d-wave {
    height: 34px;
    top: 50%;
  }

  .kf-edit-swiper .swiper-slide-active {
    transform: translateY(-14px) scale(1.05) rotate(0deg);
  }

  .kf-edit-swiper .swiper-slide-prev {
    transform: translateY(6px) scale(0.93) rotate(-1.5deg);
  }

  .kf-edit-swiper .swiper-slide-next {
    transform: translateY(6px) scale(0.93) rotate(1.5deg);
  }

  .kf-edit-3d-card__image-wrap {
    height: clamp(190px, 44vw, 240px);
  }

  .kf-edit-swiper .swiper-slide {
    width: clamp(170px, 50vw, 210px);
  }

  .kf-edit-swiper__prev,
  .kf-edit-swiper__next {
    width: 30px !important;
    height: 30px !important;
  }
}

@media (max-width: 767.98px) {
  .kf-whatsapp-sticky {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 1035;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.74rem;
    padding: 0.85rem 1rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  }

  .kf-main {
    padding-bottom: 7.25rem;
  }
}

/* Collections listing (all collections page) */
.kf-collection-index-card {
  transition: transform 0.2s ease;
}
.kf-collection-index-card:focus-visible {
  outline: 2px solid var(--kf-gold, #c9a962);
  outline-offset: 3px;
}
.kf-collection-index-card:hover .kf-collection-index-card__inner,
.kf-collection-index-card:focus-visible .kf-collection-index-card__inner {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(24, 28, 50, 0.12) !important;
  border-color: rgba(201, 169, 98, 0.35) !important;
}
@media (prefers-reduced-motion: reduce) {
  .kf-collection-index-card,
  .kf-collection-index-card:hover .kf-collection-index-card__inner {
    transition: none;
    transform: none;
  }
}

/* ─── Collections page (editorial layout) ─── */
.kf-collection-hero {
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  border-bottom: 1px solid rgba(24, 28, 50, 0.08) !important;
}

.kf-collection-hero__breadcrumb {
  --bs-breadcrumb-divider: "›";
}

.kf-collection-hero__eyebrow {
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 600;
}

.kf-collection-list {
  background: #f7f4ef;
}

.kf-collection-block__shell {
  background: #fff;
  border: 1px solid rgba(24, 28, 50, 0.07);
  border-radius: 1.125rem;
  box-shadow: 0 4px 24px rgba(24, 28, 50, 0.04), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: box-shadow 0.45s var(--kf-ease-soft), border-color 0.35s var(--kf-ease-soft);
}

.kf-collection-block:hover .kf-collection-block__shell {
  border-color: rgba(201, 169, 110, 0.22);
  box-shadow: 0 12px 40px rgba(24, 28, 50, 0.07);
}

.kf-collection-block__col-visual {
  background: linear-gradient(160deg, #f2ece4 0%, #faf6f0 55%, #fff 100%);
}

@media (min-width: 992px) {
  .kf-collection-block__col-visual {
    border-right: 1px solid rgba(24, 28, 50, 0.06);
  }

  .kf-collection-block__sticky {
    position: sticky;
    top: 5.75rem;
    z-index: 2;
    align-self: flex-start;
    padding: clamp(1.25rem, 3vw, 2rem);
  }
}

@media (max-width: 991.98px) {
  .kf-collection-block__sticky {
    padding: 1.25rem 1.25rem 0.5rem;
  }
}

.kf-collection-block__figure {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(24, 28, 50, 0.1);
}

.kf-collection-block__img {
  object-fit: cover;
  transition: transform 0.7s var(--kf-ease-out);
}

.kf-collection-block__shine {
  pointer-events: none;
  mix-blend-mode: multiply;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 42%,
    transparent 62%,
    rgba(24, 20, 16, 0.12) 100%
  );
  z-index: 1;
}

.kf-collection-block__media:hover .kf-collection-block__img,
.kf-collection-block__media:focus-visible .kf-collection-block__img {
  transform: scale(1.04);
}

.kf-collection-block__media:focus-visible {
  outline: none;
}

.kf-collection-block__media:focus-visible .kf-collection-block__figure {
  outline: 2px solid var(--kf-gold);
  outline-offset: 4px;
}

.kf-collection-block__media-cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kf-black);
  opacity: 0.55;
  transition: opacity 0.3s var(--kf-ease-soft), color 0.3s var(--kf-ease-soft);
}

.kf-collection-block__media:hover .kf-collection-block__media-cta,
.kf-collection-block__media:focus-visible .kf-collection-block__media-cta {
  opacity: 1;
  color: var(--kf-gold);
}

.kf-collection-block__main {
  padding: clamp(1.25rem, 2.8vw, 2.75rem);
}

@media (min-width: 992px) {
  .kf-collection-block__main {
    padding-left: clamp(2rem, 4vw, 3rem);
  }
}

.kf-collection-block__header {
  margin-bottom: 1rem;
}

.kf-collection-block__meta {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kf-muted);
  margin-bottom: 0.65rem;
}

.kf-collection-block__count {
  color: var(--kf-black);
}

.kf-collection-block__title {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.2;
}

.kf-collection-block__title-link {
  transition: color 0.3s var(--kf-ease-soft);
}

.kf-collection-block__title-link:hover {
  color: var(--kf-gold) !important;
}

.kf-collection-block__desc {
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 38rem;
  margin-bottom: 1.35rem;
}

@media (min-width: 992px) {
  .kf-collection-block__desc {
    margin-bottom: 1.5rem;
  }
}

.kf-collection-block__toolbar {
  padding-bottom: 0.75rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(24, 28, 50, 0.07);
}

.kf-collection-block__toolbar-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--kf-muted);
}

.kf-collection-block__see-all {
  font-weight: 600;
  color: var(--kf-black);
}

.kf-collection-block__see-all:hover {
  color: var(--kf-gold) !important;
}

.kf-collection-block__grid {
  background: rgba(252, 250, 247, 0.85);
  border: 1px solid rgba(24, 28, 50, 0.05);
  border-radius: 0.875rem;
  padding: clamp(1rem, 2.4vw, 1.75rem);
  margin-top: 0.15rem;
}

.kf-collection-block__grid .kf-product-card__media {
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(24, 28, 50, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .kf-collection-block:hover .kf-collection-block__shell {
    transition-duration: 0.01ms;
  }

  .kf-collection-block__img {
    transition: none;
  }

  .kf-collection-block__media:hover .kf-collection-block__img,
  .kf-collection-block__media:focus-visible .kf-collection-block__img {
    transform: none;
  }
}
