/* Generated from the original Next.js CSS Modules. */

/* ===== src/components/home/HomeHero.module.css ===== */
/* ========================================
   Home hero
======================================== */

.hero-hero {
  position: relative;

  min-height: 100svh;

  padding:
    calc(var(--header-height) + 48px)
    0
    70px;

  overflow: hidden;

  color: var(--color-brown);

  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(255, 255, 255, 0.72),
      transparent 27%
    ),
    radial-gradient(
      circle at 12% 88%,
      rgba(255, 255, 255, 0.48),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #fff8fb 0%,
      var(--color-pink-soft) 28%,
      var(--color-pink) 68%,
      #f6b4ce 100%
    );
}

/* Soft decorative glow */
.hero-hero::before {
  content: "";

  position: absolute;
  top: 15%;
  right: -130px;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;

  pointer-events: none;
}

/* Small decorative circle */
.hero-hero::after {
  content: "";

  position: absolute;
  bottom: 9%;
  left: 5%;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: var(--color-pink-deep);
  box-shadow:
    28px -25px 0 -4px rgba(255, 255, 255, 0.8),
    54px 10px 0 -6px rgba(58, 38, 30, 0.22);

  pointer-events: none;
}

/* ========================================
   Decorative background word
======================================== */

.hero-backgroundWord {
  position: absolute;
  left: -2vw;
  bottom: 10%;

  color: rgba(58, 38, 30, 0.045);

  font-family: var(--font-serif);
  font-size: clamp(18rem, 38vw, 44rem);
  line-height: 0.7;

  white-space: nowrap;

  pointer-events: none;
}

/* ========================================
   Hero layout
======================================== */

.hero-heroGrid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(500px, 1.08fr);

  align-items: center;

  gap: clamp(48px, 7vw, 120px);

  width: var(--container);
  min-height: 650px;

  margin: 0 auto;
}

.hero-content {
  padding-left: clamp(0px, 1vw, 20px);
}

/* ========================================
   Eyebrow
======================================== */

.hero-eyebrow {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 30px;

  color: var(--color-pink-deep);

  text-transform: uppercase;
  letter-spacing: 0.28em;

  font-size: 0.82rem;
  font-weight: 800;
}

.hero-eyebrow > span {
  width: 9px;
  height: 9px;

  flex: 0 0 9px;

  border-radius: 50%;

  background: var(--color-pink-deep);
}

.hero-eyebrow b {
  margin-left: 4px;

  color: var(--color-brown);

  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 0;

  transform: rotate(-8deg);
}

/* ========================================
   Heading
======================================== */

.hero-content h1 {
  margin: 0;

  color: var(--color-brown);

  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 7.3vw, 9rem);
  font-weight: 400;
  line-height: 0.86;

  letter-spacing: -0.045em;
}

.hero-content h1 span,
.hero-content h1 strong {
  display: block;
}

.hero-content h1 strong {
  margin-top: 20px;

  color: var(--color-pink-deep);

  font-style: italic;
  font-weight: 400;
}

/* ========================================
   Description
======================================== */

.hero-content > p {
  max-width: 620px;

  margin: 42px 0 0;

  color: var(--color-brown-muted);

  font-size: clamp(1rem, 1.35vw, 1.32rem);
  line-height: 1.7;
}

/* ========================================
   Buttons
======================================== */

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 16px;

  margin-top: 42px;
}

.hero-primaryButton,
.hero-secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  min-height: 62px;

  padding: 0 34px;

  border-radius: 999px;

  font-weight: 800;

  transition:
    transform 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-primaryButton {
  color: #111;
  background: var(--color-pink);
  border: 1px solid var(--color-pink);

  box-shadow: 0 15px 32px rgba(201, 95, 130, 0.16);
}

.hero-primaryButton:hover {
  color: #111;
  background: var(--color-pink-dark);
  border-color: var(--color-pink-dark);

  transform: translateY(-3px);

  box-shadow: 0 20px 38px rgba(201, 95, 130, 0.22);
}

.hero-secondaryButton {
  color: #111;
  background: rgba(255, 249, 252, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.42);

  backdrop-filter: blur(10px);
}

.hero-secondaryButton:hover {
  color: #111;
  background: #ffffff;
  border-color: #111;

  transform: translateY(-3px);
}

.hero-primaryButton span,
.hero-secondaryButton span {
  display: inline-block;

  transition: transform 220ms ease;
}

.hero-primaryButton:hover span,
.hero-secondaryButton:hover span {
  transform: translate(4px, -3px);
}

/* ========================================
   Scroll indicator
======================================== */

.hero-scrollNote {
  display: flex;
  align-items: center;

  gap: 11px;

  width: fit-content;

  margin-top: 54px;

  color: var(--color-brown);

  font-size: 0.72rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.14em;

  opacity: 0.72;
}

.hero-scrollNote span {
  position: relative;

  width: 26px;
  height: 41px;

  border: 1.5px solid currentColor;
  border-radius: 18px;
}

.hero-scrollNote span::after {
  content: "";

  position: absolute;
  top: 8px;
  left: 50%;

  width: 4px;
  height: 7px;

  border-radius: 999px;

  background: currentColor;

  transform: translateX(-50%);

  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 12px);
  }
}

/* ========================================
   Hero visual
======================================== */

.hero-visual {
  position: relative;

  align-self: center;

  min-height: min(68vh, 690px);

  overflow: visible;

  border-radius: 44px;
}

/* Actual hero image */
.hero-visual > img {
  border: 10px solid rgba(255, 255, 255, 0.46);
  border-radius: 44px;

  box-shadow:
    0 40px 75px rgba(76, 38, 48, 0.2),
    0 10px 24px rgba(76, 38, 48, 0.1);

  transition:
    transform 650ms cubic-bezier(0.2, 0.7, 0, 1),
    box-shadow 650ms ease;
}

.hero-visual:hover > img {
  transform: scale(1.018);

  box-shadow:
    0 48px 90px rgba(76, 38, 48, 0.26),
    0 14px 30px rgba(76, 38, 48, 0.12);
}

/* ========================================
   Floating image badge
======================================== */

.hero-imageBadge {
  position: absolute;
  left: -56px;
  bottom: -28px;

  display: flex;
  align-items: center;

  gap: 18px;

  min-width: 310px;

  padding: 20px 24px;

  border: 1px solid rgba(58, 38, 30, 0.1);
  border-radius: 24px;

  color: var(--color-brown);

  background: rgba(255, 249, 245, 0.92);

  box-shadow:
    0 22px 50px rgba(83, 43, 55, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(18px);
}

.hero-badgeIcon {
  display: grid;
  place-items: center;

  width: 64px;
  height: 64px;

  flex: 0 0 64px;

  border-radius: 18px;

  color: var(--color-brown);
  background: var(--color-pink);

  font-family: var(--font-serif);
  font-size: 2rem;
}

.hero-imageBadge p {
  display: flex;
  flex-direction: column;

  gap: 6px;
}

.hero-imageBadge strong {
  color: var(--color-brown);
  font-size: 1.2rem;
}

.hero-imageBadge span {
  color: var(--color-brown-muted);
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 1180px) {
  .hero-heroGrid {
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: clamp(4rem, 7vw, 6.5rem);
  }

  .hero-visual {
    min-height: 570px;
  }
}

/* ========================================
   Small tablet
======================================== */

@media (max-width: 850px) {
  .hero-hero {
    padding-top: calc(var(--header-height) + 20px);
  }

  .hero-heroGrid {
    grid-template-columns: 1fr;

    padding-bottom: 40px;
  }

  .hero-content {
    padding: 42px 0 0;
  }

  .hero-visual {
    min-height: 540px;
    margin-top: 15px;
  }

  .hero-imageBadge {
    left: 20px;
  }
}

/* ========================================
   Mobile
======================================== */

@media (max-width: 600px) {
  .hero-hero {
    padding-bottom: 54px;
  }

  .hero-hero::before {
    top: 26%;
    right: -190px;
  }

  .hero-heroGrid {
    gap: 34px;
  }

  .hero-eyebrow {
    margin-bottom: 24px;
    letter-spacing: 0.17em;
  }

  .hero-content h1 {
    font-size: clamp(3.7rem, 17vw, 5.4rem);
  }

  .hero-content h1 strong {
    margin-top: 12px;
  }

  .hero-content > p {
    margin-top: 28px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 34px;
  }

  .hero-primaryButton,
  .hero-secondaryButton {
    width: 100%;
  }

  .hero-scrollNote {
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 420px;
    border-radius: 28px;
  }

  .hero-visual > img {
    border-width: 6px;
    border-radius: 28px;
  }

  .hero-imageBadge {
    right: 14px;
    left: 14px;
    bottom: -24px;

    min-width: 0;

    padding: 16px;
  }

  .hero-badgeIcon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 15px;
  }

  .hero-imageBadge strong {
    font-size: 1.05rem;
  }

  .hero-imageBadge span {
    font-size: 0.9rem;
  }
}

/* ========================================
   Reduced motion
======================================== */

@media (prefers-reduced-motion: reduce) {
  .hero-scrollNote span::after {
    animation: none;
  }

  .hero-visual > img,
  .hero-primaryButton,
  .hero-secondaryButton {
    transition: none;
  }
}

/* ===== src/components/home/FeatureBar.module.css ===== */
/* ========================================
   Feature Bar Container
======================================== */

.feature-featureBar {
  position: relative;
  z-index: 5;

  width: min(92%, 1600px);
  margin: 0 auto;

  overflow: hidden;

  background: rgba(255, 249, 252, 0.94);

  border: 1px solid rgba(239, 142, 174, 0.22);
  border-radius: 32px;

  box-shadow:
    0 28px 65px rgba(117, 62, 82, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(14px);
}

/* ========================================
   Hide Overflow
======================================== */

.feature-featureViewport {
  width: 100%;
  overflow: hidden;

  mask-image: linear-gradient(
    to right,
    transparent,
    black 7%,
    black 93%,
    transparent
  );

  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 7%,
    black 93%,
    transparent
  );
}

/* ========================================
   Infinite Moving Track
======================================== */

.feature-featureTrack {
  display: flex;
  width: max-content;

  animation: featureTicker 24s linear infinite;

  will-change: transform;
}

/* كل مجموعة تحتوي على الأربع عناصر */

.feature-featureGroup {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

/* ========================================
   Feature Item
======================================== */

.feature-featureItem {
  position: relative;

  display: flex;
  align-items: center;
  gap: 18px;

  width: 310px;
  min-height: 145px;
  padding: 30px 38px;

  flex-shrink: 0;
}

/* الفاصل بين العناصر */

.feature-featureItem:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 28%;
  right: 0;

  width: 1px;
  height: 44%;

  background: rgba(17, 17, 17, 0.1);
}

/* ========================================
   Icon
======================================== */

.feature-iconBox {
  display: grid;
  place-items: center;

  width: 64px;
  height: 64px;

  flex-shrink: 0;

  color: #e76f98;

  background: #ffe8f1;
  border: 1px solid rgba(231, 111, 152, 0.25);
  border-radius: 50%;

  font-size: 27px;

  transition:
    transform 350ms ease,
    background-color 350ms ease,
    color 350ms ease,
    border-color 350ms ease;
}

/* ========================================
   Text
======================================== */

.feature-featureContent {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-featureContent strong {
  color: #111111;

  font-family: var(--font-body, Arial, sans-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-featureContent span {
  color: rgba(17, 17, 17, 0.65);

  font-size: 16px;
  line-height: 1.4;
}

/* ========================================
   Hover
======================================== */

.feature-featureItem:hover .feature-iconBox {
  color: #111111;

  background: #ffcbe1;
  border-color: #ef8eae;

  transform: rotate(-7deg) scale(1.08);
}

.feature-featureItem:hover .feature-featureContent strong {
  color: #000000;
}

.feature-featureItem:hover .feature-featureContent span {
  color: rgba(0, 0, 0, 0.78);
}

/* ========================================
   Infinite Animation
======================================== */

@keyframes featureTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* إيقاف الحركة عند وضع الماوس */

/*
.featureBar:hover .featureTrack {
  animation-play-state: paused;
}
*/

/* ========================================
   Tablet
======================================== */

@media (max-width: 1000px) {
  .feature-featureBar {
    width: calc(100% - 40px);
    border-radius: 25px;
  }

  .feature-featureItem {
    width: 270px;
    min-height: 125px;
    padding: 25px 28px;
  }

  .feature-iconBox {
    width: 55px;
    height: 55px;

    font-size: 23px;
  }

  .feature-featureContent strong {
    font-size: 17px;
  }

  .feature-featureContent span {
    font-size: 14px;
  }
}

/* ========================================
   Mobile
======================================== */

@media (max-width: 600px) {
  .feature-featureBar {
    width: calc(100% - 24px);
    border-radius: 20px;
  }

  .feature-featureTrack {
    animation-duration: 18s;
  }

  .feature-featureItem {
    width: 240px;
    min-height: 105px;
    gap: 14px;
    padding: 20px;
  }

  .feature-iconBox {
    width: 48px;
    height: 48px;

    font-size: 20px;
  }

  .feature-featureContent strong {
    font-size: 16px;
  }

  .feature-featureContent span {
    font-size: 13px;
  }
}

/* ========================================
   Accessibility
======================================== */

@media (prefers-reduced-motion: reduce) {
  .feature-featureTrack {
    animation: none;
    transform: translateX(0);
  }
}

/* ===== src/components/home/CoffeeCollection.module.css ===== */
/* ========================================
   Main Section
======================================== */

.collection-collectionSection {
  position: relative;

  padding: clamp(100px, 10vw, 180px) 5%;

  color: #3b1e17;
  background:
    radial-gradient(
      circle at 10% 25%,
      rgba(237, 135, 157, 0.1),
      transparent 34%
    ),
    #faf6ef;

  overflow: hidden;
}


/* ========================================
   Main Layout
======================================== */

.collection-collectionContainer {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(500px, 1.25fr);
  gap: clamp(70px, 8vw, 150px);

  width: min(1450px, 100%);
  margin: 0 auto;
}


/* ========================================
   Left Introduction
======================================== */

.collection-introColumn {
  padding-right: clamp(25px, 4vw, 70px);

  border-right: 1px solid rgba(59, 30, 23, 0.13);
}

.collection-eyebrow {
  display: block;

  margin-bottom: 28px;

  color: #d96985;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.collection-heading {
  max-width: 560px;
  margin: 0;

  color: #3b1e17;

  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(52px, 5vw, 86px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.collection-heading em {
  display: inline;

  color: #d96985;

  font-weight: 400;
}

.collection-description {
  max-width: 540px;
  margin: 38px 0 0;

  color: rgba(59, 30, 23, 0.67);

  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
}

.collection-miniIcons {
  display: flex;
  align-items: center;
  gap: 28px;

  margin-top: 45px;

  color: #d96985;
}

.collection-miniIcons span {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(217, 105, 133, 0.45);
  border-radius: 50%;

  font-size: 18px;
}


/* ========================================
   Right List
======================================== */

.collection-listColumn {
  display: flex;
  flex-direction: column;
}

.collection-collectionItem {
  position: relative;

  display: grid;
  grid-template-columns: 55px minmax(190px, 0.8fr) minmax(220px, 1fr) 32px;
  align-items: center;
  gap: 22px;

  min-height: 105px;
  padding: 24px 18px;

  border-bottom: 1px solid rgba(59, 30, 23, 0.13);

  cursor: pointer;

  transition:
    padding 350ms ease,
    background-color 350ms ease,
    border-radius 350ms ease;
}

.collection-collectionItem:first-child {
  border-top: 1px solid rgba(59, 30, 23, 0.13);
}

.collection-itemNumber {
  color: #d96985;

  font-family: var(--font-display, Georgia, serif);
  font-size: 16px;
}

.collection-collectionItem h3 {
  margin: 0;

  color: #3b1e17;

  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(30px, 2.6vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.collection-collectionItem p {
  margin: 0;

  color: rgba(59, 30, 23, 0.54);

  font-size: 15px;
  line-height: 1.5;
  text-align: right;
}

.collection-itemArrow {
  color: #d96985;

  font-size: 20px;

  opacity: 0;
  transform: translate(-12px, 12px);

  transition:
    opacity 300ms ease,
    transform 300ms ease;
}


/* ========================================
   Hover Effects
======================================== */

.collection-collectionItem:hover {
  padding-right: 28px;
  padding-left: 28px;

  background: rgba(237, 135, 157, 0.12);
  border-radius: 20px;
}

.collection-collectionItem:hover .collection-itemArrow {
  opacity: 1;
  transform: translate(0, 0);
}


/* ========================================
   Tablet
======================================== */

@media (max-width: 1050px) {
  .collection-collectionSection {
    padding: 110px 35px;
  }

  .collection-collectionContainer {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .collection-introColumn {
    max-width: 760px;
    padding: 0 0 60px;

    border-right: 0;
    border-bottom: 1px solid rgba(59, 30, 23, 0.13);
  }
}


/* ========================================
   Mobile
======================================== */

@media (max-width: 650px) {
  .collection-collectionSection {
    padding: 85px 20px;
  }

  .collection-collectionContainer {
    gap: 50px;
  }

  .collection-introColumn {
    padding-bottom: 45px;
  }

  .collection-heading {
    font-size: clamp(48px, 14vw, 68px);
  }

  .collection-description {
    margin-top: 28px;
    font-size: 16px;
  }

  .collection-collectionItem {
    grid-template-columns: 40px 1fr 28px;
    gap: 12px;

    min-height: 92px;
    padding: 22px 8px;
  }

  .collection-collectionItem h3 {
    font-size: 31px;
  }

  .collection-collectionItem p {
    display: none;
  }

  .collection-itemArrow {
    opacity: 1;
    transform: none;
  }

  .collection-collectionItem:hover {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/* ===== src/components/home/FeaturedMenu.module.css ===== */
/* ========================================
   Featured Menu Section
======================================== */

.featured-featuredSection {
  position: relative;
  width: 100%;

  padding: clamp(90px, 9vw, 150px) 5%;

  overflow: hidden;

  color: #111111;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 255, 255, 0.7),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(255, 255, 255, 0.42),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #fff2f8 0%,
      #ffcbe1 52%,
      #f7b7d1 100%
    );
}

/* زخرفة نقطية خفيفة */

.featured-featuredSection::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 310px;
  height: 240px;

  opacity: 0.22;

  background-image: radial-gradient(
    circle,
    rgba(17, 17, 17, 0.22) 1px,
    transparent 1px
  );

  background-size: 12px 12px;

  pointer-events: none;
}

/* Glow خفيف أسفل القسم */

.featured-featuredSection::after {
  content: "";

  position: absolute;
  bottom: -160px;
  left: 50%;

  width: 700px;
  height: 330px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.38);
  filter: blur(75px);

  transform: translateX(-50%);

  pointer-events: none;
}


/* ========================================
   Container
======================================== */

.featured-container {
  position: relative;
  z-index: 3;

  width: min(1450px, 100%);
  margin: 0 auto;
}

/* ========================================
   Section Header
======================================== */

.featured-sectionHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 48px;
}

.featured-headingContent {
  position: relative;
}

.featured-eyebrow {
  display: block;

  margin-bottom: 16px;

  color: #20bd75;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.featured-sectionHeader h2 {
  margin: 0;

  color: #111111;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1;

  letter-spacing: -0.04em;
}

.featured-titleAccent {
  position: relative;

  display: inline-block;

  color: #e86799;
}

/* الخط الأخضر أسفل proud of */

.featured-titleAccent::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;

  height: 3px;

  border-radius: 999px;

  background: #39ef9b;

  transform: rotate(-1deg);
}

/* علامة زخرفية بجانب العنوان */

.featured-titleAccent::before {
  content: "✦";

  position: absolute;
  top: -25px;
  right: -31px;

  color: #e86799;

  font-family: Arial, sans-serif;
  font-size: 22px;

  transform: rotate(14deg);
}

/* ========================================
   Full Menu Link
======================================== */

.featured-menuLink {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  padding-bottom: 7px;

  color: #111111;

  border-bottom: 2px solid #e86799;

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  transition:
    color 250ms ease,
    border-color 250ms ease,
    transform 250ms ease;
}

.featured-menuLink span {
  color: #20bd75;

  transition: transform 250ms ease;
}

.featured-menuLink:hover {
  color: #e86799;
  border-color: #39ef9b;

  transform: translateY(-2px);
}

.featured-menuLink:hover span {
  transform: translate(4px, -4px);
}

/* ========================================
   Products Grid
======================================== */

.featured-productsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px;
}

.featured-cardReveal {
  height: 100%;
  min-width: 0;
}

.featured-cardReveal > * {
  height: 100%;
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 1050px) {
  .featured-featuredSection {
    padding-right: 30px;
    padding-left: 30px;
  }

  .featured-productsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-leftDecoration,
  .featured-rightDecoration {
    width: 190px;
    height: 190px;
  }
}

/* ========================================
   Mobile
======================================== */

@media (max-width: 650px) {
  .featured-featuredSection {
    padding: 80px 18px;
  }

  .featured-featuredSection::before {
    width: 190px;
    height: 170px;
  }

  .featured-sectionHeader {
    align-items: flex-start;
    flex-direction: column;

    gap: 25px;

    margin-bottom: 38px;
  }

  .featured-sectionHeader h2 {
    font-size: clamp(42px, 13vw, 61px);
    line-height: 0.98;
  }

  .featured-titleAccent::before {
    top: -20px;
    right: -24px;

    font-size: 17px;
  }

  .featured-productsGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .featured-leftDecoration,
  .featured-rightDecoration {
    width: 150px;
    height: 150px;

    border-width: 3px;
  }

  .featured-leftDecoration {
    bottom: -75px;
    left: -95px;
  }

  .featured-rightDecoration {
    top: -80px;
    right: -95px;
  }
}

/* ========================================
   Accessibility
======================================== */

@media (prefers-reduced-motion: reduce) {
  .featured-leftDecoration,
  .featured-rightDecoration {
    animation: none;
  }
}

/* ===== src/components/home/PromiseSection.module.css ===== */
/* ========================================
   Promise Section
======================================== */

.promise-promiseSection {
  position: relative;

  padding:
    clamp(90px, 9vw, 160px)
    5%;

  color: var(--color-brown, #3a1e17);
  background:
    radial-gradient(
      circle at 82% 28%,
      rgba(237, 135, 157, 0.08),
      transparent 36%
    ),
    var(--color-cream, #faf5ee);

  overflow: hidden;
}


/* ========================================
   Main Container
======================================== */

.promise-container {
  display: grid;
  grid-template-columns:
    minmax(380px, 0.9fr)
    minmax(480px, 1.1fr);

  align-items: center;

  gap: clamp(60px, 8vw, 145px);

  width: min(1450px, 100%);
  margin: 0 auto;
}


/* ========================================
   Left Image
======================================== */

.promise-imageWrapper {
  position: relative;

  width: 100%;
  height: clamp(560px, 55vw, 760px);

  overflow: hidden;

  background: var(
    --color-pink-soft,
    #efc9cd
  );

  border-radius: 34px;

  box-shadow:
    0 28px 70px
    rgba(58, 30, 23, 0.12);
}

.promise-imageWrapper img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 900ms
    cubic-bezier(0.22, 1, 0.36, 1);
}

.promise-imageWrapper:hover img {
  transform: scale(1.04);
}


/* ========================================
   Right Content
======================================== */

.promise-content {
  max-width: 720px;
}

.promise-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  margin-bottom: 28px;

  color: var(
    --color-pink-dark,
    #d96380
  );

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.promise-eyebrow span {
  font-size: 1rem;
}

.promise-content h2 {
  margin: 0;

  color: var(--color-brown, #3a1e17);

  font-family: var(
    --font-serif,
    Georgia,
    serif
  );

  font-size:
    clamp(3.2rem, 5vw, 6.2rem);

  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.promise-content h2 em {
  display: block;

  margin-top: 7px;

  color: var(
    --color-pink-dark,
    #d96380
  );

  font-weight: 400;
}

.promise-content p {
  max-width: 650px;
  margin: 38px 0 0;

  color: var(
    --color-brown-muted,
    rgba(58, 30, 23, 0.66)
  );

  font-size:
    clamp(1rem, 1.25vw, 1.2rem);

  line-height: 1.75;
}

.promise-content .promise-secondaryText {
  margin-top: 14px;
}


/* ========================================
   Statistics
======================================== */

.promise-statsGrid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 25px;

  margin-top: 55px;
}

.promise-statItem {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promise-statItem strong {
  color: var(
    --color-pink-dark,
    #d96380
  );

  font-family: var(
    --font-serif,
    Georgia,
    serif
  );

  font-size:
    clamp(2.6rem, 4vw, 4.6rem);

  font-weight: 400;
  line-height: 1;
}

.promise-statItem > span {
  color: var(
    --color-brown-muted,
    rgba(58, 30, 23, 0.62)
  );

  font-size: 0.88rem;
  line-height: 1.4;
}


/* ========================================
   Tablet
======================================== */

@media (max-width: 1050px) {
  .promise-promiseSection {
    padding-right: 30px;
    padding-left: 30px;
  }

  .promise-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .promise-imageWrapper {
    height: 620px;
  }

  .promise-content {
    max-width: 850px;
  }
}


/* ========================================
   Mobile
======================================== */

@media (max-width: 650px) {
  .promise-promiseSection {
    padding:
      80px
      18px;
  }

  .promise-container {
    gap: 48px;
  }

  .promise-imageWrapper {
    height: 450px;
    border-radius: 24px;
  }

  .promise-content h2 {
    font-size:
      clamp(3rem, 14vw, 4.8rem);
  }

  .promise-content p {
    margin-top: 28px;
    font-size: 0.96rem;
  }

  .promise-statsGrid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 35px 20px;

    margin-top: 42px;
  }

  .promise-statItem strong {
    font-size: 3.2rem;
  }
}


/* ========================================
   Reduced Motion
======================================== */

@media (
  prefers-reduced-motion: reduce
) {
  .promise-imageWrapper img {
    transition: none;
  }
}
