:root {
  --fotta-orange: #ec8700;
  --fotta-green: #9bdf27;
  --fotta-lime: #d6df27;
  --fotta-sage: #c0cebf;
  --fotta-ink: #172014;
  --fotta-soft-ink: #435041;
  --fotta-paper: #fffdf4;
  --fotta-cream: #f7f8ea;
  --fotta-card: #ffffff;
  --fotta-line: rgba(23, 32, 20, 0.1);
  --fotta-shadow-sm: 0 10px 26px rgba(23, 32, 20, 0.08);
  --fotta-shadow-md: 0 18px 46px rgba(23, 32, 20, 0.13);
  --fotta-shadow-color: 0 20px 46px rgba(236, 135, 0, 0.2);
}

.fotta-product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 36px;
  background: #f3f4ee;
  color: var(--fotta-ink);
}

.fotta-product-card__media {
  position: sticky;
  top: 120px;
}

.fotta-product-card__content {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.fotta-product-card__eyebrow {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--fotta-lime);
  color: var(--fotta-ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.fotta-product-card__title {
  margin: 0;
  color: var(--fotta-ink);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 950;
  line-height: 0.94;
}

.fotta-product-card__description {
  max-width: 58ch;
  color: var(--fotta-soft-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
}

.fotta-product-card__description p {
  margin: 0;
}

.fotta-pack-selector,
.fotta-pack-grid {
  color: var(--fotta-ink);
}

.fotta-pack-selector *,
.fotta-pack-grid * {
  box-sizing: border-box;
}

.fotta-pack-selector {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(20px, 3.2vw, 34px);
  border: 1px solid rgba(23, 32, 20, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 16%, rgba(214, 223, 39, 0.92) 0 12%, transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(155, 223, 39, 0.34) 0 18%, transparent 40%),
    linear-gradient(135deg, #ffd018 0%, #ffd51f 38%, #f6b51b 100%);
  box-shadow: var(--fotta-shadow-md);
}

.fotta-product-card .fotta-pack-selector {
  width: 100%;
}

.fotta-product-card .fotta-pack-selector__title {
  display: none;
}

.fotta-pack-selector::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(23, 32, 20, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(23, 32, 20, 0.2) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(115deg, rgba(0, 0, 0, 0.75), transparent 68%);
}

.fotta-pack-selector::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -22%;
  z-index: -1;
  width: min(360px, 48vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.58) 0 18%, transparent 19%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.26) 0 10px, transparent 11px 21px);
}

.fotta-pack-selector__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(18px, 2.2vw, 26px);
}

.fotta-pack-selector__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(23, 32, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--fotta-ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.fotta-pack-selector__title {
  max-width: 760px;
  margin: 0;
  color: var(--fotta-ink);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 950;
  line-height: 0.95;
}

.fotta-pack-selector__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.fotta-pack-option {
  position: relative;
  display: grid;
  grid-template-rows: 145px minmax(150px, auto);
  min-height: 310px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 26px;
  background: var(--fotta-card);
  color: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--fotta-shadow-sm);
  transform: translateY(0) scale(1);
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.fotta-product-card .fotta-pack-option {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
}

.fotta-product-card .fotta-pack-option__actions {
  grid-column: 2;
  grid-template-columns: minmax(116px, 0.9fr) minmax(132px, 1.1fr);
  align-items: center;
  width: 100%;
  justify-self: stretch;
}

.fotta-pack-option:hover,
.fotta-pack-option:focus-visible {
  border-color: rgba(23, 32, 20, 0.22);
  box-shadow: var(--fotta-shadow-color);
  transform: translateY(-8px) scale(1.015);
  outline: none;
}

.fotta-pack-option.is-selected {
  border-color: var(--fotta-green);
  box-shadow:
    0 0 0 6px rgba(155, 223, 39, 0.22),
    var(--fotta-shadow-color);
}

.fotta-pack-option.is-selected::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--fotta-green), var(--fotta-lime));
  box-shadow: 0 8px 18px rgba(83, 128, 0, 0.25);
}

.fotta-pack-option.is-selected::before {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  width: 10px;
  height: 6px;
  border-left: 3px solid var(--fotta-ink);
  border-bottom: 3px solid var(--fotta-ink);
  transform: rotate(-45deg);
}

.fotta-pack-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  filter: grayscale(0.5);
}

.fotta-pack-option.is-disabled:hover {
  border-color: transparent;
  box-shadow: var(--fotta-shadow-sm);
  transform: none;
}

.fotta-pack-option__badge,
.fotta-pack-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--fotta-orange);
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(236, 135, 0, 0.22);
}

.fotta-pack-option__image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 145px;
  border-radius: 22px 22px 32px 32px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(135deg, rgba(155, 223, 39, 0.86), rgba(13, 185, 166, 0.72));
}

.fotta-pack-option:nth-child(3n + 2) .fotta-pack-option__image {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.88), transparent 48%),
    linear-gradient(135deg, rgba(236, 135, 0, 0.8), rgba(255, 85, 75, 0.74));
}

.fotta-pack-option:nth-child(3n + 3) .fotta-pack-option__image {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(135deg, rgba(214, 223, 39, 0.92), rgba(255, 210, 24, 0.86));
}

.fotta-pack-option__image::before,
.fotta-pack-card__image::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  transform: rotate(-10deg);
}

.fotta-pack-option__image img {
  position: relative;
  z-index: 1;
  width: min(86%, 180px);
  height: 118px;
  object-fit: contain;
  transform: translateY(4px);
  filter: drop-shadow(0 18px 14px rgba(23, 32, 20, 0.16));
  transition: transform 240ms ease;
}

.fotta-pack-option:hover .fotta-pack-option__image img,
.fotta-pack-option:focus-visible .fotta-pack-option__image img {
  transform: translateY(-4px) rotate(-2deg) scale(1.05);
}

.fotta-pack-option__body {
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 8px;
  padding: 18px 18px 20px;
}

.fotta-pack-option__label,
.fotta-pack-card__title {
  color: var(--fotta-ink);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 950;
  line-height: 1.02;
}

.fotta-pack-option__quantity,
.fotta-pack-card__quantity,
.fotta-pack-card__product {
  color: var(--fotta-soft-ink);
  font-size: 13px;
  font-weight: 850;
}

.fotta-pack-option__prices,
.fotta-pack-card__prices,
.fotta-pack-selector__summary-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
}

.fotta-pack-option__prices del,
.fotta-pack-card__prices del,
.fotta-pack-selector__summary-price del {
  color: rgba(23, 32, 20, 0.42);
  font-size: 13px;
  font-weight: 850;
}

.fotta-pack-option__prices ins,
.fotta-pack-card__prices ins,
.fotta-pack-selector__summary-price ins {
  color: var(--fotta-ink);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 1000;
  line-height: 1;
  text-decoration: none;
}

.fotta-pack-option__saving,
.fotta-pack-option__notice,
.fotta-pack-card__notice {
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.fotta-pack-option__saving {
  background: rgba(155, 223, 39, 0.25);
  color: #416600;
}

.fotta-pack-option__notice,
.fotta-pack-card__notice {
  background: rgba(236, 135, 0, 0.15);
  color: #8b4c00;
}

.fotta-pack-selector__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 32, 20, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.fotta-pack-selector__summary-label,
.fotta-pack-selector__summary-quantity {
  display: block;
  color: var(--fotta-soft-ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fotta-pack-selector__summary-title {
  display: block;
  margin-top: 3px;
  color: var(--fotta-ink);
  font-size: 21px;
  font-weight: 950;
  line-height: 1.05;
}

.fotta-pack-selector__summary-price ins {
  color: var(--fotta-orange);
}

.fotta-pack-selector__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  min-height: 60px;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--fotta-ink);
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(23, 32, 20, 0.22);
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.fotta-pack-selector__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 520ms ease;
}

.fotta-pack-selector__button:hover,
.fotta-pack-selector__button:focus-visible {
  background: #0f170e;
  box-shadow: 0 20px 42px rgba(23, 32, 20, 0.28);
  transform: translateY(-2px);
  outline: none;
}

.fotta-pack-selector__button:hover::before,
.fotta-pack-selector__button:focus-visible::before {
  transform: translateX(100%);
}

.fotta-pack-selector__button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.35);
  opacity: 0.68;
  transform: none;
}

.fotta-pack-selector__button.is-loading span::after {
  content: "";
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  margin-left: 9px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  vertical-align: -0.12em;
  animation: fotta-spin 800ms linear infinite;
}

.fotta-pack-toast-region {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 999999;
  display: grid;
  gap: 10px;
  width: min(390px, calc(100vw - 36px));
  pointer-events: none;
}

.fotta-pack-toast {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(23, 32, 20, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--fotta-ink);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 18px 46px rgba(23, 32, 20, 0.18);
  backdrop-filter: blur(14px);
  transform-origin: bottom right;
  animation: fotta-toast-in 240ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.fotta-pack-toast.is-leaving {
  animation: fotta-toast-out 240ms ease both;
}

.fotta-pack-toast__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fotta-green);
  box-shadow: 0 0 0 6px rgba(155, 223, 39, 0.2);
}

.fotta-pack-toast--error .fotta-pack-toast__dot {
  background: var(--fotta-orange);
  box-shadow: 0 0 0 6px rgba(236, 135, 0, 0.18);
}

.fotta-pack-grid {
  display: grid;
  grid-template-columns: repeat(var(--fotta-pack-grid-columns, 3), minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.fotta-pack-card {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--fotta-line);
  border-radius: 28px;
  background: var(--fotta-card);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--fotta-shadow-sm);
  transform: translateY(0);
  transition:
    transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 230ms ease,
    border-color 230ms ease;
}

.fotta-pack-card:hover,
.fotta-pack-card:focus-visible {
  border-color: rgba(236, 135, 0, 0.5);
  box-shadow: var(--fotta-shadow-color);
  transform: translateY(-8px);
  outline: none;
}

.fotta-pack-card.is-disabled {
  opacity: 0.64;
}

.fotta-pack-card__image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  border-radius: 0 0 34px 34px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.86), transparent 44%),
    linear-gradient(135deg, rgba(155, 223, 39, 0.82), rgba(13, 185, 166, 0.68));
}

.fotta-pack-card:nth-child(3n + 2) .fotta-pack-card__image {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.86), transparent 44%),
    linear-gradient(135deg, rgba(236, 135, 0, 0.82), rgba(255, 85, 75, 0.68));
}

.fotta-pack-card:nth-child(3n + 3) .fotta-pack-card__image {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.86), transparent 44%),
    linear-gradient(135deg, rgba(214, 223, 39, 0.88), rgba(255, 210, 24, 0.84));
}

.fotta-pack-card__image img {
  position: relative;
  z-index: 1;
  width: min(86%, 260px);
  height: min(78%, 230px);
  object-fit: contain;
  filter: drop-shadow(0 20px 16px rgba(23, 32, 20, 0.14));
  transition: transform 260ms ease;
}

.fotta-pack-card:hover .fotta-pack-card__image img,
.fotta-pack-card:focus-visible .fotta-pack-card__image img {
  transform: translateY(-5px) rotate(-2deg) scale(1.045);
}

.fotta-pack-card__content {
  display: grid;
  gap: 7px;
  padding: 18px 18px 20px;
}

.fotta-pack-card__product {
  min-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}

.fotta-pack-card__prices ins {
  color: var(--fotta-ink);
}

.fotta-cart-pack-name {
  display: block;
  width: fit-content;
  margin-top: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(155, 223, 39, 0.22);
  color: var(--fotta-ink);
  font-size: 12px;
  font-weight: 900;
}

.fotta-cart-pack-quantity {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(192, 206, 191, 0.28);
  color: var(--fotta-ink);
  font-size: 13px;
  font-weight: 900;
}

.fotta-reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.fotta-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fotta-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fotta-toast-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fotta-toast-out {
  to {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fotta-pack-option,
  .fotta-pack-option__image img,
  .fotta-pack-card,
  .fotta-pack-card__image img,
  .fotta-pack-selector__button,
  .fotta-reveal.is-visible {
    transition: none;
  }

  .fotta-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .fotta-pack-selector__header {
    display: grid;
  }

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

@media (max-width: 640px) {
  .fotta-pack-selector {
    padding: 16px;
    border-radius: 24px;
  }

  .fotta-pack-selector__options,
  .fotta-pack-grid {
    grid-template-columns: 1fr;
  }

  .fotta-pack-option {
    grid-template-rows: 160px auto;
    min-height: 0;
    border-radius: 24px;
  }

  .fotta-pack-selector__summary {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
  }

  .fotta-pack-toast-region {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

/* Fotta Pack Selector release marker: v1.0.6 unboxed product layout */
.fotta-product-card {
  display: grid !important;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 0.86fr) !important;
  gap: clamp(28px, 6vw, 76px) !important;
  width: min(1160px, calc(100vw - 32px)) !important;
  margin: clamp(28px, 5vw, 72px) auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.fotta-product-card__content {
  align-content: start !important;
  justify-items: start !important;
  text-align: left !important;
  padding: 0 !important;
}

.fotta-product-card__title,
.fotta-product-card__description,
.fotta-product-card__description p {
  text-align: left !important;
}

.fotta-product-card__description {
  max-width: 56ch !important;
}

.fotta-product-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 6px;
}

.fotta-product-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(23, 32, 20, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: var(--fotta-ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.fotta-product-feature__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--fotta-green);
  box-shadow: 0 0 0 0 rgba(155, 223, 39, 0.62);
  animation: fotta-stock-pulse 1.55s ease-out infinite;
}

.fotta-product-card .fotta-pack-gallery {
  align-items: start !important;
}

.fotta-product-card .fotta-pack-gallery__main,
.fotta-product-card .fotta-pack-gallery__thumb {
  background: #f6f7f2 !important;
}

.fotta-product-card .fotta-pack-selector {
  width: 100% !important;
}

.fotta-product-card .fotta-pack-selector__header {
  justify-items: start !important;
}

.fotta-product-card .fotta-pack-selector__eyebrow {
  margin: 0 !important;
}

.fotta-product-card .fotta-pack-option {
  align-items: start !important;
  text-align: left !important;
}

.fotta-product-card .fotta-pack-option__badge {
  position: static !important;
  display: inline-flex !important;
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 -2px !important;
  white-space: normal !important;
  line-height: 1.12 !important;
}

.fotta-product-card .fotta-pack-option__image {
  grid-column: 1 !important;
}

.fotta-product-card .fotta-pack-option__body {
  grid-column: 2 !important;
  padding: 0 32px 0 0 !important;
  text-align: left !important;
}

.fotta-product-card .fotta-pack-option__actions {
  grid-column: 2 !important;
}

.fotta-pack-toast-region--inline {
  position: static !important;
  display: grid !important;
  width: 100% !important;
  margin-top: 8px !important;
  pointer-events: auto !important;
}

.fotta-product-card .fotta-pack-toast-region {
  position: static !important;
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  pointer-events: auto !important;
}

.fotta-product-card .fotta-pack-toast {
  grid-template-columns: 12px minmax(0, 1fr) auto !important;
  width: 100% !important;
  padding: 14px 14px !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 26px rgba(23, 32, 20, 0.08) !important;
  transform-origin: center !important;
}

.fotta-pack-toast__message {
  min-width: 0;
}

.fotta-pack-toast__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--fotta-ink);
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none !important;
  white-space: nowrap;
}

@keyframes fotta-stock-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(155, 223, 39, 0.62);
  }
  72% {
    box-shadow: 0 0 0 8px rgba(155, 223, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(155, 223, 39, 0);
  }
}

@media (max-width: 900px) {
  .fotta-product-card {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .fotta-product-card {
    width: min(100%, calc(100vw - 20px)) !important;
  }

  .fotta-product-card .fotta-pack-toast {
    grid-template-columns: 12px minmax(0, 1fr) !important;
  }

  .fotta-pack-toast__button {
    grid-column: 2;
    width: fit-content;
  }
}

/* Product page v2: stacked pack rows with per-pack quantity controls. */
.fotta-pack-selector,
.fotta-pack-selector * {
  user-select: none;
}

.fotta-pack-selector {
  padding: clamp(18px, 2.6vw, 28px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 10%, rgba(155, 223, 39, 0.34), transparent 30%),
    linear-gradient(145deg, #f5f6e6, #fff9ce 54%, #f0a737);
}

.fotta-pack-selector__header {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.fotta-pack-selector__title {
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 0.98;
}

.fotta-pack-selector__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.fotta-pack-option {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(148px, auto);
  grid-template-rows: auto;
  align-items: center;
  min-height: 132px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(23, 32, 20, 0.08);
}

.fotta-pack-option:hover,
.fotta-pack-option:focus-within {
  border-color: rgba(236, 135, 0, 0.45);
  box-shadow: 0 16px 34px rgba(23, 32, 20, 0.13);
  transform: translateY(-3px);
}

.fotta-pack-option.is-selected {
  border-color: var(--fotta-green);
  box-shadow:
    0 0 0 5px rgba(155, 223, 39, 0.2),
    0 16px 36px rgba(23, 32, 20, 0.14);
}

.fotta-pack-option.is-selected::after {
  right: 12px;
  top: 12px;
  bottom: auto;
  width: 26px;
  height: 26px;
}

.fotta-pack-option.is-selected::before {
  right: 21px;
  top: 20px;
  bottom: auto;
  width: 8px;
  height: 5px;
  border-left-width: 2px;
  border-bottom-width: 2px;
}

.fotta-pack-option__badge {
  top: 10px;
  left: 10px;
  padding: 6px 9px;
}

.fotta-pack-option__image {
  width: 92px;
  min-height: 108px;
  height: 108px;
  border-radius: 18px;
}

.fotta-pack-option__image img {
  width: 82%;
  height: 82%;
}

.fotta-pack-option__body {
  gap: 6px;
  padding: 0 18px;
}

.fotta-pack-option__label {
  font-size: clamp(18px, 1.6vw, 24px);
}

.fotta-pack-option__prices ins,
.fotta-pack-card__prices ins,
.fotta-pack-selector__summary-price ins {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 3px 8px;
  border-radius: 10px;
  background: transparent;
  color: var(--fotta-orange);
  font-size: clamp(22px, 2.1vw, 30px);
}

.fotta-pack-option__prices del,
.fotta-pack-card__prices del {
  text-decoration-thickness: 2px;
}

.fotta-pack-option__actions {
  display: grid;
  gap: 9px;
  justify-self: end;
  min-width: 148px;
}

.fotta-pack-qty {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  overflow: hidden;
  height: 42px;
  border: 1px solid rgba(23, 32, 20, 0.12);
  border-radius: 999px;
  background: #f7f8ea;
}

.fotta-pack-qty__button,
.fotta-pack-qty__input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--fotta-ink);
  font-weight: 950;
  text-align: center;
}

.fotta-pack-qty__button {
  cursor: pointer;
  font-size: 20px;
  transition: background 160ms ease, color 160ms ease;
}

.fotta-pack-qty__button:hover,
.fotta-pack-qty__button:focus-visible {
  background: var(--fotta-green);
  outline: none;
}

.fotta-pack-qty__input {
  appearance: textfield;
  font-size: 15px;
}

.fotta-pack-qty__input::-webkit-outer-spin-button,
.fotta-pack-qty__input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.fotta-pack-option__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--fotta-ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(23, 32, 20, 0.18);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.fotta-pack-option__button:hover,
.fotta-pack-option__button:focus-visible {
  background: #0d150c;
  box-shadow: 0 16px 30px rgba(23, 32, 20, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.fotta-pack-option__button:disabled,
.fotta-pack-qty__button:disabled,
.fotta-pack-qty__input:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.fotta-pack-option__button.is-loading span::after {
  content: "";
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #ffffff;
  border-radius: 50%;
  vertical-align: -0.12em;
  animation: fotta-spin 800ms linear infinite;
}

.fotta-pack-gallery {
  display: grid;
  gap: 12px;
}

.fotta-pack-gallery__main {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.86), transparent 38%),
    linear-gradient(135deg, rgba(155, 223, 39, 0.72), rgba(236, 135, 0, 0.7));
  cursor: zoom-in;
  box-shadow: 0 18px 46px rgba(23, 32, 20, 0.1);
}

.fotta-pack-gallery__main img {
  width: min(86%, 520px);
  height: min(86%, 520px);
  object-fit: contain;
  filter: drop-shadow(0 24px 18px rgba(23, 32, 20, 0.16));
  transition: opacity 180ms ease, transform 220ms ease;
}

.fotta-pack-gallery__main:hover img {
  transform: scale(1.025) rotate(-1deg);
}

.fotta-pack-gallery__main img.is-switching {
  opacity: 0;
  transform: scale(0.98);
}

.fotta-pack-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 10px;
}

.fotta-pack-gallery__thumb {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(23, 32, 20, 0.07);
  transition: border-color 170ms ease, transform 170ms ease;
}

.fotta-pack-gallery__thumb:hover,
.fotta-pack-gallery__thumb:focus-visible,
.fotta-pack-gallery__thumb.is-active {
  border-color: var(--fotta-green);
  transform: translateY(-2px);
  outline: none;
}

.fotta-pack-gallery__thumb img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.fotta-pack-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(23, 32, 20, 0.72);
  backdrop-filter: blur(12px);
  animation: fotta-toast-in 180ms ease both;
}

.fotta-pack-lightbox.is-leaving {
  animation: fotta-toast-out 180ms ease both;
}

.fotta-pack-lightbox img {
  max-width: min(920px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
}

.fotta-pack-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--fotta-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.fotta-lightbox-open {
  overflow: hidden;
}

.fotta-cart-pack-image {
  display: block !important;
  width: 72px !important;
  max-width: 72px !important;
  height: 72px !important;
  max-height: 72px !important;
  border-radius: 14px;
  object-fit: contain !important;
  background: #f7f8ea;
}

.fotta-cart-pack-image-wrap {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f8ea;
}

.woocommerce-cart-form .fotta-cart-pack-image-wrap img,
.woocommerce-checkout-review-order .fotta-cart-pack-image-wrap img,
.widget_shopping_cart_content .fotta-cart-pack-image-wrap img {
  width: 72px !important;
  max-width: 72px !important;
  height: 72px !important;
  max-height: 72px !important;
}

.fotta-simple-purchase {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(155, 223, 39, 0.26), transparent 34%),
    #ffffff;
  box-shadow: 0 14px 34px rgba(23, 32, 20, 0.1);
}

.fotta-simple-purchase__price {
  color: var(--fotta-orange);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 1000;
  line-height: 1;
}

.fotta-simple-purchase__price del {
  margin-right: 8px;
  color: rgba(23, 32, 20, 0.42);
  font-size: 0.54em;
}

.fotta-simple-purchase__price ins {
  text-decoration: none;
}

.fotta-simple-purchase__actions {
  display: grid;
  grid-template-columns: minmax(140px, 0.6fr) minmax(160px, 1fr);
  gap: 10px;
  align-items: center;
}

.fotta-simple-purchase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--fotta-ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(23, 32, 20, 0.18);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.fotta-simple-purchase__button:hover,
.fotta-simple-purchase__button:focus-visible {
  background: #0d150c;
  box-shadow: 0 16px 30px rgba(23, 32, 20, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.fotta-simple-purchase__button.is-loading span::after {
  content: "";
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #ffffff;
  border-radius: 50%;
  vertical-align: -0.12em;
  animation: fotta-spin 800ms linear infinite;
}

@media (max-width: 760px) {
  .fotta-product-card {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 26px;
  }

  .fotta-product-card__media {
    position: static;
  }

  .fotta-product-card__title {
    font-size: clamp(32px, 12vw, 48px);
  }

  .fotta-pack-option {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
  }

  .fotta-pack-option__image {
    width: 84px;
    height: 100px;
    min-height: 100px;
  }

  .fotta-pack-option__body {
    padding: 0;
  }

  .fotta-pack-option__actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1.2fr;
    width: 100%;
  }

  .fotta-product-card .fotta-pack-option__actions,
  .fotta-simple-purchase__actions {
    grid-template-columns: 1fr;
  }
}

/* Fotta Pack Selector release marker: v1.0.5 premium product-card redesign */
.fotta-product-card,
.fotta-product-card * {
  box-sizing: border-box;
}

.fotta-product-card {
  --fotta-product-bg: #f7f7f2;
  --fotta-product-tile: #ffffff;
  --fotta-product-muted: #62685f;
  display: grid !important;
  grid-template-columns: minmax(300px, 1.04fr) minmax(320px, 0.96fr) !important;
  gap: clamp(28px, 5vw, 64px) !important;
  align-items: start !important;
  width: min(1180px, calc(100vw - 32px)) !important;
  margin: clamp(28px, 5vw, 72px) auto !important;
  padding: clamp(16px, 2.8vw, 28px) !important;
  border: 1px solid rgba(23, 32, 20, 0.08) !important;
  border-radius: 26px !important;
  background: var(--fotta-product-bg) !important;
  color: var(--fotta-ink) !important;
  box-shadow: none !important;
}

.fotta-product-card__media {
  position: static !important;
}

.fotta-product-card__content {
  position: sticky;
  top: 112px;
  display: grid !important;
  gap: 18px !important;
  padding: clamp(10px, 1.2vw, 18px) 0 !important;
  color: var(--fotta-ink) !important;
}

.fotta-product-card__eyebrow {
  background: #e6f36a !important;
  color: var(--fotta-ink) !important;
  border: 0 !important;
}

.fotta-product-card__title {
  margin: 0 !important;
  color: var(--fotta-ink) !important;
  -webkit-text-fill-color: var(--fotta-ink) !important;
  text-shadow: none !important;
  font-size: clamp(34px, 4.4vw, 58px) !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

.fotta-product-card__description {
  max-width: 60ch !important;
  color: var(--fotta-product-muted) !important;
  font-size: 15px !important;
  font-weight: 650 !important;
  line-height: 1.65 !important;
}

.fotta-product-card .fotta-pack-gallery {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.fotta-product-card .fotta-pack-gallery__main,
.fotta-product-card .fotta-pack-gallery__thumb {
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--fotta-product-tile) !important;
  box-shadow: none !important;
}

.fotta-product-card .fotta-pack-gallery__main {
  aspect-ratio: 1 / 1 !important;
}

.fotta-product-card .fotta-pack-gallery__main img,
.fotta-product-card .fotta-pack-gallery__thumb img {
  width: 88% !important;
  height: 88% !important;
  object-fit: contain !important;
  filter: none !important;
}

.fotta-product-card .fotta-pack-gallery__main:hover img {
  transform: scale(1.025) !important;
}

.fotta-product-card .fotta-pack-gallery__thumbs {
  display: contents !important;
}

.fotta-product-card .fotta-pack-gallery__thumb {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  transition: border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease !important;
}

.fotta-product-card .fotta-pack-gallery__thumb.is-active,
.fotta-product-card .fotta-pack-gallery__thumb:hover,
.fotta-product-card .fotta-pack-gallery__thumb:focus-visible {
  border: 2px solid var(--fotta-green) !important;
  box-shadow: 0 10px 24px rgba(23, 32, 20, 0.08) !important;
  transform: translateY(-2px) !important;
}

.fotta-product-card .fotta-pack-selector {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.fotta-product-card .fotta-pack-selector::before,
.fotta-product-card .fotta-pack-selector::after {
  content: none !important;
}

.fotta-product-card .fotta-pack-selector__header {
  margin: 0 0 8px !important;
}

.fotta-product-card .fotta-pack-selector__eyebrow {
  padding: 7px 11px !important;
  background: #ffffff !important;
  color: var(--fotta-ink) !important;
  border: 1px solid rgba(23, 32, 20, 0.1) !important;
}

.fotta-product-card .fotta-pack-selector__options {
  gap: 12px !important;
}

.fotta-product-card .fotta-pack-option {
  display: grid !important;
  grid-template-columns: 76px minmax(0, 1fr) !important;
  gap: 14px !important;
  min-height: 0 !important;
  padding: 12px !important;
  border: 1px solid rgba(23, 32, 20, 0.08) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
}

.fotta-product-card .fotta-pack-option:hover,
.fotta-product-card .fotta-pack-option:focus-within {
  border-color: rgba(155, 223, 39, 0.65) !important;
  box-shadow: 0 12px 30px rgba(23, 32, 20, 0.08) !important;
  transform: translateY(-2px) !important;
}

.fotta-product-card .fotta-pack-option.is-selected {
  border-color: var(--fotta-green) !important;
  box-shadow: 0 0 0 2px rgba(155, 223, 39, 0.35) !important;
}

.fotta-product-card .fotta-pack-option.is-selected::after {
  top: 12px !important;
  right: 12px !important;
  width: 24px !important;
  height: 24px !important;
  background: var(--fotta-green) !important;
}

.fotta-product-card .fotta-pack-option.is-selected::before {
  top: 19px !important;
  right: 20px !important;
}

.fotta-product-card .fotta-pack-option__badge {
  top: 9px !important;
  left: 9px !important;
  background: var(--fotta-orange) !important;
}

.fotta-product-card .fotta-pack-option__image {
  width: 76px !important;
  height: 76px !important;
  min-height: 76px !important;
  border-radius: 12px !important;
  background: #f2f3ed !important;
}

.fotta-product-card .fotta-pack-option__image::before {
  content: none !important;
}

.fotta-product-card .fotta-pack-option__image img {
  width: 82% !important;
  height: 82% !important;
  object-fit: contain !important;
  filter: none !important;
  transform: none !important;
}

.fotta-product-card .fotta-pack-option__body {
  align-content: start !important;
  gap: 5px !important;
  padding: 0 36px 0 0 !important;
}

.fotta-product-card .fotta-pack-option__label {
  color: var(--fotta-ink) !important;
  font-size: clamp(18px, 1.65vw, 23px) !important;
  font-weight: 900 !important;
}

.fotta-product-card .fotta-pack-option__quantity {
  color: var(--fotta-product-muted) !important;
}

.fotta-product-card .fotta-pack-option__prices ins {
  min-height: 0 !important;
  padding: 0 !important;
  color: var(--fotta-orange) !important;
  font-size: 24px !important;
  background: transparent !important;
}

.fotta-product-card .fotta-pack-option__saving {
  background: #eef9cc !important;
}

.fotta-product-card .fotta-pack-option__actions {
  grid-column: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(118px, 0.72fr) minmax(126px, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
}

.fotta-product-card .fotta-pack-qty {
  height: 40px !important;
  background: #f5f5ef !important;
  border: 1px solid rgba(23, 32, 20, 0.08) !important;
}

.fotta-product-card .fotta-pack-option__button,
.fotta-product-card .fotta-simple-purchase__button {
  min-height: 40px !important;
  background: #11200f !important;
  box-shadow: none !important;
}

.fotta-product-card .fotta-simple-purchase {
  padding: 16px !important;
  border: 1px solid rgba(23, 32, 20, 0.08) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.fotta-product-card .fotta-simple-purchase__price {
  color: var(--fotta-orange) !important;
}

body.woocommerce-cart .shop_table .product-thumbnail,
body.woocommerce-checkout .shop_table .product-thumbnail,
.woocommerce-cart-form__cart-item .product-thumbnail {
  width: 96px !important;
  max-width: 96px !important;
}

body.woocommerce-cart .shop_table .product-thumbnail img,
body.woocommerce-checkout .shop_table .product-thumbnail img,
.woocommerce-cart-form__cart-item .product-thumbnail img,
.woocommerce-mini-cart-item img,
.fotta-cart-pack-image {
  display: block !important;
  width: 72px !important;
  min-width: 72px !important;
  max-width: 72px !important;
  height: 72px !important;
  min-height: 72px !important;
  max-height: 72px !important;
  object-fit: contain !important;
}

.fotta-cart-pack-image-wrap {
  display: inline-grid !important;
  place-items: center !important;
  width: 76px !important;
  min-width: 76px !important;
  max-width: 76px !important;
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
}

@media (max-width: 900px) {
  .fotta-product-card {
    grid-template-columns: 1fr !important;
  }

  .fotta-product-card__content {
    position: static !important;
  }
}

@media (max-width: 640px) {
  .fotta-product-card {
    width: min(100%, calc(100vw - 20px)) !important;
    padding: 12px !important;
    border-radius: 22px !important;
  }

  .fotta-product-card .fotta-pack-gallery {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .fotta-product-card .fotta-pack-option {
    grid-template-columns: 68px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .fotta-product-card .fotta-pack-option__image {
    width: 68px !important;
    height: 68px !important;
    min-height: 68px !important;
  }

  .fotta-product-card .fotta-pack-option__actions {
    grid-column: 1 / -1 !important;
    grid-template-columns: 1fr !important;
  }

  .fotta-product-card__title {
    font-size: clamp(31px, 11vw, 46px) !important;
  }
}

/* Fotta Pack Selector release marker: v1.0.7 final unboxed override */
.fotta-product-card {
  display: grid !important;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 0.86fr) !important;
  gap: clamp(28px, 6vw, 76px) !important;
  align-items: start !important;
  width: min(1160px, calc(100vw - 32px)) !important;
  max-width: min(1160px, calc(100vw - 32px)) !important;
  margin: clamp(28px, 5vw, 72px) auto !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.fotta-product-card::before,
.fotta-product-card::after {
  content: none !important;
  display: none !important;
}

.fotta-product-card__media,
.fotta-product-card__content {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.fotta-product-card__content {
  justify-items: start !important;
  text-align: left !important;
}

.fotta-product-card__title,
.fotta-product-card__description,
.fotta-product-card__description p {
  text-align: left !important;
}

.fotta-product-card .fotta-pack-gallery {
  background: transparent !important;
}

.fotta-product-card .fotta-pack-selector {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.fotta-product-card .fotta-pack-option__badge {
  position: static !important;
  display: inline-flex !important;
  grid-column: 1 / -1 !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 -2px !important;
  white-space: normal !important;
  line-height: 1.12 !important;
}

@media (max-width: 900px) {
  .fotta-product-card {
    grid-template-columns: 1fr !important;
    width: min(100%, calc(100vw - 24px)) !important;
    max-width: min(100%, calc(100vw - 24px)) !important;
  }
}

/* Fotta Pack Selector release marker: v1.0.8 left-aligned grid text */
.fotta-pack-grid,
.fotta-pack-grid * {
  text-align: left !important;
}

.fotta-pack-card,
.fotta-pack-card__content,
.fotta-pack-card__product,
.fotta-pack-card__title,
.fotta-pack-card__quantity,
.fotta-pack-card__prices {
  text-align: left !important;
  justify-items: start !important;
}

.fotta-pack-card__prices {
  justify-content: flex-start !important;
}

/* Fotta Pack Selector release marker: v1.0.9 single-product hero gallery */
.fotta-product-card .fotta-pack-gallery {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  align-items: start !important;
  background: transparent !important;
}

.fotta-product-card .fotta-pack-gallery__main {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  min-height: clamp(340px, 42vw, 620px) !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: #f6f7f2 !important;
  box-shadow: none !important;
}

.fotta-product-card .fotta-pack-gallery__main img {
  width: min(88%, 560px) !important;
  height: min(88%, 560px) !important;
  object-fit: contain !important;
  filter: none !important;
}

.fotta-product-card .fotta-pack-gallery__thumbs {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(84px, 112px)) !important;
  gap: 10px !important;
  justify-content: start !important;
}

.fotta-product-card .fotta-pack-gallery__thumb {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 84px !important;
  border: 1px solid rgba(23, 32, 20, 0.08) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.fotta-product-card .fotta-pack-gallery__thumb.is-active,
.fotta-product-card .fotta-pack-gallery__thumb:hover,
.fotta-product-card .fotta-pack-gallery__thumb:focus-visible {
  border-color: var(--fotta-green) !important;
  box-shadow: 0 0 0 2px rgba(155, 223, 39, 0.25) !important;
  transform: translateY(-1px) !important;
}

.fotta-product-card .fotta-pack-gallery__thumb img {
  width: 82% !important;
  height: 82% !important;
  object-fit: contain !important;
}

@media (max-width: 640px) {
  .fotta-product-card .fotta-pack-gallery__main {
    min-height: auto !important;
    border-radius: 18px !important;
  }

.fotta-product-card .fotta-pack-gallery__thumbs {
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)) !important;
  }
}

/* Fotta Pack Selector release marker: v1.1.0 grid includes simple products */
.fotta-pack-card--simple .fotta-pack-card__quantity {
  color: var(--fotta-soft-ink) !important;
}

.fotta-pack-card--simple .fotta-pack-card__prices ins {
  color: var(--fotta-ink) !important;
}

/* Fotta Pack Selector release marker: v1.1.1 balanced shop grid cards */
.fotta-pack-grid {
  align-items: stretch !important;
}

.fotta-pack-card {
  grid-template-rows: 170px minmax(0, 1fr) !important;
  height: 100% !important;
  border-radius: 22px !important;
}

.fotta-pack-card__image {
  width: 100% !important;
  height: 170px !important;
  min-height: 170px !important;
  aspect-ratio: auto !important;
  border-radius: 22px 22px 18px 18px !important;
}

.fotta-pack-card__image img {
  width: 82% !important;
  height: 82% !important;
  max-width: 210px !important;
  max-height: 138px !important;
  object-fit: contain !important;
  margin: auto !important;
}

.fotta-pack-card__content {
  align-content: start !important;
  gap: 7px !important;
  padding: 14px 14px 16px !important;
}

.fotta-pack-card__product {
  order: 0 !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 5px 8px !important;
  border-radius: 999px !important;
  background: #f4f6ed !important;
  color: var(--fotta-soft-ink) !important;
  font-size: 10px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

.fotta-pack-card__title {
  order: 1 !important;
  min-height: 2.16em !important;
  color: var(--fotta-ink) !important;
  font-size: clamp(17px, 1.25vw, 21px) !important;
  line-height: 1.08 !important;
}

.fotta-pack-card__quantity {
  order: 2 !important;
  color: var(--fotta-soft-ink) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

.fotta-pack-card__prices {
  order: 3 !important;
  display: inline-flex !important;
  flex-wrap: wrap !important;
  align-items: flex-end !important;
  gap: 6px !important;
  margin-top: 3px !important;
  line-height: 1 !important;
}

.fotta-pack-card__prices del {
  color: rgba(23, 32, 20, 0.42) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

.fotta-pack-card__prices ins,
.fotta-pack-card--simple .fotta-pack-card__prices ins {
  display: inline-flex !important;
  align-items: baseline !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--fotta-orange) !important;
  font-size: clamp(22px, 1.8vw, 30px) !important;
  font-weight: 1000 !important;
  line-height: 0.95 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.fotta-pack-card__prices .woocommerce-Price-currencySymbol {
  margin-left: 1px !important;
  font-size: 0.68em !important;
  font-weight: 950 !important;
}

.fotta-pack-card__prices small,
.fotta-pack-card__prices .woocommerce-price-suffix {
  margin-left: 4px !important;
  color: var(--fotta-ink) !important;
  font-size: 0.58em !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.fotta-pack-card__notice {
  order: 4 !important;
}

@media (max-width: 640px) {
  .fotta-pack-card {
    grid-template-rows: 156px minmax(0, 1fr) !important;
  }

  .fotta-pack-card__image {
    height: 156px !important;
    min-height: 156px !important;
  }
}

/* Fotta Pack Selector release marker: v1.2.0 themed single + editorial grid */
.fotta-product-card {
  --fotta-product-custom-bg: #f5eedf;
  --fotta-product-custom-text: var(--fotta-ink);
  --fotta-product-custom-button: var(--fotta-ink);
  --fotta-product-custom-button-text: #ffffff;
  color: var(--fotta-product-custom-text) !important;
  padding: clamp(22px, 3vw, 34px) !important;
  border-radius: 28px !important;
  background: var(--fotta-product-custom-bg) !important;
}

.fotta-product-card__media,
.fotta-product-card__content {
  color: var(--fotta-product-custom-text) !important;
}

.fotta-product-card__media {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.fotta-product-card .fotta-pack-gallery__main {
  background: rgba(255, 255, 255, 0.26) !important;
}

.fotta-product-card .fotta-pack-gallery__thumb {
  background: #ffffff !important;
}

.fotta-product-card__content {
  gap: 16px !important;
}

.fotta-product-card__eyebrow,
.fotta-product-card__features .fotta-product-feature {
  color: var(--fotta-product-custom-text) !important;
}

.fotta-product-card__title,
.fotta-product-card__description,
.fotta-product-card__description p,
.fotta-product-card__accordion summary,
.fotta-product-card__accordion-body {
  color: var(--fotta-product-custom-text) !important;
}

.fotta-product-card .fotta-pack-option__button,
.fotta-product-card .fotta-simple-purchase__button {
  background: var(--fotta-product-custom-button) !important;
  color: var(--fotta-product-custom-button-text) !important;
}

.fotta-product-card .fotta-pack-selector__eyebrow,
.fotta-product-card .fotta-product-card__eyebrow {
  background: rgba(255, 255, 255, 0.75) !important;
}

.fotta-product-card .fotta-pack-gallery__main img,
.fotta-product-card .fotta-pack-gallery__thumb img {
  transition: transform 220ms ease, opacity 220ms ease;
}

.fotta-product-card .fotta-pack-gallery__main:hover img {
  transform: scale(1.02);
}

.fotta-product-card__details {
  display: grid;
  width: 100%;
  gap: 10px;
  margin-top: 4px;
}

.fotta-product-card__accordion {
  width: 100%;
  border-top: 1px solid rgba(23, 32, 20, 0.12);
  padding-top: 10px;
}

.fotta-product-card__accordion:last-child {
  border-bottom: 1px solid rgba(23, 32, 20, 0.12);
  padding-bottom: 10px;
}

.fotta-product-card__accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 900;
}

.fotta-product-card__accordion summary::-webkit-details-marker {
  display: none;
}

.fotta-product-card__accordion summary::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.fotta-product-card__accordion[open] summary::after {
  content: "-";
}

.fotta-product-card__accordion-body {
  padding-top: 10px;
  color: color-mix(in srgb, var(--fotta-product-custom-text) 82%, #ffffff 18%) !important;
  font-size: 14px;
  line-height: 1.65;
}

.fotta-product-card__accordion-body p {
  margin: 0;
}

.fotta-product-banner {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto clamp(28px, 5vw, 72px);
}

.fotta-product-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.fotta-pack-grid {
  align-items: stretch !important;
}

.fotta-pack-card {
  grid-template-rows: auto minmax(0, 1fr) !important;
  gap: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.fotta-pack-card:hover,
.fotta-pack-card:focus-visible {
  border-color: transparent !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

.fotta-pack-card__badge {
  top: 12px !important;
  left: 12px !important;
  z-index: 3 !important;
}

.fotta-pack-card__image {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 0 !important;
  background: #f4f5ef !important;
}

.fotta-pack-card__image::before {
  content: none !important;
}

.fotta-pack-card__image img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  padding: 18px !important;
  margin: 0 !important;
  transition: opacity 220ms ease, transform 220ms ease !important;
}

.fotta-pack-card__image-secondary {
  opacity: 0 !important;
}

.fotta-pack-card:hover .fotta-pack-card__image-primary,
.fotta-pack-card:focus-visible .fotta-pack-card__image-primary {
  opacity: 0 !important;
  transform: scale(1.03) !important;
}

.fotta-pack-card:hover .fotta-pack-card__image-secondary,
.fotta-pack-card:focus-visible .fotta-pack-card__image-secondary {
  opacity: 1 !important;
  transform: scale(1.03) !important;
}

.fotta-pack-card__content {
  padding: 14px 0 0 !important;
  gap: 6px !important;
}

.fotta-pack-card__product {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--fotta-soft-ink) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0.01em !important;
}

.fotta-pack-card__title {
  min-height: 0 !important;
  font-size: clamp(17px, 1.2vw, 22px) !important;
  line-height: 1.08 !important;
}

.fotta-pack-card__quantity {
  font-size: 12px !important;
  font-weight: 700 !important;
}

.fotta-pack-card__prices {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  margin-top: 2px !important;
}

.fotta-pack-card__prices del {
  order: 2 !important;
  color: rgba(23, 32, 20, 0.5) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.fotta-pack-card__prices ins,
.fotta-pack-card--simple .fotta-pack-card__prices ins {
  order: 1 !important;
  color: var(--fotta-ink) !important;
  font-size: clamp(23px, 1.8vw, 30px) !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
}

.fotta-pack-card__prices .woocommerce-Price-currencySymbol {
  font-size: 1em !important;
  margin-left: 0 !important;
}

.fotta-pack-card__prices small,
.fotta-pack-card__prices .woocommerce-price-suffix {
  margin-left: 0 !important;
  color: rgba(23, 32, 20, 0.72) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

@media (max-width: 640px) {
  .fotta-product-card {
    padding: 16px !important;
    border-radius: 22px !important;
  }

  .fotta-product-banner {
    width: min(100%, calc(100vw - 20px));
  }

  .fotta-pack-card__image img {
    padding: 14px !important;
  }
}

/* Fotta Pack Selector release marker: v1.2.1 cleaner grid pricing + bio */
.fotta-pack-card {
  border-radius: 12px !important;
}

.fotta-pack-card__image {
  border-radius: 12px !important;
  background: transparent !important;
}

.fotta-pack-card__image img {
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.fotta-pack-card__content {
  padding: 10px 0 0 !important;
  gap: 4px !important;
}

.fotta-pack-card__product {
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
}

.fotta-pack-card__title {
  font-size: clamp(15px, 1.05vw, 19px) !important;
  line-height: 1.08 !important;
}

.fotta-pack-card__quantity {
  font-size: 11px !important;
  font-weight: 700 !important;
}

.fotta-pack-card__prices {
  gap: 6px !important;
  margin-top: 2px !important;
}

.fotta-pack-card__prices del {
  order: 1 !important;
  font-size: 11px !important;
  font-weight: 750 !important;
}

.fotta-pack-card__prices ins,
.fotta-pack-card--simple .fotta-pack-card__prices ins {
  order: 2 !important;
  font-size: clamp(15px, 1.2vw, 20px) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

.fotta-pack-card__prices small,
.fotta-pack-card__prices .woocommerce-price-suffix {
  order: 3 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-transform: none !important;
}

.fotta-pack-card__bio {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #7ed321;
  color: #0f200a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fotta-product-feature--bio {
  background: #7ed321 !important;
  color: #102109 !important;
  border-color: rgba(16, 33, 9, 0.08) !important;
}

/* Fotta Pack Selector release marker: v1.2.3 product-card cleanup + accordion polish */
.fotta-pack-option,
.fotta-pack-option:hover,
.fotta-pack-option:focus-visible,
.fotta-product-card .fotta-pack-option,
.fotta-product-card .fotta-pack-option:hover,
.fotta-product-card .fotta-pack-option:focus-visible {
  transform: none !important;
}

.fotta-product-card .fotta-pack-gallery {
  gap: 18px !important;
}

.fotta-product-card .fotta-pack-gallery__main {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  overflow: visible !important;
}

.fotta-product-card .fotta-pack-gallery__main img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  position: static !important;
  inset: auto !important;
}

.fotta-product-card .fotta-pack-gallery__main:hover img {
  transform: none !important;
}

.fotta-product-card__accordion {
  overflow: hidden;
}

.fotta-product-card__accordion summary::after {
  transition: transform 220ms ease;
}

.fotta-product-card__accordion[open] summary::after {
  transform: rotate(180deg);
}

.fotta-product-card__accordion-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 280ms ease, opacity 220ms ease, padding-top 220ms ease;
  will-change: max-height, opacity;
}

.fotta-product-card__accordion[open] .fotta-product-card__accordion-body {
  padding-top: 10px;
}

/* Fotta Pack Selector release marker: v1.2.4 full-width product section + smoother success focus */
.fotta-product-card,
.fotta-product-banner {
  width: 100% !important;
  max-width: 100% !important;
}

.fotta-product-card {
  margin: clamp(28px, 5vw, 72px) 0 !important;
}

.fotta-product-banner {
  margin: 0 0 clamp(28px, 5vw, 72px) !important;
}

.fotta-product-card .fotta-pack-gallery__main,
.fotta-product-card .fotta-pack-gallery__main img {
  border-radius: 0 !important;
  background: transparent !important;
}

/* Fotta Pack Selector release marker: v1.3.0 scoped theme colors + configurable grid filters */
.fotta-product-card .fotta-pack-gallery__main img {
  border-radius: 18px !important;
}

.fotta-product-card .fotta-product-card__title,
.fotta-product-card .fotta-product-card__description,
.fotta-product-card .fotta-product-card__description p,
.fotta-product-card .fotta-product-card__details,
.fotta-product-card .fotta-product-card__accordion summary,
.fotta-product-card .fotta-product-card__accordion-body {
  color: var(--fotta-product-custom-text) !important;
}

.fotta-product-card .fotta-product-card__eyebrow,
.fotta-product-card .fotta-product-feature,
.fotta-product-card .fotta-pack-selector__eyebrow,
.fotta-product-card .fotta-pack-option__label,
.fotta-product-card .fotta-pack-option__quantity,
.fotta-product-card .fotta-pack-option__prices,
.fotta-product-card .fotta-pack-option__notice,
.fotta-product-card .fotta-pack-option__saving {
  color: var(--fotta-ink) !important;
}

.fotta-product-card .fotta-product-card__eyebrow,
.fotta-product-card .fotta-product-feature,
.fotta-product-card .fotta-pack-selector__eyebrow {
  background: #ffffff !important;
}

.fotta-pack-grid-shell {
  display: grid;
  gap: 24px;
}

.fotta-pack-grid-filters {
  display: grid;
  gap: 18px;
  margin-bottom: 4px;
}

.fotta-pack-grid-filter-group {
  display: grid;
  gap: 10px;
}

.fotta-pack-grid-filter-group__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(23, 32, 20, 0.62);
}

.fotta-pack-grid-filter-group__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fotta-pack-grid-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f5f6ef;
  color: var(--fotta-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.fotta-pack-grid-filter-chip:hover,
.fotta-pack-grid-filter-chip:focus-visible {
  background: #ecefe0;
  color: var(--fotta-ink);
  outline: none;
}

.fotta-pack-grid-filter-chip.is-active {
  background: var(--fotta-ink);
  color: #ffffff;
}

.fotta-pack-grid {
  grid-template-columns: repeat(var(--fotta-pack-grid-desktop, 4), minmax(0, 1fr)) !important;
}

.fotta-pack-grid__empty {
  grid-column: 1 / -1;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f5f6ef;
  color: var(--fotta-soft-ink);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .fotta-pack-grid {
    grid-template-columns: repeat(var(--fotta-pack-grid-tablet, 2), minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .fotta-pack-grid {
    grid-template-columns: repeat(var(--fotta-pack-grid-mobile, 1), minmax(0, 1fr)) !important;
  }
}

/* Fotta Pack Selector release marker: v1.3.2 instant filters + sorting */
.fotta-product-card .fotta-product-card__title,
.fotta-product-card h1.fotta-product-card__title {
  color: var(--fotta-product-custom-text) !important;
  -webkit-text-fill-color: var(--fotta-product-custom-text) !important;
}

.fotta-product-card .fotta-product-card__description,
.fotta-product-card .fotta-product-card__description p,
.fotta-product-card .fotta-product-card__accordion summary,
.fotta-product-card .fotta-product-card__accordion-body {
  color: var(--fotta-product-custom-text) !important;
}

.fotta-product-card .fotta-pack-option__prices,
.fotta-product-card .fotta-pack-option__prices ins,
.fotta-product-card .fotta-pack-option__prices del,
.fotta-product-card .fotta-pack-option__prices small,
.fotta-product-card .fotta-pack-option__saving,
.fotta-product-card .fotta-pack-option__notice,
.fotta-product-card .fotta-simple-purchase__price,
.fotta-product-card .fotta-simple-purchase__price .amount,
.fotta-product-card .fotta-simple-purchase__price .woocommerce-Price-amount,
.fotta-product-card .fotta-simple-purchase__price .woocommerce-price-suffix {
  color: var(--fotta-product-custom-bg) !important;
}

.fotta-pack-grid-shell {
  gap: 18px !important;
}

.fotta-pack-grid-filters {
  margin: 0 0 8px !important;
}

.fotta-pack-grid-filters__row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
}

.fotta-pack-grid-filter-select {
  display: grid;
  gap: 6px;
  min-width: 180px;
}

.fotta-pack-grid-filter-select span {
  display: block;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(23, 32, 20, 0.62);
}

.fotta-pack-grid-filter-select select {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(23, 32, 20, 0.12);
  border-radius: 14px;
  background: #f6f7f2;
  color: var(--fotta-ink);
}

.fotta-pack-grid-filter-stock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  margin-left: 4px;
  border-left: 1px solid rgba(23, 32, 20, 0.12);
}

.fotta-pack-grid-filter-select--sort {
  margin-left: auto;
}

.fotta-pack-grid-filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.fotta-pack-grid-filter-reset {
  background: #f3f4ee;
  color: var(--fotta-soft-ink);
}

.fotta-pack-grid-filters__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fotta-pack-grid {
  display: grid !important;
  grid-template-columns: repeat(var(--fotta-pack-grid-desktop, 4), minmax(0, 1fr)) !important;
}

.fotta-pack-card__image {
  aspect-ratio: 1 / 1 !important;
}

.fotta-pack-carousel {
  display: grid;
  gap: 18px;
}

.fotta-pack-carousel__viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (16px * (var(--fotta-carousel-desktop, 4) - 1))) / var(--fotta-carousel-desktop, 4));
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 8px;
}

.fotta-pack-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.fotta-pack-carousel__viewport .fotta-pack-card {
  scroll-snap-align: start;
  transform: none !important;
}

.fotta-pack-carousel__viewport .fotta-pack-card:hover,
.fotta-pack-carousel__viewport .fotta-pack-card:focus-visible {
  transform: none !important;
}

.fotta-pack-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.fotta-pack-carousel__meta {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.fotta-pack-carousel__count {
  color: rgba(23, 32, 20, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.fotta-pack-carousel__progress {
  display: block;
  width: min(100%, 320px);
  height: 3px;
  border-radius: 999px;
  background: rgba(23, 32, 20, 0.1);
  overflow: hidden;
}

.fotta-pack-carousel__progress span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: var(--fotta-ink);
}

.fotta-pack-carousel__nav {
  display: inline-flex;
  gap: 10px;
}

.fotta-pack-carousel__button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 32, 20, 0.08);
  color: var(--fotta-ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .fotta-pack-grid {
    grid-template-columns: repeat(var(--fotta-pack-grid-tablet, 2), minmax(0, 1fr)) !important;
  }

  .fotta-pack-carousel__viewport {
    grid-auto-columns: calc((100% - (16px * (var(--fotta-carousel-tablet, 2) - 1))) / var(--fotta-carousel-tablet, 2));
  }
}

@media (max-width: 640px) {
  .fotta-pack-grid-filters__row {
    align-items: stretch;
  }

  .fotta-pack-grid-filter-select,
  .fotta-pack-grid-filters__actions,
  .fotta-pack-grid-filter-stock {
    width: 100%;
  }

  .fotta-pack-grid-filters__actions {
    order: 3;
  }

  .fotta-pack-grid-filter-stock {
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
  }

  .fotta-pack-grid-filter-select--sort {
    margin-left: 0;
    order: 4;
  }

  .fotta-pack-grid {
    grid-template-columns: repeat(var(--fotta-pack-grid-mobile, 1), minmax(0, 1fr)) !important;
  }

  .fotta-pack-carousel__viewport {
    grid-auto-columns: calc((100% - (16px * (var(--fotta-carousel-mobile, 1) - 1))) / var(--fotta-carousel-mobile, 1));
  }

  .fotta-pack-carousel__controls {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Fotta Pack Selector release marker: v1.3.5 mobile card radius hard-fix */
@media (max-width: 640px) {
  .fotta-pack-card {
    overflow: hidden !important;
    border-radius: 14px !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }

  .fotta-pack-card__image,
  .fotta-pack-card__image::before,
  .fotta-pack-card__image img,
  .fotta-pack-card__image-primary,
  .fotta-pack-card__image-secondary {
    border-radius: 14px !important;
    clip-path: inset(0 round 14px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .fotta-pack-card__image {
    overflow: hidden !important;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }
}
