/** Shopify CDN: Minification failed

Line 252:0 Unexpected "}"

**/
/* ==========================================================================
   Fizz Product Page — RTL Hebrew, Mobile-First
   Bugo-style layout: main image + grid below, info on right
   ========================================================================== */

/* --- Layout --- */
.fizz-product {
  padding: 24px 0 48px;
  direction: rtl;
  overflow-x: hidden;
}

/* Space for sticky ATC bar at bottom */
body:has(.fizz-product__sticky-atc) {
  padding-bottom: 70px;
}

.fizz-product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  align-items: start;
}

@media (min-width: 750px) {
  .fizz-product__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 40px;
  }
}

@media (min-width: 990px) {
  .fizz-product__grid {
    gap: 60px;
    padding: 0 60px;
  }
}

/* --- Media / Gallery — Bugo style --- */
.fizz-product__media {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 750px) {
  .fizz-product__media {
    position: sticky;
    top: 120px;
    align-self: start;
    display: block;
  }
}

/* === GALLERY === */
.fizz-product__main-image {
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #f8f8f8;
  cursor: zoom-in;
  position: relative;
}

@media (max-width: 749px) {
  .fizz-product__main-image {
    margin: 0 24px;
    width: auto;
  }
}

@media (min-width: 750px) {
  .fizz-product__main-image {
    max-width: 100%;
    margin: 0;
  }
}

.fizz-product__main-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.fizz-product__main-image:hover img {
  transform: scale(1.05);
}

/* Image grid below main image (2 columns) */
.fizz-product__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.fizz-product__grid-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #f8f8f8;
  cursor: pointer;
  transition: opacity 0.2s ease;
  position: relative;
}

.fizz-product__grid-image:hover {
  opacity: 0.85;
}

.fizz-product__grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fizz-product__grid-image--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
}

.fizz-product__grid-image--video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  color: #fff;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Thumbnail strip */
.fizz-product__thumbnails {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  direction: rtl;
}

.fizz-product__thumbnails::-webkit-scrollbar {
  display: none;
}

.fizz-product__thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.2s ease;
  background: #f8f8f8;
  padding: 0;
}

.fizz-product__thumb:hover,
.fizz-product__thumb.is-active {
  border-color: #081C26;
}

.fizz-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fizz-product__thumb--video {
  position: relative;
}

.fizz-product__thumb--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
}

.fizz-product__thumb--video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  color: #fff;
  z-index: 1;
}

/* Mobile: show thumbnails, hide 2-col grid */
.fizz-product__image-grid {
  display: none;
}

@media (min-width: 750px) {
  /* Desktop: hide thumbnails, show 2-col grid */
  .fizz-product__thumbnails {
    display: none;
  }

  .fizz-product__image-grid {
    display: grid;
  }

  .fizz-product__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }
}

/* Gallery nav arrows — hidden on all screens */
.fizz-product__gallery-nav {
  display: none !important;
}

  .fizz-product__gallery-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* --- Product Info --- */
.fizz-product__info {
  padding-top: 20px;
  overflow: hidden;
  max-width: 100%;
  align-self: start;
}

@media (min-width: 750px) {
  .fizz-product__info {
    padding-top: 0;
    align-self: start;
    align-self: start;
  }
}

/* Title */
.fizz-product__title {
  font-family: "Ploni", "Kefir", "Discovery-Fs", var(--font-heading-family), sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  color: #081C26;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

@media (min-width: 750px) {
  .fizz-product__title {
    font-size: 2.6rem;
  }
}

/* Subtitle */
.fizz-product__subtitle {
  font-size: 1.25rem;
  color: #00DEC8;
  margin: 0 0 18px;
  line-height: 1.5;
  font-weight: 600;
}

@media (min-width: 750px) {
  .fizz-product__subtitle {
    font-size: 1.4rem;
    margin-bottom: 22px;
  }
}

/* Reviews — rating number style */
.fizz-product__reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.fizz-product__stars {
  display: flex;
  gap: 2px;
  direction: ltr;
}

.fizz-product__stars svg {
  width: 22px;
  height: 22px;
  color: #FFB800;
  fill: #FFB800;
}

.fizz-product__rating-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #081C26;
}

.fizz-product__rating-number {
  font-weight: 600;
  font-size: 1.05rem;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.02em;
  direction: ltr;
  unicode-bidi: isolate;
}

.fizz-product__rating-separator {
  color: #ccc;
  font-weight: 300;
}

.fizz-product__rating-happy {
  color: #5a6a72;
  font-size: 0.95rem;
}

.fizz-product__rating-happy-number {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  direction: ltr;
  unicode-bidi: isolate;
}

/* Feature bullets */
.fizz-product__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fizz-product__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.1rem;
  font-size: 1.05rem;
  color: #081C26;
  line-height: 1.5;
}

@media (min-width: 750px) {
  .fizz-product__feature {
    font-size: 1.2rem;
  }
}

.fizz-product__feature svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #00DEC8;
  margin-top: 1px;
}

/* Price */
.fizz-product__price-area {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
  direction: ltr;
}

.fizz-product__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #081C26;
}

.fizz-product__price--sale {
  color: #0B2F3F;
}

.fizz-product__compare-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

/* Add to Cart — clean, no price */
.fizz-product__atc-wrapper {
  margin-bottom: 16px;
}

.fizz-product__atc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 60px;
  background: #00DEC8;
  color: #081C26;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.fizz-product__atc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 222, 200, 0.3);
  background: #00f0d8;
}

.fizz-product__atc:active {
  transform: translateY(0);
}

.fizz-product__atc:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading spinner */
.fizz-product__atc .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #081C26;
  border-top-color: transparent;
  border-radius: 50%;
  animation: fizz-spin 0.6s linear infinite;
}

.fizz-product__atc.is-loading .spinner {
  display: block;
}

.fizz-product__atc.is-loading .fizz-product__atc-text {
  opacity: 0;
}

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

/* Trust badges row — with icons */
.fizz-product__trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.fizz-product__trust-badge {
  padding: 12px 14px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #081C26;
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.fizz-product__trust-badge:first-child {
  border-right: 1px solid #e8e8e8;
}

.fizz-product__trust-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.fizz-product__trust-icon svg {
  width: 18px;
  height: 18px;
  color: #00DEC8;
}

.fizz-product__trust-badges--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.fizz-product__trust-badges--3 .fizz-product__trust-badge:not(:last-child) {
  border-right: 1px solid #e8e8e8;
}

/* Feature icons row */
.fizz-product__icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
  padding: 8px 0;
}

.fizz-product__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  min-width: 70px;
  max-width: 100px;
}

.fizz-product__icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

@media (min-width: 750px) {
  .fizz-product__icon-img {
    width: 64px;
    height: 64px;
  }
}

.fizz-product__icon-label {
  font-size: 0.7rem;
  text-align: center;
  color: #081C26;
  font-weight: 500;
  line-height: 1.2;
}

/* --- Accordion --- */
.fizz-product__accordion {
  border-top: 1px solid #e8e8e8;
}

.fizz-product__accordion:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.fizz-product__accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #081C26;
  text-align: right;
  transition: color 0.2s ease;
}

@media (min-width: 750px) {
  .fizz-product__accordion-btn {
    font-size: 1.25rem;
  }
}

.fizz-product__accordion-btn:hover {
  color: #00DEC8;
}

.fizz-product__accordion-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #081C26;
}

.fizz-product__accordion.is-open .fizz-product__accordion-icon {
  transform: rotate(180deg);
}

.fizz-product__accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 8px;
}

.fizz-product__accordion.is-open .fizz-product__accordion-body {
  max-height: 600px;
  padding: 0 8px 16px;
}

.fizz-product__accordion-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3a4a52;
}

.fizz-product__accordion-content p {
  margin: 0 0 8px;
}

.fizz-product__accordion-content ul {
  padding-right: 20px;
  padding-left: 0;
  margin: 0 0 8px;
}

.fizz-product__accordion-content li {
  margin-bottom: 4px;
}

.fizz-product__accordion-content strong {
  color: #081C26;
}

/* --- Variant picker --- */
.fizz-product__variants {
  margin-bottom: 16px;
}

.fizz-product__variant-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #081C26;
  margin-bottom: 8px;
  display: block;
}

.fizz-product__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fizz-product__variant-option {
  padding: 8px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 60px;
  background: #fff;
  color: #081C26;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fizz-product__variant-option:hover {
  border-color: #081C26;
}

.fizz-product__variant-option.is-selected {
  border-color: #081C26;
  background: #081C26;
  color: #fff;
}

/* --- Quantity selector --- */
.fizz-product__qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  border: 2px solid #e8e8e8;
  border-radius: 60px;
  overflow: hidden;
  width: fit-content;
}

.fizz-product__qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #081C26;
  transition: background 0.2s ease;
}

.fizz-product__qty-btn:hover {
  background: #f5f5f5;
}

.fizz-product__qty-input {
  width: 48px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #081C26;
  background: none;
  -moz-appearance: textfield;
}

.fizz-product__qty-input::-webkit-inner-spin-button,
.fizz-product__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- Badges on image (scoped to media container) --- */
.fizz-product__media {
  z-index: 0;
}

.fizz-product__badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  top: auto;
  right: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.fizz-product__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fizz-product__badge--sale {
  background: #00DEC8;
  color: #081C26;
}

.fizz-product__badge--custom {
  background: #081C26;
  color: #fff;
}

/* --- Sticky ATC --- */
.fizz-product__sticky-atc {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  z-index: 50;
  direction: rtl;
}

.fizz-product__sticky-atc.is-visible {
  display: block;
}

.fizz-product__sticky-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
}

.fizz-product__sticky-info {
  flex: 1;
  min-width: 0;
}

.fizz-product__sticky-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #081C26;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fizz-product__sticky-price {
  font-size: 0.8rem;
  color: #5a6a72;
  direction: ltr;
  text-align: right;
}

.fizz-product__sticky-btn {
  flex-shrink: 0;
  padding: 12px 24px;
  border: none;
  border-radius: 60px;
  background: #00DEC8;
  color: #081C26;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fizz-product__sticky-btn:hover {
  background: #00f0d8;
}

/* --- Sold out --- */
.fizz-product__atc--sold-out {
  background: #e8e8e8;
  color: #999;
  cursor: not-allowed;
}

.fizz-product__atc--sold-out:hover {
  transform: none;
  box-shadow: none;
  background: #e8e8e8;
}

/* --- Reviews Ticker (inline, under accordions) --- */
.fizz-reviews-ticker {
  margin-top: 20px;
  direction: rtl;
  overflow: hidden;
  min-height: 70px;
}

.fizz-reviews-ticker__card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafa;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 14px 18px;
  color: #081C26;
  line-height: 1.5;
  animation: fizz-review-fade 8s ease-in-out infinite;
}

@keyframes fizz-review-fade {
  0%, 10% { opacity: 0; transform: translateY(10px); }
  15%, 85% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-10px); }
}

.fizz-reviews-ticker__stars {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
  margin-top: 2px;
  direction: ltr;
}

.fizz-reviews-ticker__stars svg {
  width: 14px;
  height: 14px;
  color: #FFB800;
  fill: #FFB800;
}

.fizz-reviews-ticker__content {
  flex: 1;
  min-width: 0;
}

.fizz-reviews-ticker__name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
  color: #081C26;
}

.fizz-reviews-ticker__text {
  font-size: 0.9rem;
  color: #3a4a52;
  line-height: 1.5;
}

/* --- Mobile adjustments --- */
@media (max-width: 749px) {
  .fizz-product__media {
    margin: 0 -16px;
  }

  .fizz-product__main-image {
    border-radius: 0;
  }

  .fizz-product__image-grid {
    padding: 0 8px;
    gap: 6px;
    margin-top: 6px;
  }

  .fizz-product__grid-image {
    border-radius: 8px;
  }

  .fizz-product__badges {
    left: 8px;
    bottom: 8px;
    right: auto;
    top: auto;
  }

  .fizz-product__sticky-atc {
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

/* --- Print --- */
@media print {
  .fizz-product__sticky-atc,
  .fizz-product__gallery-nav,
  .fizz-social-ticker {
    display: none !important;
  }
}