/** Shopify CDN: Minification failed

Line 313:0 Expected "}" to go with "{"

**/
/* ============================================================================
   SAMEDI HERO BANNER STYLES
   Extracted from samedi-home-hero-banner.liquid for better performance
   ========================================================================== */

.audience-selector {
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.audience-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  min-width: 80px;
  transition: all 0.2s ease;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: transparent;
  color: #666;
}

.audience-btn.women-btn.active {
  background: #d4a574;
  color: white;
  margin-right: 4px;
}

.audience-btn.men-btn.active {
  background: #1a1a1a;
  color: white;
}

.audience-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}

.hero-section {
  display: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-section--active {
  display: block;
}

.hero-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 320px;
  padding: 40px 20px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.hero-headline {
  font-size: clamp(32px, 7vw, 48px);
  margin-bottom: 16px;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8),
               2px 2px 4px rgba(0, 0, 0, 0.6),
               0 0 30px rgba(0, 0, 0, 0.8);
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-headline--men {
  font-size: clamp(24px, 4.5vw, 38px);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease forwards;
}

.headline-line-1,
.headline-line-2 {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.headline-line-1 {
  animation: fadeInUp 1s ease forwards;
}

.headline-line-2 {
  animation: fadeInUp 1s ease forwards 0.2s;
}

.hero-subtitle {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

/* Remove will-change after animations complete */
.hero-headline.animation-complete,
.headline-line-1.animation-complete,
.headline-line-2.animation-complete,
.hero-subtitle.animation-complete {
  will-change: auto;
}

.hero-cta {
  background: #d4a574;
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  box-shadow: 0 3px 15px rgba(212, 165, 116, 0.2);
  min-width: 200px;
  justify-content: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-cta.animation-complete {
  will-change: auto;
}

.hero-cta--men {
  background: #1a1a1a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-cta:hover {
  transform: translateY(-1px);
}

.hero-cta:hover span {
  animation: arrowBounce 0.6s ease infinite;
}

.discount-notice {
  font-size: 13px;
  color: #fff;
  margin-top: 20px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  opacity: 0;
  transform: translateY(15px);
  will-change: transform, opacity;
  animation: fadeInUp 0.6s ease forwards 1s;
  white-space: nowrap;
}

.discount-notice.animation-complete {
  will-change: auto;
}

.discount-code {
  font-weight: 700;
  color: #c19660;
  letter-spacing: 1px;
  margin-left: 4px;
  display: inline;
  animation: codePulse 2s ease-in-out 2s infinite;
}

.audience-selector.hide {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
  pointer-events: none;
}

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

@keyframes arrowBounce {
  0%, 100% { transform: translateX(5px); }
  50% { transform: translateX(10px); }
}

@keyframes codePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; color: #d4a574; }
}

@media (min-width: 768px) {
  .hero-wrapper { min-height: 95vh; }
  .hero-content { max-width: 450px; }
}

@media (min-width: 1024px) {
  .hero-wrapper { min-height: 92vh; }
  .hero-content { max-width: 600px; padding: 60px 20px; }
  .hero-image { object-position: center 35%; }
  .hero-headline { font-size: clamp(42px, 4.5vw, 56px); margin-bottom: 24px; }
  .hero-headline--men { font-size: clamp(32px, 4vw, 46px); }
}

@media (min-width: 1440px) {
  .hero-wrapper { min-height: 90vh; }
  .hero-content { max-width: 900px; }
  .hero-headline { font-size: 52px; }
  .hero-headline--men { font-size: 42px; }
}

@media (max-width: 768px) {
  .hero-wrapper { min-height: 85vh; }
  .hero-overlay { display: none; }
  .hero-image { filter: brightness(0.85); }
  .hero-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
  }
  .audience-selector { top: 100px; padding: 3px; }
  .audience-btn { padding: 10px 20px; font-size: 13px; min-width: 70px; }
  .hero-headline { animation-duration: 0.8s; font-size: clamp(28px, 7vw, 36px); }
  .hero-subtitle { font-size: 14px; margin-bottom: 20px; }
  .hero-cta { animation-duration: 0.6s; animation-delay: 0.4s; padding: 12px 28px; }
  .discount-notice { animation-duration: 0.5s; animation-delay: 0.7s; }
