/** Shopify CDN: Minification failed

Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 22:8 Expected identifier but found whitespace
Line 22:10 Unexpected "{"
Line 22:19 Expected ":"
Line 46:8 Expected identifier but found whitespace
Line 46:10 Unexpected "{"
Line 46:19 Expected ":"
Line 46:66 Expected identifier but found "!"
... and 4 more hidden warnings

**/
/* ==========================================================================
   Flip Showcase Section — matches provided mockup (white front / dark radial back)
   ========================================================================== */

.flip-showcase {
  background: {{ section.settings.bg_color | default: '#ffffff' }};
  color: {{ section.settings.text_color | default: '#111111' }};
  padding: 100px 24px;
  overflow: hidden;
}

.flip-showcase__container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Header ---------- */

.flip-showcase__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.flip-showcase__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: {{ section.settings.accent_color | default: '#e11d2e' }} !important;
  margin-bottom: 14px;
}

.flip-showcase__heading {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.flip-showcase__heading-black {
  display: block;
  color: #111111 !important;
}

.flip-showcase__heading-accent {
  display: block;
  color: {{ section.settings.accent_color | default: '#e11d2e' }} !important;
}

.flip-showcase__subheading {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.6);
  margin: 0;
  font-weight: 400;
}

/* ---------- Grid (mockup: flex, centered, wraps) ---------- */

.flip-showcase__grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Flip Card ---------- */

.flip-card {
  width: 520px;
  max-width: 100%;
  height: 600px;
  perspective: 1800px;
}

.flip-card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: 1s cubic-bezier(.23, 1, .32, 1);
}

.flip-card:hover .flip-card__inner,
.flip-card:focus-within .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Front face — white card with soft shadow */

.flip-card__front {
  background: #ffffff;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .08);
}

.flip-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .8s;
}

.flip-card:hover .flip-card__image {
  transform: scale(1.08);
}

.flip-card__placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-card__placeholder svg {
  width: 40%;
  height: 40%;
  opacity: 0.25;
}

/* Back face — dark radial gradient, centered content */

.flip-card__back {
  transform: rotateY(180deg);
  background-image: radial-gradient(circle at top, #2b2b2b, #111111);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  text-align: center;
}

.flip-card__back-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flip-card__back-label {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: #999999 !important;
}

.flip-card__back-title {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #ffffff !important;
}

.flip-card__back-text {
  line-height: 1.8;
  color: #cccccc !important;
  font-size: 18px;
}

.flip-card__back-text p {
  margin: 0;
}

.flip-card__button {
  margin-top: 40px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 6px;
  font-size: 16px;
  transition: opacity 0.25s ease;
}

.flip-card__button:hover {
  opacity: 0.7;
}

/* ---------- Responsive ---------- */

@media (max-width: 600px) {
  .flip-card {
    width: 100%;
    height: 520px;
  }
  .flip-card__back {
    padding: 32px 24px;
    /* FIX: allow content to scroll inside the back face instead of being clipped */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-top: 40px;
  }
  .flip-card__back-title {
    font-size: 28px;
    margin: 14px 0;
  }
  .flip-card__back-text {
    font-size: 15px;
    line-height: 1.65;
  }
  .flip-card__button {
    margin-top: 24px;
  }
}