/* =============================================================
   Homepage — rich café aesthetic
   Warm espresso tones, cream textures, premium D2C polish
   ============================================================= */

.home-cafe {
  --cafe-espresso: var(--text-secondary);
  --cafe-brown: var(--green);
  --cafe-brown-mid: var(--text-secondary);
  --cafe-caramel: var(--text-primary);
  --cafe-latte: #f3faf5;
  --cafe-latte-deep: #e3f3e8;
  --cafe-cream: var(--white);
  --cafe-gold: var(--text-primary);
  background: var(--cafe-latte);
}

/* ---- Hero ---- */
.home-cafe .hp-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.home-cafe .hp-hero__overlay {
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(var(--green-rgb), 0.88) 0%,
    rgba(var(--green-rgb), 0.45) 42%,
    rgba(var(--green-rgb), 0.12) 68%,
    transparent 100%
  );
}

.home-cafe .hp-hero__eyebrow {
  background: rgba(var(--text-primary-rgb), 0.18);
  border-color: rgba(var(--text-primary-rgb), 0.45);
  color: var(--cafe-cream);
}

.home-cafe .hp-hero__title {
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.home-cafe .hp-hero__title em {
  color: var(--cafe-gold);
}

.home-cafe .hp-btn--primary {
  background: var(--cafe-cream);
  color: var(--cafe-brown);
  border: none;
}

.home-cafe .hp-btn--primary:hover {
  background: var(--cafe-gold);
  color: var(--cafe-espresso);
}

.home-cafe .hp-hero__tagline {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}

.home-cafe .hp-hero__tagline .bi {
  color: var(--cafe-gold);
  margin-right: 6px;
}

.home-cafe .hp-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.home-cafe .hp-hero__scroll .bi {
  font-size: 18px;
  animation: hp-scroll-bounce 2s ease-in-out infinite;
}

.home-cafe .hp-hero__scroll:hover {
  color: var(--cafe-gold);
  transform: translateX(-50%) translateY(2px);
}

@keyframes hp-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---- Marquee & stats ---- */
.home-cafe .hp-marquee {
  background: var(--cafe-espresso);
  border-block-color: rgba(var(--text-primary-rgb), 0.15);
}

.home-cafe .hp-stats {
  padding: 36px 0;
  background: linear-gradient(180deg, var(--cafe-cream) 0%, var(--cafe-latte) 100%);
  border-bottom: 1px solid rgba(var(--text-secondary-rgb), 0.08);
}

.home-cafe .hp-stats__item {
  position: relative;
  padding: 16px 12px;
}

.home-cafe .hp-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(var(--text-secondary-rgb), 0.15), transparent);
}

.home-cafe .hp-stats__num {
  color: var(--cafe-brown-mid);
}

.home-cafe .hp-stats__label {
  color: rgba(var(--text-secondary-rgb), 0.65);
}

/* ---- Section heads ---- */
.home-cafe .hp-section-head__eyebrow {
  color: var(--cafe-caramel);
}

.home-cafe .hp-section-head__title {
  color: var(--cafe-brown-mid);
}

.home-cafe .hp-section-head__lead {
  color: rgba(var(--text-secondary-rgb), 0.72);
}

/* ---- Promise / prod-tech café cards ---- */
.home-cafe .prod-tech .card {
  box-shadow: none;
  height: auto;
}

.home-cafe .prod-tech .card h2 {
  color: var(--cafe-brown-mid);
}

.home-cafe .hp-prod-tech {
  padding: 56px 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(var(--text-primary-rgb), 0.12) 0%, transparent 55%),
    var(--cafe-latte);
}

.home-cafe .hp-cafe-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(var(--text-secondary-rgb), 0.1) !important;
  border-radius: 20px !important;
  background: var(--cafe-cream) !important;
  overflow: hidden;
}

.home-cafe .hp-cafe-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, var(--cafe-latte-deep) 0%, rgba(var(--text-primary-rgb), 0.14) 100%);
}

.home-cafe .hp-cafe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.home-cafe .hp-cafe-card:hover .hp-cafe-card__media img {
  transform: scale(1.06);
}

.home-cafe .hp-cafe-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cafe-cream);
  background: rgba(var(--green-rgb), 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.home-cafe .hp-cafe-card__badge--tech {
  background: rgba(var(--green-rgb), 0.78);
}

.home-cafe .hp-cafe-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 28px 26px 30px !important;
  gap: 0 !important;
}

.home-cafe .hp-cafe-card__body h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 400;
  color: var(--cafe-brown-mid);
  margin-bottom: 10px;
}

.home-cafe .hp-cafe-card__desc {
  flex: 1;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(var(--text-secondary-rgb), 0.72);
}

.home-cafe .hp-cafe-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cafe-cream);
  background: linear-gradient(135deg, var(--cafe-brown-mid) 0%, var(--cafe-brown) 100%);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(var(--text-secondary-rgb), 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-cafe .hp-cafe-card__btn:hover {
  color: var(--cafe-cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--text-secondary-rgb), 0.3);
  background: linear-gradient(135deg, var(--cafe-caramel) 0%, var(--cafe-brown-mid) 100%);
}

/* ---- Dive-in grid ---- */
.home-cafe .hp-dive {
  padding: 56px 0;
  background: var(--cafe-cream);
}

.home-cafe .hp-dive__card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 300px;
}

.home-cafe .hp-dive__tag {
  padding: 4px 10px;
  background: rgba(var(--text-primary-rgb), 0.25);
  border-radius: 4px;
}

@media (max-width: 767px) {
  .home-cafe .hp-dive {
    padding: 56px 0;
  }

  .home-cafe .hp-dive__grid {
    gap: 16px;
  }

  .home-cafe .hp-dive__card {
    min-height: 280px;
    border-radius: 14px;
  }

  .home-cafe .hp-dive__body {
    padding: 22px 18px;
  }

  .home-cafe .hp-dive__title {
    font-size: 1.4rem;
  }

  .home-cafe .hp-cat-card__img {
    object-position: center center;
  }
}

/* ---- Brands ---- */
.home-cafe .hp-brands {
  position: relative;
  overflow: hidden;
  padding: 152px 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(var(--text-primary-rgb), 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 100%, rgba(var(--text-primary-rgb), 0.1) 0%, transparent 55%),
    linear-gradient(180deg, var(--cafe-latte) 0%, var(--cafe-latte-deep) 50%, var(--cafe-latte) 100%);
}

/* subtle paper-grain texture over the section */
.home-cafe .hp-brands::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* floating coffee-bean motifs */
.home-cafe .hp-brands__bean {
  position: absolute;
  z-index: 0;
  background: url('../assets/images/home/brands/leaf-logo.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
/* Corner leaf marks — bottoms point into their corners; sized/inset so the
   rotated bounding box stays inside the overflow:hidden section (no crop) */
.home-cafe .hp-brands__bean--1 {
  top: 28px;
  left: 28px;
  width: 96px;
  height: 96px;
  transform: rotate(135deg);
  transform-origin: center center;
}

.home-cafe .hp-brands__bean--2 {
  top: auto;
  bottom: 28px;
  right: 28px;
  left: auto;
  width: 96px;
  height: 96px;
  transform: rotate(-45deg);
  transform-origin: center center;
  animation: none;
}

/* Shared tilted leaf mark (hp-story, most-loved) */
.home-cafe .hp-leaf-mark {
  position: absolute;
  z-index: 0;
  background: url('../assets/images/home/brands/leaf-logo.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
  transform-origin: center center;
}

.home-cafe .hp-leaf-mark--story {
  top: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
}

.home-cafe .hp-leaf-mark--loved {
  bottom: 24px;
  left: 24px;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
}

/* Keep headings/medallions clear of corner marks */
.home-cafe .hp-brands .hp-section-head,
.home-cafe .hp-story .hp-section-head,
.home-cafe .hp-loved .hp-section-head {
  position: relative;
  z-index: 1;
  padding-inline: clamp(68px, 11vw, 112px);
}

@media screen and (max-width: 991px) {
  .home-cafe .hp-brands__bean--1,
  .home-cafe .hp-brands__bean--2,
  .home-cafe .hp-leaf-mark--story,
  .home-cafe .hp-leaf-mark--loved {
    width: 64px;
    height: 64px;
  }

  .home-cafe .hp-brands .hp-section-head,
  .home-cafe .hp-story .hp-section-head,
  .home-cafe .hp-loved .hp-section-head {
    padding-inline: clamp(56px, 10vw, 88px);
  }
}

@media screen and (max-width: 767px) {
  .home-cafe .hp-brands__bean--1,
  .home-cafe .hp-brands__bean--2,
  .home-cafe .hp-leaf-mark--story,
  .home-cafe .hp-leaf-mark--loved {
    width: 52px;
    height: 52px;
  }

  .home-cafe .hp-brands__bean--1 { top: 18px; left: 18px; }
  .home-cafe .hp-brands__bean--2 { bottom: 18px; right: 18px; }
  .home-cafe .hp-leaf-mark--story { top: 18px; right: 18px; }
  .home-cafe .hp-leaf-mark--loved { bottom: 18px; left: 18px; }

  .home-cafe .hp-brands .hp-section-head,
  .home-cafe .hp-story .hp-section-head,
  .home-cafe .hp-loved .hp-section-head {
    padding-inline: clamp(48px, 12vw, 72px);
  }
}

@keyframes hp-bean-float {
  0%, 100% { transform: translateY(0) rotate(var(--bean-tilt, 0deg)) scale(1); }
  50% { transform: translateY(-22px) rotate(var(--bean-tilt, 0deg)) scale(1.05); }
}

.home-cafe .hp-brands .container {
  position: relative;
  z-index: 1;
}

/* ===== Brand medallions ===== */
.home-cafe .hp-meds {
  position: relative;
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.home-cafe .hp-med {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.home-cafe .hp-med__disc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 190px;
  padding: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #fffdfb 0%, var(--cafe-cream) 58%, var(--cafe-latte-deep) 100%);
  border: 1px solid rgba(var(--text-primary-rgb), 0.3);
  box-shadow:
    0 22px 46px -22px rgba(var(--green-rgb), 0.55),
    inset 0 0 0 6px var(--cafe-cream),
    inset 0 0 0 7px rgba(var(--text-primary-rgb), 0.35),
    inset 0 3px 8px rgba(255, 255, 255, 0.9);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
}
.home-cafe .hp-med__disc img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  /* original logo colours preserved — no filter */
  transition: transform 0.45s ease;
}

/* expanding "coffee ripple" rings that radiate from the disc on hover */
.home-cafe .hp-med__disc::before,
.home-cafe .hp-med__disc::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  border: 2px solid rgba(var(--text-primary-rgb), 0.55);
  opacity: 0;
  pointer-events: none;
}

.home-cafe .hp-med__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cafe-caramel);
}

.home-cafe .hp-med__name {
  position: relative;
  margin-top: 8px;
  padding-bottom: 8px;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cafe-brown-mid);
}
/* gold underline that draws in on hover */
.home-cafe .hp-med__name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cafe-gold), var(--cafe-caramel));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}
.home-cafe .hp-med:hover .hp-med__name::after {
  width: 38px;
}

.home-cafe .hp-med__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cafe-brown-mid);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

/* hover state */
.home-cafe .hp-med:hover .hp-med__disc {
  transform: translateY(-8px);
  box-shadow:
    0 32px 56px -24px rgba(var(--green-rgb), 0.6),
    0 0 32px -2px rgba(var(--text-primary-rgb), 0.55),
    inset 0 0 0 6px var(--cafe-cream),
    inset 0 0 0 7px rgba(var(--text-primary-rgb), 0.55),
    inset 0 3px 8px rgba(255, 255, 255, 0.9);
}
.home-cafe .hp-med:hover .hp-med__disc img {
  transform: scale(1.03);
}
.home-cafe .hp-med:hover .hp-med__disc::before {
  animation: hp-ripple 2.4s ease-out infinite;
}
.home-cafe .hp-med:hover .hp-med__disc::after {
  animation: hp-ripple 2.4s ease-out infinite 1.2s;
}
.home-cafe .hp-med:hover .hp-med__name {
  color: var(--cafe-caramel);
}
.home-cafe .hp-med:hover .hp-med__cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--cafe-caramel);
}
.home-cafe .hp-med:focus-visible .hp-med__cta {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hp-ripple {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.5); }
}

@media (max-width: 991px) {
  .home-cafe .hp-meds {
    gap: 40px 24px;
  }
  .home-cafe .hp-med {
    flex: 1 1 40%;
    min-width: 0;
  }
}

@media (max-width: 575px) {
  .home-cafe .hp-meds {
    margin-top: 36px;
    gap: 32px 18px;
    padding-bottom: 12px;
  }
  .home-cafe .hp-med { flex: 1 1 42%; }
  .home-cafe .hp-med__disc {
    width: 140px;
    height: 140px;
    padding: 28px;
  }
  .home-cafe .hp-med__cta { opacity: 1; transform: none; }
}

/* ---- Shop by category ---- */
.home-cafe .hp-cats {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background: #ffffff;
}

.home-cafe .hp-cats__glow {
  display: none;
}

.home-cafe .hp-cats .container {
  position: relative;
  z-index: 1;
}

.home-cafe .hp-section-head--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.home-cafe .hp-cats__wrap {
  position: relative;
  margin-top: 22px;
}

/* eyebrow pill */
.home-cafe .hp-cats__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.home-cafe .hp-cats__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

/* counter + nav arrows bar */
.home-cafe .hp-cats__bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 0;
}

.home-cafe .hp-cats__count {
  margin: 0;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(var(--text-secondary-rgb), 0.45);
}

.home-cafe .hp-cats__count-cur {
  color: var(--green);
}

.home-cafe .hp-cats__nav {
  display: inline-flex;
  gap: 12px;
}

.home-cafe .hp-cats__navbtn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--green);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.home-cafe .hp-cats__navbtn:hover {
  background: transparent;
  color: var(--cafe-espresso);
  transform: translateY(-2px);
}

.home-cafe .hp-cats .owl-carousel {
  position: relative;
}

.home-cafe .hp-cats .owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.home-cafe .hp-cats .owl-carousel .owl-item {
  display: flex;
  height: auto;
  align-items: stretch;
}

.home-cafe .hp-cats .owl-carousel .owl-item .hp-cat-card {
  width: 100%;
}

.home-cafe .hp-cat-card {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, #d9eed9 0%, #e9f6e9 55%, #f3faf3 100%);
  padding: clamp(13px, 1.4vw, 18px);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.home-cafe .hp-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(var(--green-rgb), 0.18);
}

.home-cafe .hp-cat-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.home-cafe .hp-cat-card__title {
  margin: clamp(12px, 1.4vw, 16px) 0 0;
  font-family: var(--font-primary);
  font-size: clamp(1.02rem, 1.5vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green);
  min-height: calc(2 * 1.2em);
}

/* image panel */
.home-cafe .hp-cat-card__visual {
  position: relative;
  margin-top: clamp(12px, 1.4vw, 16px);
  flex: 0 0 auto;
  height: clamp(104px, 10.5vw, 142px);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3px, 0.5vw, 6px);
  background: linear-gradient(150deg, #7cc07a 0%, #5fae5d 45%, #93d28f 100%);
}

.home-cafe .hp-cat-card__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.12);
  filter:
    drop-shadow(0 10px 18px rgba(11, 40, 20, 0.3))
    saturate(1.06)
    contrast(1.04);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.home-cafe .hp-cat-card:hover .hp-cat-card__img {
  transform: scale(1.18);
  filter:
    drop-shadow(0 14px 24px rgba(11, 40, 20, 0.38))
    saturate(1.1)
    contrast(1.06);
}

/* footer: explore link + arrow button */
.home-cafe .hp-cat-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: clamp(12px, 1.4vw, 16px);
}

.home-cafe .hp-cat-card__explore {
  position: relative;
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green);
  padding-bottom: 4px;
}

.home-cafe .hp-cat-card__explore::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: rgba(var(--green-rgb), 0.5);
  transition: width 0.3s ease;
}

.home-cafe .hp-cat-card:hover .hp-cat-card__explore::after {
  width: 55%;
}

.home-cafe .hp-cat-card__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.home-cafe .hp-cat-card:hover .hp-cat-card__cta {
  transform: scale(1.08);
  background: var(--cafe-espresso);
}

.home-cafe .hp-cats__foot {
  margin-top: 44px;
  text-align: center;
}

.home-cafe .hp-cats__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(var(--green-rgb), 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.home-cafe .hp-cats__store-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  background: var(--cafe-espresso);
  box-shadow: 0 18px 40px rgba(var(--green-rgb), 0.36);
}

.home-cafe .hp-cats__store-btn .bi {
  font-size: 16px;
}

/* progress bar under the carousel */
/* clickable navigation bars (owl dots) */
.home-cafe .hp-cats .owl-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.home-cafe .hp-cats .owl-dots .owl-dot {
  width: 26px;
  height: 5px;
  margin: 0 !important;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(var(--green-rgb), 0.18) !important;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.home-cafe .hp-cats .owl-dots .owl-dot:hover {
  background: rgba(var(--green-rgb), 0.4) !important;
}

.home-cafe .hp-cats .owl-dots .owl-dot.active {
  width: 46px;
  background: var(--green) !important;
}

/* Hide the carousel dot navigation on small screens */
@media screen and (max-width: 767px) {
  .home-cafe .hp-cats .owl-dots {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .home-cafe .hp-cats .owl-carousel .owl-nav {
    width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 575px) {
  .home-cafe .hp-cats .owl-carousel .owl-nav {
    width: calc((100% - 12px) / 2);
  }
}

@media (max-width: 767px) {
  .home-cafe .hp-cats__wrap {
    margin-top: 18px;
  }

  .home-cafe .hp-cat-card {
    border-radius: 22px;
    padding: 18px;
  }

  .home-cafe .hp-cat-card__title {
    font-size: 1.25rem;
  }

  .home-cafe .hp-cat-card__visual {
    height: 150px;
  }

  .home-cafe .hp-cat-card__cta,
  .home-cafe .hp-cats__navbtn {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .home-cafe .hp-cats__foot {
    margin-top: 32px;
  }

  .home-cafe .hp-cats__store-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

.home-cafe .hp-trust__pill {
  background: var(--cafe-cream);
  border-color: rgba(var(--text-secondary-rgb), 0.12);
  color: var(--cafe-brown-mid);
}

.home-cafe .hp-trust__pill i {
  color: var(--cafe-caramel);
}

/* ---- USP showcase (brown & cream) ---- */
.home-cafe .hp-usp {
  --usp-shadow: rgba(var(--text-secondary-rgb), 0.1);
  --usp-shadow-lg: rgba(var(--green-rgb), 0.16);

  position: relative;
  overflow: hidden;
  padding: 48px 0;
  background:
    radial-gradient(ellipse 55% 50% at 12% 18%, rgba(var(--text-primary-rgb), 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 88% 82%, rgba(var(--text-secondary-rgb), 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--cafe-cream) 0%, var(--cafe-latte) 52%, var(--cafe-latte-deep) 100%);
}

.home-cafe .hp-usp::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23396D1B' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.home-cafe .hp-usp__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.home-cafe .hp-usp__orb--1 {
  top: -60px;
  right: 8%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(var(--text-primary-rgb), 0.28), transparent 70%);
}

.home-cafe .hp-usp__orb--2 {
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(var(--text-secondary-rgb), 0.12), transparent 70%);
}

.home-cafe .hp-usp .hp-section-head__eyebrow {
  color: var(--cafe-caramel);
}

.home-cafe .hp-usp .hp-section-head__title {
  color: var(--cafe-espresso);
}

.home-cafe .hp-usp .hp-section-head__lead {
  color: rgba(var(--text-secondary-rgb), 0.72);
}

.home-cafe .hp-usp .container {
  position: relative;
  z-index: 1;
}

.home-cafe .hp-usp__coverflow {
  position: relative;
  margin-top: clamp(32px, 4vw, 44px);
  padding: 0 clamp(12px, 2vw, 20px) 32px;
}

.home-cafe .hp-usp__coverflow-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(520px, 70vw);
  height: min(280px, 42vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.22) 0%, rgba(var(--green-rgb), 0.06) 45%, transparent 72%);
  filter: blur(2px);
  pointer-events: none;
  animation: hp-usp-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes hp-usp-glow-pulse {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

.home-cafe .hp-usp__coverflow.is-paused .hp-usp__coverflow-glow,
.home-cafe .hp-usp__coverflow:has(.hp-usp__slide[data-offset="-1"]:hover) .hp-usp__coverflow-glow {
  animation-play-state: paused;
}

.home-cafe .hp-usp__coverflow-track {
  position: relative;
  height: clamp(400px, 46vw, 500px);
  perspective: 1400px;
  transform-style: preserve-3d;
}

.home-cafe .hp-usp__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(250px, 32vw, 340px);
  height: clamp(380px, 42vw, 460px);
  margin: 0;
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: hidden;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
  cursor: pointer;
}

.home-cafe .hp-usp__slide[data-offset="0"] {
  transform: translate3d(-50%, -50%, 80px) translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 10;
}

.home-cafe .hp-usp__slide[data-offset="-1"] {
  transform: translate3d(-50%, -50%, 20px) translateX(-68%) scale(0.86) rotateY(28deg);
  opacity: 0.82;
  z-index: 8;
}

.home-cafe .hp-usp__slide[data-offset="1"] {
  transform: translate3d(-50%, -50%, 20px) translateX(68%) scale(0.86) rotateY(-28deg);
  opacity: 0.82;
  z-index: 8;
}

.home-cafe .hp-usp__slide[data-offset="-2"] {
  transform: translate3d(-50%, -50%, -40px) translateX(-118%) scale(0.72) rotateY(38deg);
  opacity: 0.45;
  z-index: 6;
}

.home-cafe .hp-usp__slide[data-offset="2"] {
  transform: translate3d(-50%, -50%, -40px) translateX(118%) scale(0.72) rotateY(-38deg);
  opacity: 0.45;
  z-index: 6;
}

.home-cafe .hp-usp__slide[data-offset="hidden"] {
  transform: translate3d(-50%, -50%, -120px) translateX(0) scale(0.55) rotateY(0deg);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.home-cafe .hp-usp__slide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.14);
  background: var(--cafe-latte);
  box-shadow: 0 24px 50px rgba(var(--green-rgb), 0.14);
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

.home-cafe .hp-usp__slide.is-active .hp-usp__slide-card {
  border-color: rgba(var(--green-rgb), 0.32);
  box-shadow: 0 32px 64px rgba(var(--green-rgb), 0.2);
}

.home-cafe .hp-usp__slide-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  background: transparent;
}

.home-cafe .hp-usp__slide-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: top center;
  padding: 0;
  border-radius: 0;
}

.home-cafe .hp-usp__slide-content {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: clamp(72px, 9vw, 88px);
  padding: 0 14px 10px;
  text-align: left;
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-cafe .hp-usp__slide-headcopy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding: 0;
}

.home-cafe .hp-usp__slide-title {
  margin: 0;
  padding: 0;
  font-family: var(--hp-font-display, var(--font-primary));
  font-size: clamp(0.95rem, 1.45vw, 1.12rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cafe-brown-mid);
}

.home-cafe .hp-usp__slide-desc {
  margin: 0;
  font-size: clamp(0.74rem, 0.95vw, 0.82rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(var(--text-secondary-rgb), 0.82);
}

.home-cafe .hp-usp__slide-detail {
  margin: 0;
  font-size: clamp(0.74rem, 0.95vw, 0.82rem);
  line-height: 1.5;
  color: rgba(var(--text-secondary-rgb), 0.74);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.home-cafe .hp-usp__slide.is-active .hp-usp__slide-detail {
  opacity: 1;
  visibility: visible;
}

.home-cafe .hp-usp__coverflow-btn {
  display: none !important;
}

.home-cafe .hp-usp__coverflow-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.home-cafe .hp-usp__coverflow-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(var(--green-rgb), 0.2);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.home-cafe .hp-usp__coverflow-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cafe-caramel) 0%, var(--green) 100%);
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .home-cafe .hp-usp__coverflow {
    padding: 0 12px 28px;
  }

  .home-cafe .hp-usp__slide[data-offset="-2"],
  .home-cafe .hp-usp__slide[data-offset="2"] {
    opacity: 0;
    pointer-events: none;
  }

  .home-cafe .hp-usp__slide[data-offset="-1"] {
    transform: translate3d(-50%, -50%, 10px) translateX(-58%) scale(0.8) rotateY(24deg);
  }

  .home-cafe .hp-usp__slide[data-offset="1"] {
    transform: translate3d(-50%, -50%, 10px) translateX(58%) scale(0.8) rotateY(-24deg);
  }

  .home-cafe .hp-usp__slide-media {
    flex: 0 0 auto;
    min-height: 0;
    display: block;
    width: 100%;
    overflow: visible;
    line-height: 0;
  }

  .home-cafe .hp-usp__slide-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
  }
}

@media (max-width: 767px) {
  .home-cafe .hp-usp__coverflow {
    margin-top: 28px;
    padding: 0 12px 28px;
  }

  .home-cafe .hp-usp__coverflow-track {
    height: clamp(400px, 92vw, 480px);
  }

  .home-cafe .hp-usp__slide {
    width: clamp(200px, 52vw, 250px);
    height: clamp(340px, 82vw, 420px);
  }

  .home-cafe .hp-usp__slide-content {
    min-height: 0;

  }
}

@media (max-width: 575px) {
  .home-cafe .hp-usp__coverflow {
    padding: 0 12px 24px;
  }

  .home-cafe .hp-usp__coverflow-track {
    height: clamp(380px, 94vw, 460px);
  }

  .home-cafe .hp-usp__slide {
    width: clamp(180px, 54vw, 230px);
    height: clamp(320px, 84vw, 400px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cafe .hp-usp__coverflow-glow {
    animation: none;
  }

  .home-cafe .hp-usp__slide,
  .home-cafe .hp-usp__slide-media img,
  .home-cafe .hp-usp__slide-detail,
  .home-cafe .hp-usp__coverflow-dot {
    transition: none;
  }
}

/* ---- Instagram reel wall ---- */
.home-cafe .hp-reelwall {
  position: relative;
  overflow: hidden;
  padding: 56px 0 60px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(214, 41, 118, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #faf8f5 0%, #f3eeea 100%);
}

.home-cafe .hp-reelwall .container {
  position: relative;
  z-index: 1;
}
.home-cafe .hp-reelwall .hp-section-head__eyebrow .bi {
  margin-right: 6px;
}

.home-cafe .hp-reel__meta {
  margin-top: 14px;
  text-align: center;
}

.home-cafe .hp-reel__label {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cafe-espresso);
}

.home-cafe .hp-reel__caption {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(var(--text-secondary-rgb), 0.68);
}

.home-cafe .hp-reelwall__grid {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* each reel: entrance reveal (staggered) — motion disabled, final state only */
.home-cafe .hp-reel {
  flex: 0 1 250px;
  max-width: 250px;
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

/* Instagram-gradient frame */
.home-cafe .hp-reel__frame {
  position: relative;
  padding: 4px;
  border-radius: 28px;
  background: linear-gradient(140deg, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 80%, #4f5bd5 100%);
  box-shadow: 0 22px 46px -24px rgba(0, 0, 0, 0.32);
  animation: none;
  transition: box-shadow 0.4s ease;
}
.home-cafe .hp-reel:hover .hp-reel__frame {
  box-shadow: 0 34px 62px -26px rgba(0, 0, 0, 0.4);
}

.home-cafe .hp-reel .video-wrapper {
  border-radius: 24px;
  background: var(--cafe-espresso);
  border: 3px solid var(--cafe-cream);
}
.home-cafe .hp-reel .reel-video {
  transition: transform 0.6s ease;
}
.home-cafe .hp-reel:hover .reel-video {
  transform: scale(1.05);
}

/* dark veil + tap affordance, shown only while paused */
.home-cafe .hp-reel .video-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0, 0, 0, 0.08) 0%, transparent 60%),
    linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 38%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22) 0%, transparent 30%);
  opacity: 1;
  transition: opacity 0.4s ease;
}
.home-cafe .hp-reel .video-wrapper.is-playing::before {
  opacity: 0;
}

/* fully transparent play button — icon only */
.home-cafe .hp-reel .play-btn {
  width: auto;
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
  background: transparent !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.home-cafe .hp-reel .play-btn .bi {
  margin-left: 4px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}
.home-cafe .hp-reel .play-btn::after {
  display: none;
}
.home-cafe .hp-reel .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: transparent !important;
  border: none;
  box-shadow: none;
}
.home-cafe .hp-reel .video-wrapper.is-playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

/* Instagram badge */
.home-cafe .hp-reel .insta-badge {
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  gap: 6px;
  padding: 7px 14px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease;
}
.home-cafe .hp-reel .insta-badge .bi {
  font-size: 15px;
  color: #e1306c;
}
.home-cafe .hp-reel .insta-badge:hover {
  background: linear-gradient(135deg, #fa7e1e, #d62976 60%, #962fbf);
  transform: translateX(-50%) translateY(-2px);
}

/* follow CTA */
.home-cafe .hp-reelwall__cta {
  margin-top: 44px;
  text-align: center;
}
.home-cafe .hp-reelwall__follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 80%, #4f5bd5 100%);
  box-shadow: 0 14px 30px -12px rgba(214, 41, 118, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-cafe .hp-reelwall__follow:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -14px rgba(214, 41, 118, 0.7);
}
.home-cafe .hp-reelwall__follow .bi {
  font-size: 18px;
}

@media (max-width: 575px) {
  .home-cafe .hp-reelwall__grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    margin-top: 32px;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .home-cafe .hp-reel {
    flex: 0 0 70%;
    max-width: 70%;
    scroll-snap-align: center;
  }
}

/* ---- CTA band ---- */
.home-cafe .hp-cta-band {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.home-cafe .hp-cta-band__bg {
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(var(--text-primary-rgb), 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(var(--green-rgb), 0.08) 0%, transparent 50%),
    linear-gradient(125deg, var(--cafe-cream) 0%, var(--cafe-latte) 50%, var(--cafe-latte-deep) 100%);
}

.home-cafe .hp-cta-band__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.home-cafe .hp-cta-band__orb--1 {
  top: -80px;
  right: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(var(--text-primary-rgb), 0.14) 0%, transparent 68%);
  animation: hp-cta-float 14s ease-in-out infinite;
}

.home-cafe .hp-cta-band__orb--2 {
  bottom: -100px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.1) 0%, transparent 70%);
  animation: hp-cta-float 18s ease-in-out infinite reverse;
}

.home-cafe .hp-cta-band__shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
  opacity: 0.9;
}

.home-cafe .hp-cta-band__panel > .container {
  position: relative;
  z-index: 2;
}

@keyframes hp-cta-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(16px, -20px); }
}

.home-cafe .hp-cta-band__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(40px, 6vw, 60px) 0;
  border-radius: 0;
  border: none;
  border-block: 1px solid rgba(var(--text-secondary-rgb), 0.1);
  background:
    linear-gradient(145deg, var(--white) 0%, var(--cafe-latte) 100%);
  box-shadow: none;
  overflow: hidden;
}

.home-cafe .hp-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.home-cafe .hp-cta-band__copy {
  flex: 1 1 360px;
  min-width: 0;
}

.home-cafe .hp-cta-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cafe-brown-mid);
  background: rgba(var(--text-primary-rgb), 0.12);
  border: 1px solid rgba(var(--text-secondary-rgb), 0.2);
  border-radius: 999px;
}

.home-cafe .hp-cta-band__eyebrow .bi {
  font-size: 13px;
  color: var(--cafe-caramel);
}

.home-cafe .hp-cta-band__title {
  margin: 0 0 12px;
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cafe-espresso);
  max-width: 16ch;
}

.home-cafe .hp-cta-band__title em {
  font-style: italic;
  color: var(--cafe-caramel);
}

.home-cafe .hp-cta-band__text {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.65;
  color: rgba(var(--text-secondary-rgb), 0.75);
  max-width: 52ch;
}

.home-cafe .hp-cta-band__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.home-cafe .hp-cta-band__perks li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(var(--text-secondary-rgb), 0.85);
}

.home-cafe .hp-cta-band__perks .bi {
  font-size: 14px;
  color: var(--cafe-caramel);
}

.home-cafe .hp-cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex: 0 0 auto;
  min-width: min(100%, 280px);
}

/* Premium split-pill shop button */
.home-cafe .hp-cta-band__shop {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 58px;
  padding: 6px 6px 6px 28px;
  font-family: var(--font-primary);
  text-decoration: none;
  color: var(--green);
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 999px;
  box-shadow:
    0 4px 0 var(--green),
    0 14px 32px rgba(var(--green-rgb), 0.22);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.home-cafe .hp-cta-band__shop-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: letter-spacing 0.35s ease;
}

.home-cafe .hp-cta-band__shop-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.home-cafe .hp-cta-band__shop-icon .bi {
  font-size: 20px;
  line-height: 1;
}

.home-cafe .hp-cta-band__shop:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow:
    0 6px 0 #2a5012,
    0 20px 40px rgba(var(--green-rgb), 0.32);
}

.home-cafe .hp-cta-band__shop:hover .hp-cta-band__shop-text {
  letter-spacing: 0.16em;
}

.home-cafe .hp-cta-band__shop:hover .hp-cta-band__shop-icon {
  color: var(--green);
  background: var(--white);
  transform: scale(1.06);
}

.home-cafe .hp-cta-band__shop:active {
  transform: translateY(-1px);
  box-shadow:
    0 2px 0 #2a5012,
    0 10px 24px rgba(var(--green-rgb), 0.24);
}

.home-cafe .hp-cta-band .hp-btn--ghost,
.home-cafe .hp-cta-band__btn--ghost {
  color: var(--cafe-brown-mid);
  background: rgba(var(--text-primary-rgb), 0.06);
  border: 1px solid rgba(var(--text-secondary-rgb), 0.32);
  box-shadow: none;
}

.home-cafe .hp-cta-band .hp-btn--ghost:hover,
.home-cafe .hp-cta-band__btn--ghost:hover {
  color: var(--cafe-brown-mid);
  background: rgba(var(--text-primary-rgb), 0.12);
  border-color: rgba(var(--text-secondary-rgb), 0.5);
}

@media screen and (max-width: 991px) {
  .home-cafe .hp-cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .home-cafe .hp-cta-band__copy {
    flex-basis: auto;
  }

  .home-cafe .hp-cta-band__title,
  .home-cafe .hp-cta-band__text {
    max-width: none;
    margin-inline: auto;
  }

  .home-cafe .hp-cta-band__perks {
    justify-content: center;
  }

  .home-cafe .hp-cta-band__actions {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 575px) {
  .home-cafe .hp-cta-band__panel {
    padding: 48px 0;
  }

  .home-cafe .hp-cta-band__perks {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cafe .hp-cta-band__orb--1,
  .home-cafe .hp-cta-band__orb--2 {
    animation: none;
  }

  .home-cafe .hp-cta-band__shop,
  .home-cafe .hp-cta-band__shop-icon {
    transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  }

  .home-cafe .hp-cta-band__shop:hover,
  .home-cafe .hp-cta-band__shop:active {
    transform: none;
  }
}

/* ---- Awards ---- */
.home-cafe .hp-awards {
  position: relative;
  padding: 52px 0 56px;
  background: linear-gradient(180deg, var(--cafe-latte) 0%, var(--cafe-cream) 100%);
}

.home-cafe .hp-awards .container {
  position: relative;
  z-index: 1;
}

.home-cafe .hp-awards .awards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.home-cafe .hp-awards .awards .award {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
}

.home-cafe .hp-awards .awards .award img {
  display: block;
  width: clamp(110px, 11vw, 150px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.home-cafe .hp-awards__head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 44px;
}

.home-cafe .hp-awards__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.home-cafe .hp-awards__line {
  display: block;
  width: min(72px, 18vw);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cafe-gold), transparent);
}

.home-cafe .hp-awards__ornament .bi {
  font-size: 11px;
  color: var(--cafe-caramel);
}

.home-cafe .hp-awards__title {
  margin: 0 0 10px;
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--cafe-brown-mid);
}

.home-cafe .hp-awards__lead {
  margin: 0;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.6;
  color: rgba(var(--text-secondary-rgb), 0.65);
}

.home-cafe .hp-awards__slider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(40px, 5vw, 52px);
}

.home-cafe .hp-awards__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 6px 6px;
}

.home-cafe .hp-awards__disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  padding: 22px;
  border-radius: 22px;
  border: none;
  background:
    linear-gradient(165deg, #fffdfb 0%, var(--cafe-cream) 42%, var(--cafe-latte-deep) 100%);
  box-shadow:
    0 16px 34px rgba(var(--green-rgb), 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-cafe .hp-awards__slide:hover .hp-awards__disc {
  transform: translateY(-4px);
  box-shadow:
    0 22px 42px rgba(var(--green-rgb), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.home-cafe .hp-awards__disc img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.home-cafe .hp-awards__label {
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: rgba(var(--text-secondary-rgb), 0.62);
  max-width: 140px;
}

.home-cafe .hp-awards__slide:hover .hp-awards__label {
  color: var(--cafe-brown-mid);
}

.home-cafe .hp-awards__carousel.owl-carousel .owl-item {
  opacity: 0.72;
  transition: opacity 0.35s ease;
}

.home-cafe .hp-awards__carousel.owl-carousel .owl-item.active {
  opacity: 1;
}

.home-cafe .hp-awards__carousel.owl-carousel .owl-nav {
  margin: 0;
}

.home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-prev,
.home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 52px;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  color: var(--cafe-brown-mid) !important;
  font-size: 18px !important;
  line-height: 1;
  box-shadow:
    0 6px 18px rgba(var(--green-rgb), 0.1),
    inset 0 0 0 1px rgba(var(--text-primary-rgb), 0.25);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-prev::before,
.home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-next::before {
  content: none;
}

.home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-prev:hover,
.home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-next:hover {
  background: var(--cafe-brown-mid) !important;
  color: var(--cafe-cream) !important;
  transform: scale(1.05);
}

.home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .home-cafe .hp-awards .awards {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .home-cafe .hp-awards .awards .award {
    max-width: 170px;
  }

  .home-cafe .hp-awards .awards .award img {
    width: clamp(96px, 12vw, 130px);
    max-height: 80px;
  }

  .home-cafe .hp-awards__disc {
    width: 112px;
    height: 112px;
    padding: 20px;
    border-radius: 20px;
  }

  .home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-prev,
  .home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-next {
    top: 52px;
  }
}

@media screen and (max-width: 575px) {
  .home-cafe .hp-awards {
    padding: 56px 0 64px;
  }

  .home-cafe .hp-awards .awards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .home-cafe .hp-awards .awards .award {
    max-width: 150px;
  }

  .home-cafe .hp-awards .awards .award img {
    width: clamp(100px, 28vw, 130px);
    max-height: 72px;
  }

  .home-cafe .hp-awards__head {
    margin-bottom: 36px;
  }

  .home-cafe .hp-awards__slider {
    padding-inline: 36px;
  }

  .home-cafe .hp-awards__disc {
    width: 100px;
    height: 100px;
    padding: 18px;
    border-radius: 18px;
  }

  .home-cafe .hp-awards__label {
    font-size: 11px;
    max-width: 120px;
  }

  .home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-prev,
  .home-cafe .hp-awards__carousel.owl-carousel .owl-nav button.owl-next {
    top: 42px;
    width: 36px;
    height: 36px;
    font-size: 15px !important;
  }
}

/* ---- Responsive ---- */
@media screen and (max-width: 991px) {
  .home-cafe .hp-stats__item:not(:last-child)::after {
    display: none;
  }

  .home-cafe .hp-cafe-card__body {
    align-items: center;
    text-align: center;
  }

  .home-cafe .hp-hero__scroll {
    display: none;
  }
}

@media screen and (max-width: 575px) {
.home-cafe .hp-prod-tech,
.home-cafe .hp-dive,
.home-cafe .hp-brands,
.home-cafe .hp-cats,
.home-cafe .hp-story,
.home-cafe .hp-loved,
.home-cafe .hp-usp,
  .home-cafe .hp-reelwall,
  .home-cafe .hp-awards {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cafe .hp-hero__scroll .bi,
  .home-cafe .hp-usp__slide,
  .home-cafe .hp-brands__bean,
  .home-cafe .hp-med:hover .hp-med__disc::before,
  .home-cafe .hp-med:hover .hp-med__disc::after,
  .home-cafe .hp-reel,
  .home-cafe .hp-reel__frame,
  .home-cafe .hp-reel .play-btn::after {
    animation: none;
  }

  /* keep reels visible without the entrance animation */
  .home-cafe .hp-reel {
    opacity: 1;
    transform: none;
  }

  .home-cafe .hp-med:hover .hp-med__disc {
    transform: none;
  }

  .home-cafe .hp-cat-card:hover,
  .home-cafe .hp-usp__slide.is-active,
  .home-cafe .hp-usp-card:hover,
  .home-cafe .hp-awards__slide:hover .hp-awards__disc {
    transform: none;
  }
}

/* =============================================================
   Brands section — corner leaf logos (responsive)
   Bottoms point into the corners; the section keeps enough vertical
   breathing room that the heading + medallions never overlap a mark,
   and each mark stays inset enough to avoid crop by overflow:hidden.
   These come last so they win over the shared bean/leaf-mark rules.
   ============================================================= */
@media screen and (max-width: 991px) {
  .home-cafe .hp-brands {
    padding-top: 132px;
    padding-bottom: 132px;
  }

  .home-cafe .hp-brands__bean--1 {
    top: 26px;
    left: 26px;
    width: 80px;
    height: 80px;
  }

  .home-cafe .hp-brands__bean--2 {
    bottom: 26px;
    right: 26px;
    width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 767px) {
  .home-cafe .hp-brands {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .home-cafe .hp-brands__bean--1 {
    top: 20px;
    left: 20px;
    width: 64px;
    height: 64px;
  }

  .home-cafe .hp-brands__bean--2 {
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
  }
}

@media screen and (max-width: 575px) {
  .home-cafe .hp-brands {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .home-cafe .hp-brands__bean--1 {
    top: 18px;
    left: 18px;
    width: 58px;
    height: 58px;
  }

  .home-cafe .hp-brands__bean--2 {
    bottom: 18px;
    right: 18px;
    width: 58px;
    height: 58px;
  }
}
