/* =========================================================
   Pippa Gin — Front Page Stylesheet
   Loaded only on the homepage (is_front_page)
   ========================================================= */

/* ── Shared helpers ─────────────────────────────────────── */
.padding-global {
  padding-left: clamp(1rem, 0.428rem + 2.86vw, 3rem);
  padding-right: clamp(1rem, 0.428rem + 2.86vw, 3rem);
}

.padding-section-large  { padding-top: clamp(4rem, 8vw, 8rem); padding-bottom: clamp(4rem, 8vw, 8rem); }
.padding-section-medium { padding-top: clamp(3rem, 6vw, 6rem); padding-bottom: clamp(3rem, 6vw, 6rem); }

.container-large { max-width: 90rem; margin-left: auto; margin-right: auto; }
.container-full  { width: 100%; }

.max-width-xlarge { max-width: 56rem; margin-left: auto; margin-right: auto; }
.content-wrapper  { width: 100%; }
.spacer-medium    { height: 2rem; }

.kr-vflex-center-center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.kr-vflex-center-top    { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 2rem; }
.kr-hflex-right-center  { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; }
.kr-hflex-center-center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.kr-hflex-left-center   { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }

.text-align-center { text-align: center; }
.button-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--pp-purple);
  background: var(--pp-purple);
  color: var(--pp-beige);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-pippa),
              border-color var(--dur-base) var(--ease-pippa),
              color var(--dur-base) var(--ease-pippa);
}
.button:hover {
  background: var(--pp-beige);
  color: var(--pp-purple);
}
.button.is-primary {
  background: var(--pp-purple);
  border-color: var(--pp-purple);
  color: var(--pp-beige);
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}
.button.is-primary:hover {
  background: transparent;
  color: var(--pp-purple);
}
.button.is-green {
  background: var(--pp-green);
  border-color: var(--pp-green);
  color: var(--pp-black);
}
.button.is-green:hover {
  background: transparent;
  color: var(--pp-green);
  border-color: var(--pp-green);
}
.button.is-red {
  background: var(--pp-red);
  border-color: var(--pp-red);
  color: var(--pp-white);
}
.button.is-red:hover {
  background: transparent;
  color: var(--pp-red);
}

/* ── Navigation (Landingpage style) ─────────────────────── */
.section_navbar {
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 8.5rem;
  position: fixed;
  inset: 0 0 auto 0;
  pointer-events: none;
}

.navbar_wrapper {
  pointer-events: all;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  position: relative;
  gap: 0.5rem;
}

/* Menu Button */
.navbar_menu-button {
  z-index: 111;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  background-color: var(--pp-white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.875rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s cubic-bezier(.215,.61,.355,1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.navbar_menu-button:hover {
  background-color: var(--pp-green);
}

.menu-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 1.5rem;
  overflow: hidden;
}
.p-large {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--ff-headlines);
  line-height: 1.5rem;
  white-space: nowrap;
  color: var(--pp-purple);
}

/* Badge Logo */
.navbar_logo-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.navbar_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pp-white);
  border-radius: var(--radius-pill);
  width: 7.5rem;
  height: 7.5rem;
  padding: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  pointer-events: all;
}
.navbar_logo img { width: 100%; height: auto; display: block; }

/* Cart Button */
.navbar_cart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--pp-white);
  border-radius: var(--radius-pill);
  width: 3.25rem;
  height: 3.25rem;
  color: var(--pp-purple);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.navbar_cart-button:hover { background-color: var(--pp-green); }
.navbar_cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: var(--pp-purple);
  color: var(--pp-white);
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes cart-badge-bump {
  0%, 100% { transform: scale(1); }
  40%       { transform: scale(1.5); }
}
.navbar_cart-count.is-bump { animation: cart-badge-bump 0.35s ease; }

/* ── Add-to-cart feedback ────────────────────────────────── */
.add-to-cart-btn.is-loading {
  opacity: 0.55;
  pointer-events: none;
}
@keyframes toast-in {
  from { transform: translateX(-50%) translateY(2rem); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
.pippa-cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--pp-purple);
  color: var(--pp-beige);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pippa-cart-toast.is-visible {
  opacity: 1;
  animation: toast-in 0.35s var(--ease-pippa) both;
}
.pippa-cart-toast.is-error { background: var(--pp-red); }

/* ── Fullscreen Menu ─────────────────────────────────────── */
.nav-menu_wrapper {
  z-index: 100;
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
}
.nav-menu_wrapper.is-open { display: flex; }

.nav-menu_overlay {
  background-color: rgba(19, 19, 19, 0.5);
  position: absolute;
  inset: 0;
}

.nav-menu_menu-wrapper {
  width: clamp(18rem, 35rem, 35rem);
  height: 100%;
  margin-left: auto;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.nav-menu_background {
  z-index: 0;
  position: absolute;
  inset: 0;
}

.nav-menu_background-panel {
  position: absolute;
  inset: 0;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.65, 0.05, 0, 1);
}
.nav-menu_background-panel._1 { background-color: var(--pp-red);    transition-delay: 0.12s; }
.nav-menu_background-panel._2 { background-color: var(--pp-green);  transition-delay: 0.06s; }
.nav-menu_background-panel._3 { background-color: var(--pp-purple); transition-delay: 0s; }

/* CSS fallback for when GSAP is not controlling these elements */
.nav-menu_wrapper.is-open .nav-menu_background-panel {
  transform: translateX(0);
}

.nav-menu_menu-inner {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  overflow: hidden;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.menu-list-item {
  color: var(--pp-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 5.5rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* CSS fallback stagger for when GSAP is not controlling these elements */
.nav-menu_wrapper.is-open .menu-list-item              { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
.nav-menu_wrapper.is-open .menu-list-item:nth-child(2) { transition-delay: 0.29s; }
.nav-menu_wrapper.is-open .menu-list-item:nth-child(3) { transition-delay: 0.36s; }
.nav-menu_wrapper.is-open .menu-list-item:nth-child(4) { transition-delay: 0.43s; }
.nav-menu_wrapper.is-open .menu-list-item:nth-child(5) { transition-delay: 0.50s; }

.menu-link {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 2rem;
  text-decoration: none;
  position: relative;
}

.menu-link-heading {
  z-index: 1;
  font-family: var(--ff-headlines);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--pp-beige);
  position: relative;
  height: 2.5rem;
  transition: transform 0.55s cubic-bezier(.65,.05,0,1);
  text-shadow: 0px 6em 0px var(--pp-white);
}
.menu-link:hover .menu-link-heading {
  transform: translateY(-6em);
  transition-delay: 0.1s;
}

.eyebrow {
  z-index: 1;
  color: var(--pp-red);
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--ff-body);
  position: absolute;
  top: 0.625rem;
  right: 2rem;
}

.menu-link-bg {
  z-index: 0;
  background-color: var(--pp-green);
  position: absolute;
  inset: 0;
  transform-origin: 50% 100%;
  transform: scale3d(1, 0, 1);
  transition: transform 0.55s cubic-bezier(.65,.05,0,1);
}
.menu-link:hover .menu-link-bg { transform: scale3d(1, 1, 1); }

.nav-menu_close {
  padding: 1rem 2rem;
  margin-top: auto;
}
.nav-secondary-link {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--pp-beige);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-secondary-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--pp-beige);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s ease;
}
.nav-secondary-link:hover::after {
  transform-origin: left center;
  transform: scale(1, 1);
}

/* ── Hero / Intro Animation ─────────────────────────────── */
.section_intro-animation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100svh;
  background-color: var(--pp-beige);
  position: relative;
  overflow-x: clip;
}

.intro_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  overflow: visible;
}

.intro_animated-logo {
  color: var(--pp-purple);
  transform-style: preserve-3d;
  perspective: 1500px;
  overflow: visible;
  width: 100%;
}

.intro_logo-container {
  z-index: 2;
  perspective: 2000px;
  perspective-origin: 50%;
  width: 100%;
  position: relative;
  overflow: visible;
}

.intro_product-wrapper {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
}

.intro_product-image {
  width: 12rem;
}

.intro_spiral-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.intro_spiral-image {
  width: 40%;
  animation: spiral-rotate 30s linear infinite;
}

@keyframes spiral-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.intro_shape {
  z-index: 0;
  position: absolute;
  inset: 50%;
  width: 120%;
  height: 120%;
  margin-left: auto;
  margin-right: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.intro_shape svg { width: 100%; height: 100%; overflow: visible; }

.intro_cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  padding-bottom: 2rem;
  z-index: 3;
  position: relative;
}

/* ── Welcome Section ─────────────────────────────────────── */
.section_welcome {
  background-color: var(--pp-beige);
  overflow: visible;
}

.heading-style-h4 {
  font-family: var(--ff-headlines);
  font-size: var(--fs-h4);
  font-weight: 400;
  line-height: var(--lh-h2);
  color: var(--pp-purple);
  text-align: center;
}

.section_welcome h1 {
  font-family: var(--ff-headlines);
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  color: var(--pp-purple);
  font-weight: 400;
}

.section_welcome p {
  font-family: var(--ff-headlines);
  font-size: var(--fs-p);
  line-height: var(--lh-body);
  color: var(--pp-purple);
}

/* ── Products Section — pcard (1:1 aus UI Kit) ───────────── */
.section_products { background-color: var(--pp-beige); }

.cards-sec {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 3rem);
  max-width: 90rem;
  margin: 0 auto;
}

.cards-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.cards-header h2 {
  margin-bottom: 0.5rem;
}
.cards-subheadline {
  font-family: var(--ff-headlines);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  opacity: 0.75;
  margin: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cards-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 991px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .cards-grid--cols-2 { grid-template-columns: 1fr; }
}

.pcard {
  border-radius: 1.75rem;
  padding: 2rem;
  min-height: 32.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pcard.purple { background: var(--pp-purple); color: var(--pp-beige); }
.pcard.green  { background: var(--pp-green);  color: var(--pp-purple); }
.pcard.beige  { background: var(--pp-white);  color: var(--pp-purple); }

/* Badge — absolutely positioned, always on top */
.pcard .badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 5.5rem;
  height: 5.5rem;
  z-index: 3;
}

/* Content divs always above the bottle background image */
.pcard > div:not(.bottle-wrap) { position: relative; z-index: 1; }

.pcard h3 {
  font-family: var(--ff-headlines);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  padding-right: 5rem; /* Platz für Badge oben rechts */
  color: inherit;
}
.pcard.red { background: var(--pp-red); color: var(--pp-white); }

.pcard-meta {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1.125rem;
}

.pcard p {
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.45;
  margin: 0 0 1.5rem;
  max-width: 28ch;
}

.pcard-price {
  font-family: var(--ff-headlines);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pcard-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 2px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 240ms cubic-bezier(.52,0,.51,1);
  position: relative;
  z-index: 2;
}
.pcard.purple .pcard-btn:hover { background: var(--pp-green); color: var(--pp-purple); border-color: var(--pp-green); }
.pcard.green  .pcard-btn:hover { background: var(--pp-purple); color: var(--pp-beige); border-color: var(--pp-purple); }
.pcard.beige  .pcard-btn:hover { background: var(--pp-purple); color: var(--pp-beige); border-color: var(--pp-purple); }

/* Bottle background image — behind all card content */
.bottle-wrap {
  position: absolute;
  bottom: -2.5rem;
  right: -1.25rem;
  width: 60%;
  pointer-events: none;
  z-index: 0;
}
.bottle-wrap img {
  width: 100%;
  filter: drop-shadow(0 1.25rem 1.875rem rgba(0,0,0,.25));
}

/* ── Geschmack / Botanicals ──────────────────────────────── */
.section_taste {
  background-color: var(--pp-beige);
  position: relative;
  overflow-x: clip;
  /* ↓ Central size controls for botanical items — adjust here */
  --botanical-item-size: 12rem;
  --botanical-icon-size: 8.5rem;
  --botanical-bg-scale:  1.5;
}

.botanicals_animation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.botanicals_wrapper {
  position: absolute;
  width: 1000px;
  height: 1000px;
  inset: 50% 0 0 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50%;
  perspective-origin: 50%;
  z-index: 2;
}

.botanicals_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--botanical-item-size);
  height: var(--botanical-item-size);
  position: absolute;
  top: 50%;
  left: 50%;
  /* GSAP controls the transform via xPercent/yPercent/x/y/rotation */
  z-index: 10;
}

.botanicals_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-family: var(--ff-headlines);
  color: var(--pp-white);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}
.botanicals_content img {
  width: var(--botanical-icon-size);
  height: var(--botanical-icon-size);
  object-fit: contain;
}

.botanical_background-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  overflow: visible;
}
.botanical_background-img {
  width: calc(var(--botanical-item-size) * var(--botanical-bg-scale));
  height: calc(var(--botanical-item-size) * var(--botanical-bg-scale));
  object-fit: contain;
  overflow: visible;
}

.botanicals_description {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.botanicals_background-shape {
  position: absolute;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.botanicals_background-shape img { width: 100%; height: auto; }

/* ── Content Card Scene (side images + bg shape) ─────────── */
.section_content-card {
  overflow-x: clip;
  overflow-y: visible;
}

.content_card-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
}

.content_card-center {
  position: relative;
  flex: 1;
  max-width: 44rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content_card-bg {
  position: absolute;
  inset: -30% -55%;
  z-index: 0;
  pointer-events: none;
}
.content_card-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content_card-side-image {
  width: clamp(12rem, 20vw, 26rem);
  flex-shrink: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.content_card-side-image img {
  width: 100%;
  height: auto;
  display: block;
}
.content_card-side-image.is-left  { margin-left: -2rem;  margin-top: -12%; }
.content_card-side-image.is-right { margin-right: -2rem; margin-top:  12%; }

.content_card-wrapper { z-index: 1; position: relative; }

.content_card-item {
  gap: 1.5rem;
  background-color: var(--pp-white);
  text-align: center;
  border-radius: 99rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 40rem;
  min-height: 40rem;
  padding: 4rem 4rem 10rem;
  display: flex;
}
/* Color variants */
.content_card-item.is-purple { color: var(--pp-purple); }
.content_card-item.is-red    { color: var(--pp-red); }
.content_card-item.is-green  { color: var(--pp-green); }

/* Headings inherit the variant color */
.content_card-item h2,
.content_card-item h3 { color: inherit; }

/* Body text: always Arvo 1.25rem, inherits variant color */
.content_card-item p,
.content_card-item li,
.content_card-item .content-card__body {
  font-family: var(--ff-headlines);
  font-size: 1.25rem;
  line-height: 1.6;
  color: inherit;
}

.content_card-logo { width: 7.5rem; }

/* Section wrapper centers the card */
.section_content-card .content_card-wrapper {
  display: flex;
  justify-content: center;
}

/* ── Cocktails Section ───────────────────────────────────── */
.section_cocktails {
  background-color: var(--pp-beige);
  position: relative;
}

.recipes_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.recipes_background {
  position: absolute;
  z-index: 0;
  width: 120%;
  height: 120%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  pointer-events: none;
}
.recipes_background svg { overflow: visible; }

/* ── Recipe Slider ───────────────────────────────────────── */
.section_recipe-slider {
  background-color: var(--pp-beige);
  position: relative;
  overflow-x: clip;
}

.slider_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  position: relative;
  gap: 4rem;
}

.slider_left {
  width: calc(45% - 2rem);
  position: relative;
  min-height: 28rem;
  flex-shrink: 0;
}

.slider_right {
  width: calc(55% - 2rem);
  flex-shrink: 0;
}

.swiper.is-content {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Let Swiper manage wrapper width — do NOT override with width:100% */
.swiper-wrapper.is-content {
  height: 100%;
}

.swiper-slide.is-content {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding-right: 2.5rem;
  box-sizing: border-box;
}

.swiper-slide.is-photos {
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  position: relative;
}

.slider_tagline {
  font-family: var(--ff-headlines);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pp-purple);
  opacity: 0.6;
  margin-bottom: 0;
}

.slider_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 0.5rem;
}

.slider_title-text {
  font-family: var(--ff-headlines);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  padding-bottom: 0.25rem;
  color: var(--pp-purple);
}

.slider_info-middle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 80%;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}

.slider_info-bottom { width: 100%; height: 4rem; display: block; }

.ingredient_item-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  width: 100%;
}
.ingredient_item-wrapper p {
  font-family: var(--ff-headlines);
  font-size: 1.25rem;
  color: var(--pp-purple);
  margin-bottom: 0;
  line-height: 1.4;
  white-space: nowrap;
}
.ingredient_item-wrapper p:last-child {
  text-align: right;
}

.ingredient_spacer {
  flex: 1;
  min-width: 1rem;
  border-bottom: 1px dashed var(--pp-purple);
  margin-bottom: 0.3rem;
  opacity: 0.4;
}

.slider_height {
  width: 100%;
  padding-top: 140%;
  position: relative;
}

.slider_image {
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

/* Swiper arrows */
.arrows {
  z-index: 100;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  gap: 0;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pp-purple);
  color: var(--pp-beige);
  border-radius: 100vw;
  width: 5rem;
  height: 2.75rem;
  margin-right: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.arrow:hover { background-color: var(--pp-red); }

.arrow_svg {
  width: 0.7rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow_svg.is-alt { transform: rotate(180deg); }

.swiper-slide.is-photos { display: block !important; }

/* ── Modal ───────────────────────────────────────────────── */
.pippa-modal {
  z-index: 1010;
  border: none;
  background: transparent;
  width: 100%;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  position: fixed;
  inset: 0 0 auto 0;
  overflow: clip;
}
.pippa-modal::backdrop {
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
}
.pippa-modal.is-open::backdrop { background: rgba(0, 0, 0, 0.5); }

.pippa-modal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  padding: clamp(1rem, 3vw, 3rem);
  position: relative;
}

/* Slide-up / fade animation — starts hidden, revealed by .is-open */
.pippa-modal__scroll {
  background: var(--pp-white);
  border-radius: 2rem;
  width: 100%;
  max-width: 38rem;
  max-height: 85dvh;
  overflow: hidden auto;
  padding: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.1, 0.64, 1);
}
.pippa-modal.is-open .pippa-modal__scroll {
  opacity: 1;
  transform: translateY(0);
}

/* Red variant */
.pippa-modal.is-red .pippa-modal__scroll { 
 /*  border-top: 4px solid var(--pp-red); */
}

/* ── Modal content typography (default = purple) ── */
.pippa-modal__content h2 {
  font-family: var(--ff-headlines);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--pp-purple);
  margin-bottom: 1rem;
}
.pippa-modal__content h3 {
  font-family: var(--ff-headlines);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pp-purple);
  margin: 1.5rem 0 0.5rem;
}
.pippa-modal__content p,
.pippa-modal__content li {
  font-family: var(--ff-headlines);
  font-size: 1.25rem;
  line-height: var(--lh-body);
  color: var(--pp-purple);
  margin-bottom: 0.75rem;
}

/* Red variant overrides — all text becomes red */
.pippa-modal.is-red .pippa-modal__content h2 { color: var(--pp-red); }
.pippa-modal.is-red .pippa-modal__content h3 { color: var(--pp-red); }
.pippa-modal.is-red .pippa-modal__content p,
.pippa-modal.is-red .pippa-modal__content li  { color: var(--pp-red); }
.pippa-modal.is-red .pippa-modal__content strong { color: var(--pp-red); }

/* Close button — now lives inside .pippa-modal__scroll */
.pippa-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--pp-purple);
  color: var(--pp-white);
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background var(--dur-base) var(--ease-pippa);
}
.pippa-modal__close:hover { background: var(--pp-black); }
.pippa-modal.is-red .pippa-modal__close { background: var(--pp-red); }
.pippa-modal.is-red .pippa-modal__close:hover { background: var(--pp-black); }

/* Green variant overrides */
.pippa-modal.is-green .pippa-modal__content h2 { color: var(--pp-green); }
.pippa-modal.is-green .pippa-modal__content h3 { color: var(--pp-green); }
.pippa-modal.is-green .pippa-modal__content p,
.pippa-modal.is-green .pippa-modal__content li  { color: var(--pp-green); }
.pippa-modal.is-green .pippa-modal__content strong { color: var(--pp-green); }
.pippa-modal.is-green .pippa-modal__close { background: var(--pp-green); }
.pippa-modal.is-green .pippa-modal__close:hover { background: var(--pp-black); }
.pippa-modal__close svg { width: 1rem; height: 1rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .content_grid-wrapper.kr-grid-column-3 {
    flex-direction: column;
    align-items: center;
  }
  .content_grid-column { width: 100%; max-width: 28rem; }
  .kr-hflex-right-center,
  .kr-hflex-left-center { align-items: center; }

  .botanicals_wrapper { width: 600px; height: 600px; }

  .slider_left, .slider_right { width: 100%; }
  .slider_left { min-height: 20rem; }
  .swiper.is-content { position: relative; }

  .content_card-side-image { display: none; }
  .content_card-scene { justify-content: center; }
}

@media (max-width: 767px) {
  .botanicals_wrapper { display: none; }
  .botanicals_animation-wrapper { min-height: auto; }

  .recipes_background { display: none; }

  .slider_wrap { flex-direction: column; }
  .slider_right { order: -1; }
  .slider_left  { min-height: 18rem; }

  .navbar_logo-wrapper { position: static; order: -1; margin-right: auto; pointer-events: all; display: flex; }
  .navbar_logo { width: 5rem; height: 5rem; padding: 0.5rem; }
  .menu-link-heading { font-size: 2rem; }
  .menu-list-item { height: 4rem; }
}

@media (max-width: 479px) {
  .intro_product-image { width: 8rem; }
  .product_card-item { max-width: 100%; border-radius: 3rem; }
  .content_card-item { max-width: 100%; border-radius: 3rem; }
  .slider_title-text { font-size: 2rem; }
}
