/** Shopify CDN: Minification failed

Line 678:0 Unexpected "<"

**/
/* ============================================================
   PREMIUM FOOD CAROUSEL — premium-food-carousel.css
   Place this file in: assets/premium-food-carousel.css
   It is loaded via the Liquid section using:
   {{ 'premium-food-carousel.css' | asset_url | stylesheet_tag }}
   ============================================================ */

/* ── Section Root ── */
.pfc-section-wrapper {
  display: block;
}

.pfc-section {
  --pfc-accent: #7C3D0A;
  --pfc-accent-light: rgba(45, 106, 79, 0.1);
  --pfc-text-dark: #1a1a1a;
  --pfc-text-mid: #4a4a4a;
  --pfc-text-light: #7a7a7a;
  --pfc-radius: 28px;
  --pfc-gap: 22px;
  --pfc-card-width: 380px;
  --pfc-card-height: 460px;
  --pfc-transition: 0.55s ;
  background: #faf8f3;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

/* Soft radial glow at top */
.pfc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
    ellipse 65% 45% at 50% 0%,
    rgba(45, 106, 79, 0.06) 0%,
    transparent 70%
  ); */
  pointer-events: none;
  z-index: 0;
}

/* ── Section Header ── */
.pfc-section .pfc-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pfc-accent);
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.pfc-section .pfc-heading {
  text-align: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color: var(--pfc-text-dark);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.pfc-section .pfc-subheading {
  text-align: center;
  font-size: 15px;
  color: var(--pfc-text-mid);
  margin: 0 auto 52px;
  max-width: 520px;
  line-height: 1.65;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ── Wrapper ── */
.pfc-section .pfc-wrapper {
  position: relative;
  padding: 0 64px;
}

/* ── Navigation Arrows ── */
.pfc-section .pfc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--pfc-text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  transition: all 0.25s ease;
  outline: none;
}

.pfc-section .pfc-arrow:hover {
  background: var(--pfc-accent);
  color: #fff;
  border-color: var(--pfc-accent);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) scale(1.08);
}

.pfc-section .pfc-arrow:focus-visible {
  box-shadow: 0 0 0 3px var(--pfc-accent-light), 0 4px 20px rgba(0, 0, 0, 0.10);
}

.pfc-section .pfc-arrow--prev { left: 8px; }
.pfc-section .pfc-arrow--next { right: 8px; }

.pfc-section .pfc-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ── Carousel Track ── */
.pfc-section .pfc-track-outer {
  overflow: hidden;
  border-radius: 4px;
}

.pfc-section .pfc-track {
  display: flex;
  gap: var(--pfc-gap);
  transition: transform var(--pfc-transition);
  will-change: transform;
  padding: 24px 8px 36px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.pfc-section .pfc-track:active {
  cursor: grabbing;
}

/* ── Card Base ── */
.pfc-section .pfc-card {
  flex: 0 0 var(--pfc-card-width);
  height: var(--pfc-card-height);
  background: var(--card-bg, #f2efe6);
  border-radius: var(--pfc-radius);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform var(--pfc-transition),
    box-shadow var(--pfc-transition),
    opacity 0.4s ease;
  opacity: 0.80;
  transform: scale(0.93);
}

/* Active (center) card */
.pfc-section .pfc-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Hover states */
.pfc-section .pfc-card:hover {
  transform: scale(0.96) translateY(-5px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.13),
    0 4px 20px rgba(0, 0, 0, 0.07);
  opacity: 1;
}

.pfc-section .pfc-card.is-active:hover {
  transform: scale(1.02) translateY(-7px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.16),
    0 6px 22px rgba(0, 0, 0, 0.08);
}

/* ── Card — Background Image Layer ── */
.pfc-section .pfc-card__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
}

.pfc-section .pfc-card__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Card — Decorative Blobs ── */
.pfc-section .pfc-card__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.pfc-section .pfc-card__blob--1 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  opacity: 0.5;
}

.pfc-section .pfc-card__blob--2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.06) 0%, transparent 70%);
  bottom: -40px;
  left: -30px;
  opacity: 0.8;
}

/* ── Card — Subtle Pattern Overlay ── */
.pfc-section .pfc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: repeating-linear-gradient(
    45deg,
    #000 0,
    #000 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 14px 14px;
  pointer-events: none;
}

/* ── Card — Content Block ── */
.pfc-section .pfc-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 32px;
  z-index: 5;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.48) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    transparent 100%
  );
}

/* Tag / Badge */
.pfc-section .pfc-card__tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* Card Title */
.pfc-section .pfc-card__title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 7px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

/* Card Description */
.pfc-section .pfc-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 18px;
  line-height: 1.55;
  max-width: 220px;
}

/* ── CTA Button ── */
.pfc-section .pfc-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--pfc-text-dark);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  white-space: nowrap;
}

.pfc-section .pfc-card__btn:hover {
  background: var(--pfc-accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  gap: 12px;
}

.pfc-section .pfc-card__btn:focus-visible {
  outline: 2px solid var(--pfc-accent);
  outline-offset: 2px;
}

.pfc-section .pfc-card__btn-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pfc-section .pfc-card__btn:hover .pfc-card__btn-icon {
  transform: translateX(4px);
}

/* ── Floating Product Image ── */
/* .pfc-section .pfc-card__product-wrap {
  position: absolute;
  top: 16px;
  right: 12px;
  z-index: 4;
  width: 195px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pfcFloat 4s ease-in-out infinite;
  pointer-events: none;
}

.pfc-section .pfc-card__product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
  transform-origin: center center;
  transition:
    transform var(--pfc-transition),
    filter 0.4s ease;
}

.pfc-section .pfc-card:hover .pfc-card__product-img {
  transform: scale(1.08) translateY(-8px);
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.28));
} */
 .pfc-section .pfc-card__product-wrap {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  width: 100%;
  bottom: 130px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pfcFloat 4s ease-in-out infinite;
  pointer-events: none;
}

.pfc-section .pfc-card__product-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
  transform-origin: center center;
  transition:
    transform var(--pfc-transition),
    filter 0.4s ease;
}

.pfc-section .pfc-card:hover .pfc-card__product-img {
  transform: scale(1.08) translateY(-8px);
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.28));
}

/* Placeholder when no product image is set */
.pfc-section .pfc-card__product-wrap--placeholder {
  align-items: center;
  top: 50%;
  transform: translateY(-65%);
  animation: none;
}

.pfc-section .pfc-card__placeholder-shape {
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

/* ── Card — Bottom Accent Line ── */
.pfc-section .pfc-card__accent-line {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--pfc-accent),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 2px;
  z-index: 6;
}

.pfc-section .pfc-card.is-active .pfc-card__accent-line {
  opacity: 0.85;
}

/* ── Pagination Dots ── */
.pfc-section .pfc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  padding: 4px 8px;
}

.pfc-section .pfc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.pfc-section .pfc-dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: var(--pfc-accent);
}

.pfc-section .pfc-dot:hover:not(.is-active) {
  background: rgba(0, 0, 0, 0.32);
}

.pfc-section .pfc-dot:focus-visible {
  box-shadow: 0 0 0 2px var(--pfc-accent);
}

/* ── Keyframe: Floating animation ── */
@keyframes pfcFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ── Fade-in on section load ── */
@keyframes pfcFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pfc-section .pfc-eyebrow,
.pfc-section .pfc-heading,
.pfc-section .pfc-subheading {
  animation: pfcFadeUp 0.7s ease both;
}
.pfc-section .pfc-eyebrow   { animation-delay: 0.05s; }
.pfc-section .pfc-heading   { animation-delay: 0.15s; }
.pfc-section .pfc-subheading{ animation-delay: 0.25s; }

/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .pfc-section {
    --pfc-card-width: 340px;
    --pfc-card-height: 440px;
  }
  .pfc-section .pfc-wrapper {
    padding: 0 52px;
  }
  .pfc-section .pfc-card__product-wrap {
    width: 175px;
    height: 260px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .pfc-section {
    --pfc-card-width: min(84vw, 320px);
    --pfc-card-height: 420px;
    padding: 48px 0 52px;
  }

  /* Hide arrow buttons on mobile — use swipe */
  .pfc-section .pfc-arrow {
    display: none;
  }

  .pfc-section .pfc-wrapper {
    padding: 0 14px;
  }

  .pfc-section .pfc-subheading {
    margin-bottom: 36px;
    font-size: 14px;
  }


  /* Enable native scroll-snap on mobile */
  .pfc-section .pfc-track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Disable JS-driven transform on mobile */
    transform: none !important;
    transition: none !important;
    padding: 16px 6px 24px;
    cursor: default;
  }

  .pfc-section .pfc-track::-webkit-scrollbar {
    display: none;
  }

  .pfc-section .pfc-card {
    scroll-snap-align: center;
    /* All cards full opacity on mobile */
    opacity: 1;
    transform: scale(1);
  }

  .pfc-section .pfc-card.is-active {
    transform: scale(1);
  }

  .pfc-section .pfc-card:hover {
    transform: scale(1);
  }

  .pfc-section .pfc-card__product-wrap {
    width: 150px;
    height: 220px;
  }

  .pfc-section .pfc-card__content {
    padding: 22px 20px 26px;
  }

  .pfc-section .pfc-card__desc {
    max-width: 180px;
  }

  .pfc-section .pfc-heading {
    font-size: clamp(24px, 6vw, 32px);
  }
  .pfc-section .pfc-card__product-wrap {
    position: absolute;
    top: 20%;
    left: 30%;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile (max 400px)
   ============================================================ */
@media (max-width: 400px) {
  .pfc-section {
    --pfc-card-width: 88vw;
    --pfc-card-height: 400px;
  }
  .pfc-section .pfc-card__product-wrap {
    width: 130px;
    height: 195px;
  }
  .pfc-section .pfc-card__title {
    font-size: 20px;
  }
  .pfc-section .pfc-card__desc {
    font-size: 12px;
    max-width: 160px;
  }

}

/* ============================================================
   ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .pfc-section .pfc-card__product-wrap {
    animation: none;
  }
  .pfc-section .pfc-track {
    transition: none;
  }
  .pfc-section .pfc-card {
    transition: opacity 0.2s ease;
  }
  .pfc-section .pfc-eyebrow,
  .pfc-section .pfc-heading,
  .pfc-section .pfc-subheading {
    animation: none;
  }
}

/* ============================================================
   PRINT — Hide decorative/interactive elements
   ============================================================ */
@media print {
  .pfc-section .pfc-arrow,
  .pfc-section .pfc-dots,
  .pfc-section .pfc-card__blob,
  .pfc-section .pfc-card__accent-line {
    display: none;
  }
  .pfc-section .pfc-track {
    flex-wrap: wrap;
    transform: none !important;
  }
  .pfc-section .pfc-card {
    opacity: 1;
    transform: none;
    break-inside: avoid;
    margin-bottom: 16px;
  }
}
</style>