/* Cloffy unique sections — overrides dhatri-like base styles */

/* ---- Café menu stack ---- */
.cloffy-products.products-sec {
  padding: 64px 0 64px !important;
}

/* Reset common.css .products-sec .products padding — cloffy-menu-card owns spacing */
.cloffy-products.products-sec .products.cloffy-menu-card {
  padding: 36px 0 !important;
}

.cloffy-products.products-sec .cloffy-menu-card .content {
  margin: 0 !important;
}

.cloffy-products {
  background: linear-gradient(180deg, var(--white) 0%, #f9f4ef 8%, #f9f4ef 92%, var(--white) 100%) !important;
}

.cloffy-menu-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.cloffy-menu-card {
  position: relative;
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  border-left: 5px solid var(--cloffy-brown);
  box-shadow: 0 4px 0 rgba(92, 52, 40, 0.08), 0 12px 36px var(--cloffy-shadow);
  padding: 36px 0;
  overflow: hidden;
}

.cloffy-menu-card:nth-child(even) {
  border-left-color: var(--cloffy-warm-deep);
}

.cloffy-products .cloffy-menu-card.products {
  padding: 36px 0;
}

.cloffy-products .cloffy-menu-card .content {
  margin: 0;
}

.cloffy-menu-card__num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(92, 52, 40, 0.06);
  pointer-events: none;
}

.cloffy-product__visual--cup .imagepart {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 16px;
  background: radial-gradient(
    ellipse 90% 70% at 50% 88%,
    rgba(230, 197, 170, 0.28) 0%,
    transparent 62%
  );
  overflow: visible;
}

/* Override common.css .products-sec .imagepart { display: block } on tablet/mobile */
.cloffy-products .cloffy-menu-card .imagepart,
.cloffy-product__visual--cup .imagepart {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cloffy-product__img-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  min-height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-product__img-stack::before {
  content: "";
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 68%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(92, 52, 40, 0.28) 0%,
    rgba(92, 52, 40, 0.08) 45%,
    transparent 72%
  );
  z-index: 0;
  filter: blur(10px);
  pointer-events: none;
}

.cloffy-product__visual--cup .imagepart::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(440px, 96%);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 50% 42%,
    #ffffff 0%,
    rgba(255, 248, 244, 0.98) 22%,
    rgba(230, 197, 170, 0.55) 52%,
    rgba(212, 165, 116, 0.28) 72%,
    transparent 88%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65),
    0 0 0 8px rgba(230, 197, 170, 0.22),
    0 24px 56px rgba(230, 197, 170, 0.42),
    inset 0 0 48px rgba(255, 255, 255, 0.55);
  z-index: 0;
  pointer-events: none;
  animation: cloffy-menu-spotlight 5s ease-in-out infinite;
}

.cloffy-product__visual--cup .imagepart::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -55%;
  width: 42%;
  height: 140%;
  border: none;
  border-radius: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 36%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.08) 64%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
  animation: cloffy-menu-shine 5.5s ease-in-out infinite;
}

.cloffy-products .cloffy-product__img {
  border-radius: 0 !important;
}

.cloffy-product__visual--cup .cloffy-product__img {
  position: relative;
  z-index: 2;
  max-width: 100% !important;
  width: auto;
  max-height: 480px;
  height: auto;
  background: transparent;
  filter:
    drop-shadow(0 10px 18px rgba(92, 52, 40, 0.18))
    drop-shadow(0 28px 52px rgba(92, 52, 40, 0.28))
    brightness(1.04)
    contrast(1.05)
    saturate(1.08);
  transition: opacity 0.42s ease, transform 0.45s ease, filter 0.45s ease;
}

.cloffy-product__visual--cup .cloffy-product__img--alt {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

@keyframes cloffy-menu-spotlight {
  0%,
  100% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes cloffy-menu-shine {
  0% {
    transform: translateX(0) skewX(-12deg);
    opacity: 0;
  }

  15% {
    opacity: 0.9;
  }

  45% {
    transform: translateX(340%) skewX(-12deg);
    opacity: 0.9;
  }

  55% {
    opacity: 0;
  }

  100% {
    transform: translateX(340%) skewX(-12deg);
    opacity: 0;
  }
}

@keyframes cloffy-product-img-primary-cycle {
  0%,
  42% {
    opacity: 1;
    transform: scale(1);
  }

  50%,
  92% {
    opacity: 0;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cloffy-product-img-alt-cycle {
  0%,
  42% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  50%,
  92% {
    opacity: 1;
    transform: translateY(-8px) scale(1.05);
  }

  100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
}

@media (hover: hover) and (min-width: 992px) {
  .cloffy-product__visual--cup:hover .imagepart::before {
    animation-play-state: paused;
    transform: scale(1.05);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.75),
      0 0 0 10px rgba(230, 197, 170, 0.28),
      0 32px 64px rgba(230, 197, 170, 0.5),
      inset 0 0 52px rgba(255, 255, 255, 0.65);
  }

  .cloffy-product__visual--cup:hover .cloffy-product__img--primary {
    opacity: 0;
    transform: scale(0.98);
  }

  .cloffy-product__visual--cup:hover .cloffy-product__img--alt {
    opacity: 1;
    transform: translateY(-8px) scale(1.05);
    filter:
      drop-shadow(0 14px 24px rgba(92, 52, 40, 0.22))
      drop-shadow(0 32px 58px rgba(92, 52, 40, 0.34))
      brightness(1.06)
      contrast(1.06)
      saturate(1.1);
  }

  .cloffy-product__visual--cup:hover .cloffy-product__img--primary {
    filter: drop-shadow(0 12px 24px rgba(92, 52, 40, 0.12));
  }
}

.cloffy-menu-card h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--cloffy-brown);
  margin-bottom: 12px;
  font-family: var(--font-primary);
}

.cloffy-menu-card .cloffy-product__tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  background: transparent;
  border: 1.5px solid var(--cloffy-warm-deep);
  border-radius: 2px;
  padding: 4px 12px;
}

.cloffy-menu-card .description {
  font-size: 16px;
  margin-bottom: 18px;
  color: #5c4a44;
}

.cloffy-menu-card .cloffy-product__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cloffy-menu-card .cloffy-product__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #5c4a44;
  line-height: 1.5;
}

.cloffy-menu-card .cloffy-product__benefits li i {
  color: var(--cloffy-brown-mid);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-cloffy .cloffy-menu-card .usp-sec.cloffy-product__usp .highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 220px;
  min-height: 36px;
  padding: 14px 44px;
  font-size: clamp(0.85rem, 2vw, 1rem) !important;
  line-height: 1.45 !important;
  font-weight: 700;
  font-style: oblique;
  color: var(--white);
  white-space: nowrap;
  overflow: visible;
  background: url('../assets/images/brownhighlight.png') no-repeat center center;
  background-size: 92% 74%;
  border-radius: 0;
  transition: opacity 0.3s ease;
}

.cloffy-menu-card .btn-part {
  margin-top: 4px;
}

/* ---- Design 1: Café menu tabs ---- */
.cloffy-products--tabs .cloffy-prod-tabs {
  margin-top: clamp(32px, 4vw, 48px);
}

.cloffy-prod-tabs__nav-wrap {
  position: sticky;
  top: calc(var(--announcement-bar-height, 0px) + var(--site-header-height, 72px) + 8px);
  z-index: 20;
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding: 10px 0;
  background: linear-gradient(
    180deg,
    rgba(249, 244, 239, 0.98) 0%,
    rgba(249, 244, 239, 0.94) 72%,
    rgba(249, 244, 239, 0) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cloffy-prod-tabs__nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cloffy-prod-tabs__nav::-webkit-scrollbar {
  display: none;
}

.cloffy-prod-tabs__tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid rgba(92, 52, 40, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--cloffy-brown);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-primary);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.cloffy-prod-tabs__tab-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(92, 52, 40, 0.45);
  transition: color 0.25s ease;
}

.cloffy-prod-tabs__tab:hover {
  border-color: rgba(92, 52, 40, 0.28);
  box-shadow: 0 6px 18px rgba(92, 52, 40, 0.08);
  transform: translateY(-1px);
}

.cloffy-prod-tabs__tab.is-active {
  background: var(--cloffy-brown);
  border-color: var(--cloffy-brown);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(92, 52, 40, 0.22);
}

.cloffy-prod-tabs__tab.is-active .cloffy-prod-tabs__tab-num {
  color: rgba(255, 255, 255, 0.72);
}

.cloffy-prod-tabs__panels {
  position: relative;
  min-height: 420px;
}

.cloffy-prod-tabs__panel {
  animation: cloffy-tab-in 0.38s ease;
}

.cloffy-prod-tabs__panel[hidden] {
  display: none !important;
}

@keyframes cloffy-tab-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Design 2: Catalog magazine ---- */
.cloffy-products--magazine {
  background: #f9f4ef !important;
  padding-bottom: clamp(48px, 6vw, 72px) !important;
}

.cloffy-products--magazine .cloffy-menu-nav__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cloffy-mag-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 72px);
}

.cloffy-mag-block__band {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(44px, 5.5vw, 68px) 0 clamp(72px, 9vw, 104px);
  background:
    radial-gradient(ellipse 55% 80% at 12% 20%, rgba(176, 141, 87, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 45% 70% at 88% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
    linear-gradient(135deg, #3d2219 0%, #5c3428 42%, #6b3f30 100%);
  color: #f5e6dc;
  overflow: hidden;
}

.cloffy-mag-block__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Ccircle cx='52' cy='28' r='1.5'/%3E%3Ccircle cx='88' cy='16' r='2'/%3E%3Ccircle cx='28' cy='64' r='1.5'/%3E%3Ccircle cx='72' cy='72' r='2'/%3E%3Ccircle cx='104' cy='96' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

.cloffy-mag-block__band > .container {
  position: relative;
  z-index: 1;
}

.cloffy-mag-block__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.cloffy-mag-block__img-stack {
  position: relative;
  width: min(100%, 460px);
  min-height: clamp(220px, 32vw, 300px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-mag-block__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: clamp(210px, 30vw, 280px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.35));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cloffy-mag-block__img--alt {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

.cloffy-mag-block__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}

.cloffy-mag-block__index {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(245, 230, 220, 0.72);
}

.cloffy-mag-block__count {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 230, 220, 0.88);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cloffy-mag-block__title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fffaf6;
  font-family: var(--font-primary);
}

.cloffy-mag-block__lead {
  margin: 0 0 20px;
  font-size: clamp(0.95rem, 1.6vw, 1.06rem);
  line-height: 1.65;
  color: rgba(245, 230, 220, 0.86);
  max-width: 52ch;
}

.cloffy-mag-block__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cloffy-mag-block__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(245, 230, 220, 0.9);
}

.cloffy-mag-block__benefits li i {
  color: #d4a574;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-cloffy .cloffy-mag-block__usp .highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 200px;
  min-height: 42px;
  padding: 12px 36px;
  font-size: clamp(0.85rem, 2vw, 1rem) !important;
  line-height: 1.45 !important;
  font-weight: 700;
  font-style: oblique;
  color: var(--white);
  white-space: nowrap;
  background: url('../assets/images/brownhighlight.png') no-repeat center center;
  background-size: 92% 74%;
  transition: opacity 0.3s ease;
}

.cloffy-mag-block__shelf-wrap {
  position: relative;
  z-index: 2;
  margin-top: clamp(-56px, -7vw, -40px);
}

.cloffy-mag-block__shelf {
  background: #fffaf6;
  border: 1px solid rgba(92, 52, 40, 0.1);
  border-radius: 20px;
  padding: clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 22px);
  box-shadow:
    0 4px 0 rgba(92, 52, 40, 0.04),
    0 24px 56px rgba(92, 52, 40, 0.14);
}

.cloffy-products--magazine .cloffy-cat-item {
  background: var(--white);
}

@media (hover: hover) and (min-width: 992px) {
  .cloffy-mag-block__visual:hover .cloffy-mag-block__img--primary {
    opacity: 0;
    transform: scale(0.98);
  }

  .cloffy-mag-block__visual:hover .cloffy-mag-block__img--alt {
    opacity: 1;
    transform: translateY(-6px) scale(1.03);
  }
}

@media (max-width: 575px) {
  .cloffy-mag-block__shelf-wrap {
    margin-top: -32px;
  }

  .cloffy-mag-block__shelf {
    border-radius: 16px;
    padding: 16px 12px;
  }

  .cloffy-mag-block__band {
    padding-bottom: 56px;
  }
}

/* ---- Design 3: Split showcase (menu board + stage) ---- */
.cloffy-products--split {
  background: #f9f4ef !important;
  padding-bottom: clamp(48px, 6vw, 72px) !important;
}

.cloffy-products--split .cloffy-menu-nav__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cloffy-split {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.cloffy-split__nav-wrap {
  position: sticky;
  top: clamp(88px, 10vh, 120px);
}

.cloffy-split__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(176, 141, 87, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, #3d2219 0%, #5c3428 48%, #523028 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(92, 52, 40, 0.22);
}

.cloffy-split__nav::before {
  content: "Menu";
  display: block;
  padding: 4px 8px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 230, 220, 0.55);
}

.cloffy-split__nav-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(245, 230, 220, 0.88);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.cloffy-split__nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.cloffy-split__nav-item.is-active {
  background: rgba(255, 250, 246, 0.1);
  border-color: rgba(212, 165, 116, 0.45);
  color: #fffaf6;
  box-shadow: inset 3px 0 0 #d4a574;
}

.cloffy-split__nav-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(245, 230, 220, 0.5);
  min-width: 1.4em;
}

.cloffy-split__nav-item.is-active .cloffy-split__nav-num {
  color: #d4a574;
}

.cloffy-split__nav-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cloffy-split__nav-thumb img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.cloffy-split__nav-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cloffy-split__nav-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--font-primary);
}

.cloffy-split__nav-meta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 230, 220, 0.55);
}

.cloffy-split__nav-item.is-active .cloffy-split__nav-meta {
  color: rgba(245, 230, 220, 0.78);
}

.cloffy-split__nav-chevron {
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #d4a574;
}

.cloffy-split__nav-item.is-active .cloffy-split__nav-chevron {
  opacity: 1;
  transform: translateX(0);
}

.cloffy-split__stage {
  position: relative;
  min-height: 420px;
}

.cloffy-split__panel {
  display: none;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 28px);
  animation: cloffy-split-in 0.35s ease;
}

.cloffy-split__panel.is-active {
  display: flex;
}

@keyframes cloffy-split-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cloffy-split__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(176, 141, 87, 0.1) 0%, transparent 55%),
    linear-gradient(135deg, #fffaf6 0%, #f5ebe3 100%);
  border: 1px solid rgba(92, 52, 40, 0.1);
  box-shadow: 0 12px 36px rgba(92, 52, 40, 0.08);
}

.cloffy-split__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-split__img-stack {
  position: relative;
  width: min(100%, 320px);
  min-height: clamp(180px, 24vw, 240px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-split__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: clamp(170px, 22vw, 220px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(92, 52, 40, 0.18));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cloffy-split__img--alt {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

.cloffy-split__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-color, #5c3428);
  font-family: var(--font-primary);
}

.cloffy-split__lead {
  margin: 0 0 16px;
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  line-height: 1.65;
  color: rgba(92, 52, 40, 0.78);
}

.cloffy-split__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cloffy-split__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(92, 52, 40, 0.82);
}

.cloffy-split__benefits li i {
  color: #9d7868;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-cloffy .cloffy-split__usp .highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 180px;
  min-height: 40px;
  padding: 10px 28px;
  font-size: clamp(0.82rem, 1.8vw, 0.95rem) !important;
  line-height: 1.45 !important;
  font-weight: 700;
  font-style: oblique;
  color: var(--white);
  white-space: nowrap;
  background: url('../assets/images/brownhighlight.png') no-repeat center center;
  background-size: 92% 74%;
}

.cloffy-split__shelf {
  background: #fffaf6;
  border: 1px solid rgba(92, 52, 40, 0.1);
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 24px) clamp(14px, 1.8vw, 20px);
  box-shadow: 0 8px 28px rgba(92, 52, 40, 0.1);
}

.cloffy-products--split .cloffy-cat-item {
  background: var(--white);
}

@media (hover: hover) and (min-width: 992px) {
  .cloffy-split__visual:hover .cloffy-split__img--primary {
    opacity: 0;
    transform: scale(0.98);
  }

  .cloffy-split__visual:hover .cloffy-split__img--alt {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
}

@media (max-width: 991px) {
  .cloffy-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cloffy-split__nav-wrap {
    position: static;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 clamp(16px, 4vw, 24px);
  }

  .cloffy-split__nav {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    padding: 12px;
  }

  .cloffy-split__nav::-webkit-scrollbar {
    display: none;
  }

  .cloffy-split__nav::before {
    display: none;
  }

  .cloffy-split__nav-item {
    flex: 0 0 auto;
    min-width: min(72vw, 260px);
    scroll-snap-align: start;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 8px 10px;
    padding: 12px 14px;
  }

  .cloffy-split__nav-num {
    grid-column: 1;
    grid-row: 1;
  }

  .cloffy-split__nav-thumb {
    grid-column: 1;
    grid-row: 2;
    width: 40px;
    height: 40px;
  }

  .cloffy-split__nav-text {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .cloffy-split__nav-chevron {
    display: none;
  }

  .cloffy-split__nav-item.is-active {
    box-shadow: inset 0 -3px 0 #d4a574;
  }

  .cloffy-split__hero {
    grid-template-columns: 1fr;
  }

  .cloffy-split__img-stack {
    min-height: 160px;
  }
}

@media (max-width: 575px) {
  .cloffy-split__shelf {
    border-radius: 14px;
    padding: 14px 10px;
  }

  .cloffy-split__hero {
    padding: 18px 16px;
    border-radius: 16px;
  }
}

/* ---- Design 4: Zigzag story (edge-to-edge alternating rows) ---- */
.cloffy-products--zigzag {
  background: #f9f4ef !important;
  padding-bottom: clamp(32px, 4vw, 48px) !important;
}

.cloffy-products--zigzag .cloffy-menu-nav__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cloffy-zigzag-stack {
  display: flex;
  flex-direction: column;
}

.cloffy-zig-row {
  scroll-margin-top: clamp(88px, 10vh, 120px);
}

.cloffy-zig-row__band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.cloffy-zig-row--light .cloffy-zig-row__band {
  background:
    radial-gradient(ellipse 50% 70% at 8% 30%, rgba(176, 141, 87, 0.1) 0%, transparent 58%),
    linear-gradient(180deg, #fffaf6 0%, #f5ebe3 100%);
  color: #5c3428;
}

.cloffy-zig-row--dark .cloffy-zig-row__band {
  background:
    radial-gradient(ellipse 45% 65% at 92% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
    linear-gradient(135deg, #3d2219 0%, #5c3428 50%, #523028 100%);
  color: #f5e6dc;
}

.cloffy-zig-row__band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(28px, 4vw, 44px);
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
  pointer-events: none;
  z-index: 2;
}

.cloffy-zig-row--reverse .cloffy-zig-row__band::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 20%);
}

.cloffy-zig-row:last-child .cloffy-zig-row__band::after {
  display: none;
}

.cloffy-zig-row__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cloffy-zig-row--reverse .cloffy-zig-row__grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
}

.cloffy-zig-row--reverse .cloffy-zig-row__visual {
  order: 2;
}

.cloffy-zig-row--reverse .cloffy-zig-row__body {
  order: 1;
}

.cloffy-zig-row__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 28vw, 320px);
}

.cloffy-zig-row__index {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.08;
  font-family: var(--font-primary);
  pointer-events: none;
  user-select: none;
}

.cloffy-zig-row--dark .cloffy-zig-row__index {
  color: #fff;
  opacity: 0.1;
}

.cloffy-zig-row--reverse .cloffy-zig-row__index {
  left: auto;
  right: 0;
}

.cloffy-zig-row__img-stack {
  position: relative;
  width: min(100%, 380px);
  min-height: clamp(200px, 26vw, 280px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-zig-row__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: clamp(190px, 24vw, 260px);
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cloffy-zig-row--light .cloffy-zig-row__img {
  filter: drop-shadow(0 18px 32px rgba(92, 52, 40, 0.16));
}

.cloffy-zig-row--dark .cloffy-zig-row__img {
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.35));
}

.cloffy-zig-row__img--alt {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

.cloffy-zig-row__body {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
  min-width: 0;
}

.cloffy-zig-row__eyebrow {
  margin: 0 0 10px;
}

.cloffy-zig-row__eyebrow span {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.cloffy-zig-row--light .cloffy-zig-row__eyebrow span {
  color: rgba(92, 52, 40, 0.75);
  background: rgba(92, 52, 40, 0.08);
  border: 1px solid rgba(92, 52, 40, 0.12);
}

.cloffy-zig-row--dark .cloffy-zig-row__eyebrow span {
  color: rgba(245, 230, 220, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cloffy-zig-row__title {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
  font-family: var(--font-primary);
}

.cloffy-zig-row--light .cloffy-zig-row__title {
  color: #5c3428;
}

.cloffy-zig-row--dark .cloffy-zig-row__title {
  color: #fffaf6;
}

.cloffy-zig-row__lead {
  margin: 0 0 16px;
  font-size: clamp(0.92rem, 1.5vw, 1.04rem);
  line-height: 1.65;
  max-width: 52ch;
}

.cloffy-zig-row--light .cloffy-zig-row__lead {
  color: rgba(92, 52, 40, 0.78);
}

.cloffy-zig-row--dark .cloffy-zig-row__lead {
  color: rgba(245, 230, 220, 0.86);
}

.cloffy-zig-row__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cloffy-zig-row__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.cloffy-zig-row--light .cloffy-zig-row__benefits li {
  color: rgba(92, 52, 40, 0.82);
}

.cloffy-zig-row--light .cloffy-zig-row__benefits li i {
  color: #9d7868;
}

.cloffy-zig-row--dark .cloffy-zig-row__benefits li {
  color: rgba(245, 230, 220, 0.9);
}

.cloffy-zig-row--dark .cloffy-zig-row__benefits li i {
  color: #d4a574;
}

.page-cloffy .cloffy-zig-row__usp .highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 180px;
  min-height: 40px;
  padding: 10px 28px;
  font-size: clamp(0.82rem, 1.8vw, 0.95rem) !important;
  line-height: 1.45 !important;
  font-weight: 700;
  font-style: oblique;
  color: var(--white);
  white-space: nowrap;
  background: url('../assets/images/brownhighlight.png') no-repeat center center;
  background-size: 92% 74%;
}

.cloffy-zig-row__shelf {
  background: #fffaf6;
  border: 1px solid rgba(92, 52, 40, 0.1);
  border-radius: 16px;
  padding: clamp(16px, 2vw, 22px) clamp(12px, 1.6vw, 18px);
  box-shadow: 0 12px 36px rgba(92, 52, 40, 0.1);
}

.cloffy-zig-row--dark .cloffy-zig-row__shelf {
  background: rgba(255, 250, 246, 0.97);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.cloffy-products--zigzag .cloffy-cat-item {
  background: var(--white);
}

.cloffy-products--zigzag .cloffy-cat-rail__arrow {
  background: #fffaf6;
  border-color: rgba(92, 52, 40, 0.14);
}

@media (hover: hover) and (min-width: 992px) {
  .cloffy-zig-row__visual:hover .cloffy-zig-row__img--primary {
    opacity: 0;
    transform: scale(0.98);
  }

  .cloffy-zig-row__visual:hover .cloffy-zig-row__img--alt {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
}

@media (max-width: 991px) {
  .cloffy-zig-row__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cloffy-zig-row--reverse .cloffy-zig-row__visual,
  .cloffy-zig-row--reverse .cloffy-zig-row__body {
    order: unset;
  }

  .cloffy-zig-row__visual {
    min-height: 180px;
  }

  .cloffy-zig-row__index {
    font-size: 3rem;
  }

  .cloffy-zig-row__band::after {
    height: 20px;
  }
}

@media (max-width: 575px) {
  .cloffy-zig-row__band {
    padding: 36px 0 44px;
  }

  .cloffy-zig-row__shelf {
    border-radius: 12px;
    padding: 12px 8px;
  }
}

/* ---- Design 5: Bento shelf (asymmetric tile grid) ---- */
.cloffy-products--bento {
  background: #f9f4ef !important;
  padding-bottom: clamp(48px, 6vw, 72px) !important;
}

.cloffy-products--bento .cloffy-menu-nav__head {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.cloffy-bento-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cloffy-bento-jump__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(92, 52, 40, 0.82);
  background: #fffaf6;
  border: 1px solid rgba(92, 52, 40, 0.12);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.cloffy-bento-jump__link:hover {
  color: #5c3428;
  border-color: rgba(92, 52, 40, 0.22);
  background: #fff;
  transform: translateY(-1px);
}

.cloffy-bento-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
}

.cloffy-bento-block {
  scroll-margin-top: clamp(88px, 10vh, 120px);
}

.cloffy-bento-block__inner {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  min-height: clamp(340px, 42vw, 420px);
}

.cloffy-bento-block--flip .cloffy-bento-block__inner {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.cloffy-bento-block--flip .cloffy-bento-hero {
  order: 2;
}

.cloffy-bento-block--flip .cloffy-bento-shelf {
  order: 1;
}

.cloffy-bento-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 20% 0%, rgba(176, 141, 87, 0.18) 0%, transparent 58%),
    linear-gradient(160deg, #3d2219 0%, #5c3428 55%, #523028 100%);
  color: #f5e6dc;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(92, 52, 40, 0.2);
}

.cloffy-bento-hero__index {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.12;
  color: #fff;
  font-family: var(--font-primary);
  pointer-events: none;
}

.cloffy-bento-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: clamp(120px, 16vw, 160px);
}

.cloffy-bento-hero__img-stack {
  position: relative;
  width: min(100%, 220px);
  min-height: clamp(110px, 14vw, 150px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-bento-hero__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: clamp(100px, 13vw, 140px);
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cloffy-bento-hero__img--alt {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

.cloffy-bento-hero__meta {
  margin: 0 0 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 230, 220, 0.65);
}

.cloffy-bento-hero__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fffaf6;
  font-family: var(--font-primary);
}

.cloffy-bento-hero__lead {
  margin: 0 0 12px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(245, 230, 220, 0.84);
}

.cloffy-bento-hero__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cloffy-bento-hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(245, 230, 220, 0.88);
}

.cloffy-bento-hero__benefits li i {
  color: #d4a574;
  flex-shrink: 0;
  margin-top: 1px;
}

.page-cloffy .cloffy-bento-hero__usp .highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 160px;
  min-height: 36px;
  padding: 8px 22px;
  font-size: 0.8rem !important;
  line-height: 1.45 !important;
  font-weight: 700;
  font-style: oblique;
  color: var(--white);
  white-space: nowrap;
  background: url('../assets/images/brownhighlight.png') no-repeat center center;
  background-size: 92% 74%;
}

.cloffy-bento-shelf {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cloffy-bento-tiles {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
  min-height: clamp(340px, 42vw, 420px);
}

.cloffy-bento-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 10px 14px;
  border-radius: 18px;
  background: #fffaf6;
  border: 1px solid rgba(92, 52, 40, 0.1);
  box-shadow: 0 8px 24px rgba(92, 52, 40, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cloffy-bento-tile--feature {
  grid-column: 1;
  grid-row: 1 / span 2;
  padding: 16px 14px 18px;
  background: linear-gradient(180deg, #fff 0%, #f5ebe3 100%);
  border-color: rgba(92, 52, 40, 0.14);
}

.cloffy-bento-tile__media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 88px;
  padding: 6px;
}

.cloffy-bento-tile--feature .cloffy-bento-tile__media {
  min-height: 120px;
}

.cloffy-bento-tile__img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cloffy-bento-tile--feature .cloffy-bento-tile__img {
  max-height: 140px;
}

.cloffy-bento-tile__name {
  margin: 8px 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  color: #5c3428;
  font-family: var(--font-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cloffy-bento-tile--feature .cloffy-bento-tile__name {
  font-size: 0.9rem;
}

.cloffy-bento-tile__buy {
  margin-top: auto;
}

.cloffy-bento-rail {
  height: 100%;
  min-height: clamp(340px, 42vw, 420px);
}

.cloffy-bento-rail .cloffy-bento-tiles--scroll {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 100%;
  min-height: inherit;
  padding: 2px 0;
}

.cloffy-bento-rail .cloffy-bento-tiles--scroll::-webkit-scrollbar {
  display: none;
}

.cloffy-bento-rail .cloffy-bento-tile {
  flex: 0 0 auto;
  width: clamp(168px, 30vw, 200px);
  min-height: clamp(300px, 38vw, 380px);
  scroll-snap-align: start;
}

.cloffy-bento-rail .cloffy-bento-tile--feature {
  width: clamp(200px, 36vw, 240px);
  grid-row: unset;
  grid-column: unset;
}

.cloffy-products--bento .cloffy-cat-rail__arrow {
  background: #fffaf6;
  border-color: rgba(97, 39, 19, 0.14);
}

@media (hover: hover) {
  .cloffy-bento-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(92, 52, 40, 0.12);
  }

  .cloffy-bento-hero__visual:hover .cloffy-bento-hero__img--primary {
    opacity: 0;
    transform: scale(0.98);
  }

  .cloffy-bento-hero__visual:hover .cloffy-bento-hero__img--alt {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
}

@media (max-width: 991px) {
  .cloffy-bento-block__inner,
  .cloffy-bento-block--flip .cloffy-bento-block__inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .cloffy-bento-block--flip .cloffy-bento-hero,
  .cloffy-bento-block--flip .cloffy-bento-shelf {
    order: unset;
  }

  .cloffy-bento-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    min-height: unset;
  }

  .cloffy-bento-tile--feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .cloffy-bento-rail,
  .cloffy-bento-rail .cloffy-bento-tiles--scroll {
    min-height: 320px;
  }

  .cloffy-bento-rail .cloffy-bento-tile {
    min-height: 300px;
    width: min(72vw, 200px);
  }

  .cloffy-bento-rail .cloffy-bento-tile--feature {
    width: min(78vw, 220px);
  }
}

@media (max-width: 575px) {
  .cloffy-bento-jump {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .cloffy-bento-jump::-webkit-scrollbar {
    display: none;
  }

  .cloffy-bento-jump__link {
    flex: 0 0 auto;
  }

  .cloffy-bento-tiles {
    grid-template-columns: 1fr;
  }

  .cloffy-bento-hero {
    border-radius: 16px;
  }

  .cloffy-bento-tile {
    border-radius: 14px;
  }
}

/* ---- Design 6: Sticky coffee bar shelf ---- */
.cloffy-products--bar {
  background: #f9f4ef !important;
  padding-bottom: clamp(48px, 6vw, 72px) !important;
}

.cloffy-products--bar .cloffy-menu-nav__head {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.cloffy-bar-sticky-wrap {
  position: relative;
  z-index: 20;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.cloffy-bar-sticky {
  position: sticky;
  top: clamp(72px, 8vh, 96px);
  padding: 12px 0;
  background:
    linear-gradient(180deg, rgba(249, 244, 239, 0.98) 0%, rgba(249, 244, 239, 0.94) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 52, 40, 0.1);
  box-shadow: 0 10px 28px rgba(92, 52, 40, 0.08);
}

.cloffy-bar-sticky::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #3d2219 0%, #7a4a3a 35%, #9d7868 50%, #7a4a3a 65%, #3d2219 100%);
  opacity: 0.85;
}

.cloffy-bar-menu {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding-top: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cloffy-bar-menu::-webkit-scrollbar {
  display: none;
}

.cloffy-bar-menu__tab {
  flex: 1 1 0;
  min-width: min(140px, 28vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px 14px;
  border: 1px solid rgba(92, 52, 40, 0.12);
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, #fffaf6 0%, #f0e4d8 100%);
  color: rgba(92, 52, 40, 0.82);
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 4px 0 rgba(92, 52, 40, 0.08);
}

.cloffy-bar-menu__tab:hover {
  border-color: rgba(92, 52, 40, 0.22);
  transform: translateY(-2px);
}

.cloffy-bar-menu__tab.is-active {
  background: linear-gradient(180deg, #523028 0%, #5c3428 100%);
  border-color: rgba(212, 165, 116, 0.45);
  color: #fffaf6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 6px 0 rgba(61, 34, 25, 0.35),
    0 12px 24px rgba(92, 52, 40, 0.2);
}

.cloffy-bar-menu__thumb {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(92, 52, 40, 0.08);
  overflow: hidden;
}

.cloffy-bar-menu__tab.is-active .cloffy-bar-menu__thumb {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
}

.cloffy-bar-menu__thumb img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}

.cloffy-bar-menu__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.2;
  font-family: var(--font-primary);
}

.cloffy-bar-sections {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 72px);
}

.cloffy-bar-section {
  scroll-margin-top: calc(clamp(72px, 8vh, 96px) + 88px);
}

.cloffy-bar-section__header {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffaf6 0%, #f5ebe3 100%);
  border: 1px solid rgba(92, 52, 40, 0.1);
  box-shadow: 0 10px 28px rgba(92, 52, 40, 0.06);
}

.cloffy-bar-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-bar-section__img-stack {
  position: relative;
  width: min(100%, 180px);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-bar-section__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(92, 52, 40, 0.14));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cloffy-bar-section__img--alt {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

.cloffy-bar-section__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(92, 52, 40, 0.6);
}

.cloffy-bar-section__num {
  color: #9d7868;
}

.cloffy-bar-section__title {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  color: #5c3428;
  font-family: var(--font-primary);
}

.cloffy-bar-section__lead {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(92, 52, 40, 0.78);
  max-width: 58ch;
}

.cloffy-bar-section__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.cloffy-bar-section__benefits li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(92, 52, 40, 0.82);
}

.cloffy-bar-section__benefits li i {
  color: #9d7868;
}

.page-cloffy .cloffy-bar-section__usp .highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 170px;
  min-height: 38px;
  padding: 9px 24px;
  font-size: 0.82rem !important;
  line-height: 1.45 !important;
  font-weight: 700;
  font-style: oblique;
  color: var(--white);
  white-space: nowrap;
  background: url('../assets/images/brownhighlight.png') no-repeat center center;
  background-size: 92% 74%;
}

.cloffy-bar-section__shelf {
  position: relative;
  padding-top: 18px;
}

.cloffy-bar-section__plank {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  border-radius: 4px 4px 2px 2px;
  background:
    linear-gradient(180deg, #a67c52 0%, #9d7868 35%, #7a4a3a 100%);
  box-shadow:
    0 2px 0 #5a3824,
    0 8px 20px rgba(92, 52, 40, 0.18);
}

.cloffy-bar-section__plank::after {
  content: "";
  position: absolute;
  inset: 2px 8px auto;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.cloffy-bar-section__products {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 2.8vw, 30px) clamp(12px, 1.6vw, 18px) clamp(14px, 1.8vw, 18px);
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #ebe0d4 0%, #f5ebe3 28%, #fffaf6 100%);
  border: 1px solid rgba(92, 52, 40, 0.1);
  border-top: none;
  box-shadow: 0 16px 36px rgba(92, 52, 40, 0.1);
}

.cloffy-products--bar .cloffy-bar-product {
  background: var(--white);
  box-shadow: 0 6px 18px rgba(92, 52, 40, 0.08);
}

.cloffy-products--bar .cloffy-bar-rail .cloffy-cat-rail__arrow {
  background: #fffaf6;
}

@media (hover: hover) {
  .cloffy-bar-section__visual:hover .cloffy-bar-section__img--primary {
    opacity: 0;
    transform: scale(0.98);
  }

  .cloffy-bar-section__visual:hover .cloffy-bar-section__img--alt {
    opacity: 1;
    transform: translateY(-3px) scale(1.02);
  }
}

@media (max-width: 767px) {
  .cloffy-bar-menu__tab {
    flex: 0 0 auto;
    min-width: 108px;
    padding: 10px 8px 12px;
  }

  .cloffy-bar-menu__thumb {
    width: 38px;
    height: 38px;
  }

  .cloffy-bar-menu__label {
    font-size: 0.72rem;
  }

  .cloffy-bar-section__header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cloffy-bar-section__benefits {
    justify-content: center;
  }

  .cloffy-bar-section__img-stack {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .cloffy-bar-sticky {
    top: 64px;
    padding: 10px 0;
  }

  .cloffy-bar-section {
    scroll-margin-top: 148px;
  }

  .cloffy-bar-section__header {
    padding: 16px;
    border-radius: 14px;
  }

  .cloffy-bar-section__products {
    border-radius: 0 0 12px 12px;
    padding: 18px 8px 12px;
  }
}

/* ---- Design 7: Accordion panels ---- */
.cloffy-products--accordion {
  background: #f9f4ef !important;
  padding-bottom: clamp(48px, 6vw, 72px) !important;
}

.cloffy-products--accordion .cloffy-menu-nav__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cloffy-acc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cloffy-acc-item {
  scroll-margin-top: clamp(88px, 10vh, 120px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(92, 52, 40, 0.12);
  background: #fffaf6;
  box-shadow: 0 8px 24px rgba(92, 52, 40, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.cloffy-acc-item.is-open {
  border-color: rgba(92, 52, 40, 0.18);
  box-shadow: 0 16px 40px rgba(92, 52, 40, 0.12);
}

.cloffy-acc-item__heading {
  margin: 0;
}

.cloffy-acc-trigger {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: linear-gradient(180deg, #fff 0%, #f8f0ea 100%);
  color: #5c3428;
  text-align: left;
  cursor: pointer;
  transition: background 0.22s ease;
}

.cloffy-acc-item.is-open .cloffy-acc-trigger {
  background: linear-gradient(135deg, #523028 0%, #5c3428 100%);
  color: #fffaf6;
}

.cloffy-acc-trigger__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(92, 52, 40, 0.45);
}

.cloffy-acc-item.is-open .cloffy-acc-trigger__num {
  color: rgba(245, 230, 220, 0.65);
}

.cloffy-acc-trigger__thumb {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(92, 52, 40, 0.1);
  overflow: hidden;
}

.cloffy-acc-item.is-open .cloffy-acc-trigger__thumb {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
}

.cloffy-acc-trigger__thumb img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.cloffy-acc-trigger__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cloffy-acc-trigger__title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font-primary);
}

.cloffy-acc-trigger__meta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}

.cloffy-acc-trigger__icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  color: #9d7868;
}

.cloffy-acc-item.is-open .cloffy-acc-trigger__icon {
  transform: rotate(180deg);
  color: #d4a574;
}

.cloffy-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}

.cloffy-acc-item.is-open .cloffy-acc-panel {
  grid-template-rows: 1fr;
}

.cloffy-acc-panel__inner {
  overflow: hidden;
  min-height: 0;
}

.cloffy-acc-item.is-open .cloffy-acc-panel__inner {
  padding: 0 18px 20px;
}

.cloffy-acc-hero {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  align-items: center;
  padding: clamp(16px, 2vw, 20px);
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5ebe3 0%, #fffaf6 100%);
  border: 1px solid rgba(92, 52, 40, 0.08);
}

.cloffy-acc-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-acc-hero__img-stack {
  position: relative;
  width: min(100%, 160px);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-acc-hero__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 115px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(92, 52, 40, 0.12));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cloffy-acc-hero__img--alt {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

.cloffy-acc-hero__lead {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(92, 52, 40, 0.78);
}

.cloffy-acc-hero__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cloffy-acc-hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(92, 52, 40, 0.82);
}

.cloffy-acc-hero__benefits li i {
  color: #9d7868;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-cloffy .cloffy-acc-hero__usp .highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 160px;
  min-height: 36px;
  padding: 8px 22px;
  font-size: 0.8rem !important;
  line-height: 1.45 !important;
  font-weight: 700;
  font-style: oblique;
  color: var(--white);
  white-space: nowrap;
  background: url('../assets/images/brownhighlight.png') no-repeat center center;
  background-size: 92% 74%;
}

.cloffy-acc-shelf {
  padding: clamp(14px, 1.8vw, 18px);
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(92, 52, 40, 0.08);
}

.cloffy-products--accordion .cloffy-cat-item {
  background: #fffaf6;
}

.cloffy-products--accordion .cloffy-acc-rail .cloffy-cat-rail__arrow {
  background: #fffaf6;
}

@media (hover: hover) {
  .cloffy-acc-trigger:hover {
    filter: brightness(1.02);
  }

  .cloffy-acc-hero__visual:hover .cloffy-acc-hero__img--primary {
    opacity: 0;
    transform: scale(0.98);
  }

  .cloffy-acc-hero__visual:hover .cloffy-acc-hero__img--alt {
    opacity: 1;
    transform: translateY(-3px) scale(1.02);
  }
}

@media (max-width: 767px) {
  .cloffy-acc-trigger {
    grid-template-columns: auto 1fr auto;
    padding: 14px 14px;
    gap: 10px;
  }

  .cloffy-acc-trigger__num {
    display: none;
  }

  .cloffy-acc-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cloffy-acc-item.is-open .cloffy-acc-panel__inner {
    padding: 0 12px 16px;
  }
}

@media (max-width: 575px) {
  .cloffy-acc-item {
    border-radius: 14px;
  }

  .cloffy-acc-trigger__thumb {
    width: 44px;
    height: 44px;
  }

  .cloffy-acc-shelf {
    padding: 10px 8px;
    border-radius: 12px;
  }
}

/* ---- Active layout: stacked category sections (no tabs) ---- */
.cloffy-products--stack {
  background: #f9f4ef !important;
  padding-bottom: clamp(48px, 6vw, 72px) !important;
  position: relative;
  overflow: hidden;
}

.cloffy-products--stack > .container {
  position: relative;
  z-index: 1;
}

.cloffy-products--stack .cloffy-menu-nav__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cloffy-products--stack .cloffy-cat-stack {
  margin-top: 0;
}

.cloffy-products--stack .cloffy-cat-section {
  scroll-margin-top: clamp(88px, 10vh, 120px);
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid rgba(92, 52, 40, 0.08);
}

.cloffy-products--stack .cloffy-cat-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cloffy-products--stack .cloffy-cat-item {
  background: var(--white);
}

/* ---- Open category sections (no per-category cards) ---- */
.cloffy-cat-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(36px, 4vw, 52px);
}

.cloffy-cat-section {
  padding: clamp(40px, 5vw, 68px) 0;
  border-bottom: 1px solid rgba(92, 52, 40, 0.12);
}

.cloffy-products--tabs .cloffy-cat-section {
  padding: 0;
  border-bottom: none;
}

.cloffy-cat-section:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.cloffy-products--tabs .cloffy-cat-section:last-child {
  padding-bottom: 0;
}

.cloffy-cat-section__hero {
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.cloffy-products--stack .cloffy-cat-section--reverse .cloffy-cat-section__copy {
  margin-left: auto;
  max-width: 520px;
}

@media (min-width: 992px) {
  .cloffy-products--stack .cloffy-cat-section:not(.cloffy-cat-section--reverse) .cloffy-cat-section__copy {
    max-width: 520px;
  }
}

.cloffy-cat-section__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.5vw, 28px);
  background:
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(230, 197, 170, 0.35) 0%, transparent 68%),
    linear-gradient(145deg, #fffaf6 0%, #f3e8de 100%);
  border-radius: 20px;
  border: 1px solid rgba(92, 52, 40, 0.08);
}

.cloffy-cat-section__img-stack {
  position: relative;
  width: min(100%, 420px);
  min-height: clamp(240px, 34vw, 320px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloffy-cat-section__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: clamp(220px, 32vw, 300px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(92, 52, 40, 0.16));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cloffy-cat-section__img--alt {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

.cloffy-cat-section__title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cloffy-brown);
  font-family: var(--font-primary);
}

.cloffy-cat-section__lead {
  margin: 0 0 18px;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  color: #5c4a44;
  max-width: 52ch;
}

.cloffy-cat-section__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cloffy-cat-section__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #5c4a44;
}

.cloffy-cat-section__benefits li i {
  color: var(--cloffy-brown-mid);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-cloffy .cloffy-cat-section__usp .highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 200px;
  min-height: 42px;
  padding: 12px 36px;
  font-size: clamp(0.85rem, 2vw, 1rem) !important;
  line-height: 1.45 !important;
  font-weight: 700;
  font-style: oblique;
  color: var(--white);
  white-space: nowrap;
  background: url('../assets/images/brownhighlight.png') no-repeat center center;
  background-size: 92% 74%;
  transition: opacity 0.3s ease;
}

.cloffy-cat-section__shop {
  padding-top: 4px;
}

@media (hover: hover) and (min-width: 992px) {
  .cloffy-cat-section__visual:hover .cloffy-cat-section__img--primary {
    opacity: 0;
    transform: scale(0.98);
  }

  .cloffy-cat-section__visual:hover .cloffy-cat-section__img--alt {
    opacity: 1;
    transform: translateY(-6px) scale(1.03);
  }

  #product-chocolates .cloffy-cat-section__visual:hover .cloffy-cat-section__img--primary {
    opacity: 1;
    transform: none;
  }

  #product-chocolates .cloffy-cat-section__visual:hover .cloffy-cat-section__img--alt {
    opacity: 0;
    transform: none;
  }
}

.cloffy-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 16px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

@media (min-width: 768px) {
  .cloffy-cat-grid:not(.cloffy-cat-grid--scroll) {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
  }
}

/* Center products when a category has few of them (non-scroll grid) */
.cloffy-products--stack .cloffy-cat-section__products {
  width: 100%;
}

.cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll) {
  --cloffy-cat-gap: clamp(12px, 1.4vw, 18px);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--cloffy-cat-gap);
  width: 100%;
}

.cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll) .cloffy-cat-item {
  flex: 0 0 calc((100% - 3 * var(--cloffy-cat-gap)) / 4);
  width: calc((100% - 3 * var(--cloffy-cat-gap)) / 4);
  max-width: 230px;
  min-width: 0;
}

.cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="3"] .cloffy-cat-item {
  flex-basis: calc((100% - 2 * var(--cloffy-cat-gap)) / 3);
  width: calc((100% - 2 * var(--cloffy-cat-gap)) / 3);
}

.cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="2"] .cloffy-cat-item {
  flex-basis: calc((100% - var(--cloffy-cat-gap)) / 2);
  width: calc((100% - var(--cloffy-cat-gap)) / 2);
  max-width: 280px;
}

.cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="1"] .cloffy-cat-item {
  flex-basis: min(100%, 280px);
  width: min(100%, 280px);
  max-width: 280px;
}

@media (min-width: 768px) {
  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll) {
    --cloffy-cat-gap: 18px;
  }
}

@media (max-width: 991px) {
  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="2"],
  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="3"],
  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="4"] {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="2"]::-webkit-scrollbar,
  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="3"]::-webkit-scrollbar,
  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="4"]::-webkit-scrollbar {
    display: none;
  }

  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="2"] .cloffy-cat-item,
  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="3"] .cloffy-cat-item,
  .cloffy-products--stack .cloffy-cat-grid:not(.cloffy-cat-grid--scroll)[data-cloffy-count="4"] .cloffy-cat-item {
    flex: 0 0 min(78vw, 220px);
    width: min(78vw, 220px);
    max-width: none;
    scroll-snap-align: start;
  }

  .cloffy-products--stack .cloffy-cat-rail__arrow {
    display: none;
  }

  .cloffy-products--stack .cloffy-cat-rail {
    gap: 0;
  }
}

/* Horizontal rail + arrows when a category has more than 4 products */
.cloffy-cat-rail {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.cloffy-cat-rail .cloffy-cat-grid--scroll {
  flex: 1;
  min-width: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.cloffy-cat-rail__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(92, 52, 40, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--cloffy-brown);
  box-shadow: 0 4px 14px rgba(92, 52, 40, 0.1);
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    visibility 0.25s ease;
}

.cloffy-cat-rail__arrow .bi {
  font-size: 1.35rem;
  line-height: 1;
}

.cloffy-cat-rail__arrow:hover {
  border-color: var(--cloffy-brown);
  box-shadow: 0 6px 18px rgba(92, 52, 40, 0.14);
  transform: translateY(-1px);
}

.cloffy-cat-rail__arrow.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cloffy-cat-grid--scroll {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 4px;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cloffy-cat-grid--scroll::-webkit-scrollbar {
  display: none;
}

.cloffy-cat-grid--scroll .cloffy-cat-item {
  flex: 0 0 auto;
  width: clamp(188px, 32vw, 220px);
  scroll-snap-align: start;
}

.cloffy-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
  background: #fdfaf7;
  border: 1px solid rgba(92, 52, 40, 0.1);
  border-radius: 12px;
  box-shadow: 0 2px 0 rgba(92, 52, 40, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cloffy-cat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(92, 52, 40, 0.18);
  box-shadow: 0 8px 22px rgba(92, 52, 40, 0.1);
}

.cloffy-cat-item__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 188px;
  margin-bottom: 8px;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.cloffy-cat-item__media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62%, 112px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 50% 42%,
    rgba(255, 252, 248, 0.98) 0%,
    rgba(230, 197, 170, 0.42) 52%,
    rgba(212, 165, 116, 0.16) 72%,
    transparent 88%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 0 0 20px rgba(255, 255, 255, 0.45);
  z-index: 0;
  pointer-events: none;
}

.cloffy-cat-grid--scroll .cloffy-cat-item__media {
  height: 208px;
  padding: 0;
}

.cloffy-cat-grid--scroll .cloffy-cat-item__media::before {
  width: min(64%, 118px);
}

.cloffy-cat-item__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 188px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cloffy-cat-grid--scroll .cloffy-cat-item__img {
  max-height: 208px;
}

.cloffy-cat-item__name {
  flex: 1;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 10px;
  font-size: clamp(13px, 2.4vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--cloffy-brown-soft);
  font-family: inherit;
}

.cloffy-cat-item__buy {
  width: 100%;
  margin-top: auto;
  padding: 0 10px 12px;
}

.cloffy-cat-item .shop-btn--compact {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow:
    0 3px 0 var(--shop-btn-accent),
    0 6px 16px var(--shop-btn-ring);
}

.cloffy-cat-item .shop-btn--compact .shop-btn__text {
  font-size: 11px;
  letter-spacing: 0.1em;
}

.cloffy-cat-item .shop-btn--compact .shop-btn__cart {
  width: 22px;
  height: 22px;
  margin-left: 8px;
}

.cloffy-cat-item .shop-btn--compact .shop-btn__cart .bi {
  font-size: 16px;
}

.cloffy-cat-item .shop-btn--compact:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 0 var(--shop-btn-accent),
    0 10px 22px var(--shop-btn-ring);
}

@media (max-width: 575px) {
  .cloffy-prod-tabs__tab {
    padding: 10px 16px;
    font-size: 0.74rem;
  }

  .cloffy-prod-tabs__nav-wrap {
    top: calc(var(--announcement-bar-height, 0px) + var(--site-header-height, 64px) + 4px);
  }

  .cloffy-cat-section {
    padding: 32px 0;
  }

  .cloffy-products--tabs .cloffy-cat-section {
    padding: 0;
  }

  .cloffy-cat-section__visual {
    border-radius: 16px;
  }

  .cloffy-cat-section__img-stack {
    min-height: 220px;
  }

  .cloffy-cat-rail {
    gap: 6px;
  }

  .cloffy-cat-rail__arrow {
    width: 38px;
    height: 38px;
  }

  .cloffy-cat-rail__arrow .bi {
    font-size: 1.15rem;
  }

  .cloffy-cat-grid--scroll .cloffy-cat-item {
    width: min(72vw, 210px);
  }

  .cloffy-cat-item__media {
    height: 168px;
  }

  .cloffy-cat-item__media::before {
    width: min(58%, 100px);
  }

  .cloffy-cat-grid--scroll .cloffy-cat-item__media {
    height: 184px;
  }

  .cloffy-cat-grid--scroll .cloffy-cat-item__media::before {
    width: min(60%, 104px);
  }

  .cloffy-cat-item__img {
    max-height: 168px;
  }

  .cloffy-cat-grid--scroll .cloffy-cat-item__img {
    max-height: 184px;
  }
}

/* ---- Journey polaroids ---- */
.cloffy-journey {
  position: relative;
  padding: 72px 0 32px !important;
  background: #f0e6dc !important;
}

.cloffy-journey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--cloffy-brown) 0, var(--cloffy-brown) 20px, var(--cloffy-warm) 20px, var(--cloffy-warm) 40px);
  opacity: 0.25;
  transform: none;
  width: auto;
  height: 6px;
}

.cloffy-polaroid {
  background: var(--white);
  border: none;
  border-radius: 2px;
  padding: 12px 12px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(92, 52, 40, 0.12);
  transform: rotate(-2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
}

.cloffy-journey .owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.cloffy-journey .owl-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

.cloffy-journey .owl-carousel .owl-item {
  display: flex !important;
  float: none;
}

.cloffy-journey__strip .item {
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 14px 8px 20px;
}

.cloffy-journey__strip .item:nth-child(even) .cloffy-polaroid {
  transform: rotate(2deg);
}

.cloffy-journey__strip .item:hover .cloffy-polaroid {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 24px 48px rgba(92, 52, 40, 0.2);
}

.cloffy-polaroid .card-img-top {
  height: 180px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 1px;
}

.cloffy-polaroid .card-body {
  padding: 14px 4px 0;
  border: none;
  background: transparent;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cloffy-polaroid .card-text {
  font-size: 14px;
  font-style: italic;
  text-align: center;
  margin: 0;
}

.cloffy-journey .owl-carousel .owl-nav button.owl-prev,
.cloffy-journey .owl-carousel .owl-nav button.owl-next {
  background: var(--cloffy-espresso) !important;
  border-radius: 4px !important;
  width: 40px;
  height: 40px;
}

.cloffy-journey .owl-carousel .owl-nav button.owl-prev span,
.cloffy-journey .owl-carousel .owl-nav button.owl-next span {
  color: var(--cloffy-warm) !important;
  font-size: 22px;
}

/* ---- CTA band ---- */
.cloffy-cta-band {
  padding: 0;
  background: var(--cloffy-brown-dark);
  position: relative;
  overflow: hidden;
}

.cloffy-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(230, 197, 170, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(230, 197, 170, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.cloffy-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

.cloffy-cta-band__copy h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.cloffy-cta-band__copy p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 480px;
}

.cloffy-cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cloffy-warm);
  color: var(--cloffy-brown-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cloffy-cta-band__btn:hover {
  background: var(--white);
  color: var(--cloffy-brown);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* ---- Voices testimonials ---- */
.cloffy-voices {
  padding: 40px 0 96px !important;
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(230, 197, 170, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 88% 82%, rgba(230, 197, 170, 0.28) 0%, transparent 50%),
    linear-gradient(180deg, var(--cloffy-cream) 0%, #f9f4ef 45%, var(--cloffy-cream-deep) 100%) !important;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.cloffy-voices::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 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='%235c3428' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cloffy-voices::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(92, 52, 40, 0.12), rgba(230, 197, 170, 0.45), rgba(92, 52, 40, 0.12), transparent);
  pointer-events: none;
}

.cloffy-voices .container {
  position: relative;
  z-index: 1;
}

.cloffy-voices__head {
  text-align: center;
  max-width: 640px;
  margin:  auto;
}

.cloffy-voices__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cloffy-brown-mid);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(92, 52, 40, 0.12);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 18px;
}

.cloffy-voices__eyebrow i {
  font-size: 14px;
}

.cloffy-voices__head .heading {
  color: var(--cloffy-brown) !important;
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin-bottom: 12px;
}

.cloffy-voices__head > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--cloffy-brown-soft);
  margin: 0 auto;
}

.cloffy-voices__stats {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(92, 52, 40, 0.1);
  border-radius: 999px;
}

.cloffy-voices__stat {
  font-size: 13px;
  color: var(--cloffy-brown-soft);
  letter-spacing: 0.02em;
}

.cloffy-voices__stat strong {
  color: var(--cloffy-warm);
  font-size: 15px;
  font-weight: 800;
  margin-right: 4px;
}

.cloffy-voices__stat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cloffy-warm-deep);
  opacity: 0.8;
}

.cloffy-voices__carousel {
  padding-top: 8px;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part {
  position: relative;
  background: linear-gradient(180deg, #fffdfb 0%, #faf6f1 100%) !important;
  padding: 28px 26px 22px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(230, 197, 170, 0.35) !important;
  border-left: none !important;
  border-top: none !important;
  box-shadow: 0 12px 32px var(--cloffy-shadow) !important;
  overflow: visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cloffy-brown), var(--cloffy-warm-deep), var(--cloffy-brown));
  border-radius: 16px 16px 0 0;
  z-index: 2;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cloffy-brown), var(--cloffy-warm-deep), var(--cloffy-brown));
  border-radius: 16px 0 0 16px;
  pointer-events: none;
  z-index: 1;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px var(--cloffy-shadow-lg) !important;
  border-color: rgba(230, 197, 170, 0.55) !important;
}

.cloffy-voices__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.cloffy-voices .cloffy-quote {
  display: block !important;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(92, 52, 40, 0.12);
  flex-shrink: 0;
}

.cloffy-voices__stars {
  color: var(--cloffy-warm-deep);
  font-size: 13px;
  letter-spacing: 2px;
  margin: 4px 0 0;
  flex-shrink: 0;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part,
.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part .name h3,
.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part .name p,
.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part .info-text {
  color: #5c4a44 !important;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part .name h3 {
  color: var(--cloffy-brown) !important;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part .name p {
  color: var(--cloffy-brown-soft) !important;
}

.cloffy-voices .owl-carousel .owl-stage-outer {
  overflow: hidden;
  padding: 8px 0 16px;
}

.cloffy-voices .owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.cloffy-voices .owl-carousel .owl-item {
  display: flex;
  float: none;
}

.cloffy-voices .item {
  display: flex;
  flex: 1;
  width: 100%;
  padding-top: 4px;
}

.cloffy-voices .testimonial {
  display: flex;
  flex: 1;
  width: 100%;
}

.cloffy-voices .testimonial .info-part {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part .info-text {
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
  margin: 0 0 20px;
  padding-left: 2px;
}

.cloffy-voices__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(92, 52, 40, 0.08);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.cloffy-voices .cloffy-testimonial__avatar {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--cloffy-brown) 0%, var(--cloffy-brown-mid) 100%);
  box-shadow: 0 4px 12px rgba(92, 52, 40, 0.25);
  border: 2px solid rgba(230, 197, 170, 0.5);
}

.cloffy-voices__author .name {
  text-align: left;
  flex: 1;
  min-width: 0;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part .name h3 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.3;
}

.page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part .name p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0;
}

.cloffy-voices .owl-carousel .owl-nav button.owl-prev,
.cloffy-voices .owl-carousel .owl-nav button.owl-next {
  background: var(--white) !important;
  border: 1px solid rgba(92, 52, 40, 0.14) !important;
  border-radius: 50% !important;
  width: 44px;
  height: 44px;
  box-shadow: 0 4px 14px var(--cloffy-shadow);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cloffy-voices .owl-carousel .owl-nav button.owl-prev:hover,
.cloffy-voices .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--cloffy-brown) !important;
  border-color: var(--cloffy-brown) !important;
  transform: scale(1.06);
  box-shadow: 0 6px 18px var(--cloffy-shadow-lg);
}

.cloffy-voices .owl-carousel .owl-nav button.owl-prev span,
.cloffy-voices .owl-carousel .owl-nav button.owl-next span {
  color: var(--cloffy-brown) !important;
  font-size: 24px;
}

.cloffy-voices .owl-carousel .owl-nav button.owl-prev:hover span,
.cloffy-voices .owl-carousel .owl-nav button.owl-next:hover span {
  color: var(--cloffy-warm) !important;
}

.cloffy-voices .owl-carousel .owl-nav button.owl-prev {
  left: -8px;
}

.cloffy-voices .owl-carousel .owl-nav button.owl-next {
  right: -8px;
}

.cloffy-voices .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.cloffy-voices .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: rgba(92, 52, 40, 0.18) !important;
  border-radius: 50%;
  transform: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cloffy-voices .owl-dots .owl-dot.active {
  background: var(--cloffy-brown) !important;
  transform: scale(1.35);
}

@media screen and (max-width: 991px) {
  .cloffy-crema__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cloffy-menu-card .content {
    text-align: center;
    margin: 0 !important;
  }

  .cloffy-menu-card .cloffy-product__benefits {
    align-items: center;
  }

  .cloffy-cta-band__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }

  .cloffy-cta-band__btn {
    width: 100%;
    justify-content: center;
  }

  .cloffy-voices__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .cloffy-voices .owl-carousel .owl-nav button.owl-prev { left: 0; }
  .cloffy-voices .owl-carousel .owl-nav button.owl-next { right: 0; }

  /* Auto-cycle product images — no hover on tablet/mobile */
  .cloffy-product__visual--cup .cloffy-product__img {
    transition: none;
  }

  .cloffy-product__visual--cup .cloffy-product__img--primary {
    animation: cloffy-product-img-primary-cycle 5s ease-in-out infinite;
  }

  .cloffy-product__visual--cup .cloffy-product__img--alt {
    animation: cloffy-product-img-alt-cycle 5s ease-in-out infinite;
  }

  .cloffy-menu-card:nth-child(2) .cloffy-product__img--primary,
  .cloffy-menu-card:nth-child(2) .cloffy-product__img--alt {
    animation-delay: -1.25s;
  }

  .cloffy-menu-card:nth-child(3) .cloffy-product__img--primary,
  .cloffy-menu-card:nth-child(3) .cloffy-product__img--alt {
    animation-delay: -2.5s;
  }

  .cloffy-menu-card:nth-child(4) .cloffy-product__img--primary,
  .cloffy-menu-card:nth-child(4) .cloffy-product__img--alt {
    animation-delay: -3.75s;
  }

  .cloffy-menu-card:nth-child(5) .cloffy-product__img--primary,
  .cloffy-menu-card:nth-child(5) .cloffy-product__img--alt {
    animation-delay: -0.75s;
  }
}

@media screen and (max-width: 767px) {
  .cloffy-intro {
    padding: clamp(48px, 8vw, 64px) clamp(20px, 5vw, 28px);
  }

  .cloffy-products.products-sec {
    padding: 40px 0 48px !important;
  }

  .cloffy-menu-stack {
    gap: 24px;
  }

  .cloffy-products.products-sec .products.cloffy-menu-card {
    padding: 24px 0 !important;
    margin: 0;
    border-radius: 10px;
  }

  .cloffy-crema__track {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0;
  }

  .cloffy-menu-scroll__item {
    flex: 0 0 170px;
  }

  .cloffy-product__visual--cup .imagepart {
    padding: 16px 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cloffy-product__img-stack {
    max-width: none;
    min-height: 220px;
    margin-inline: auto;
  }

  .cloffy-product__visual--cup .cloffy-product__img {
    max-height: 300px;
    width: auto;
    max-width: 92%;
    margin-inline: auto;
  }

  .cloffy-product__visual--cup .imagepart::before {
    width: min(280px, 92%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .cloffy-menu-card h3 {
    font-size: 1.35rem;
  }

  .cloffy-menu-card .description {
    font-size: 15px;
  }

  .page-cloffy .cloffy-menu-card .usp-sec.cloffy-product__usp .highlight {
    min-width: 0;
    max-width: 100%;
    padding: 12px 28px;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    white-space: normal;
    text-align: center;
  }

  .cloffy-menu-card .btn-part a {
    width: 100%;
    justify-content: center;
  }

  .cloffy-voices {
    padding: 32px 0 72px !important;
  }

  .cloffy-voices__head {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 575px) {
  .cloffy-menu-card__num {
    font-size: 2.5rem;
    top: 12px;
    right: 16px;
  }

  .cloffy-menu-scroll__item {
    flex: 0 0 150px;
  }

  .cloffy-product__img-stack {
    min-height: 240px;
  }

  .cloffy-product__visual--cup .cloffy-product__img {
    max-height: 260px;
  }

  .page-cloffy .cloffy-menu-card .usp-sec.cloffy-product__usp .highlight {
    padding: 10px 20px;
    font-size: 0.85rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cloffy-marquee__track {
    animation: none;
  }

  .cloffy-product__visual--cup .imagepart::before,
  .cloffy-product__visual--cup .imagepart::after {
    animation: none;
  }

  .cloffy-product__visual--cup .cloffy-product__img--primary,
  .cloffy-product__visual--cup .cloffy-product__img--alt {
    animation: none !important;
  }

  .cloffy-product__visual--cup .cloffy-product__img--alt {
    opacity: 0;
  }

  .page-cloffy .cloffy-voices.testimonials-sec .testimonial .info-part:hover {
    transform: none;
  }
}
