/** Shopify CDN: Minification failed

Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 23:16 Expected identifier but found whitespace
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 24:16 Expected identifier but found whitespace
Line 24:18 Unexpected "{"
Line 24:27 Expected ":"
Line 25:16 Expected identifier but found whitespace
... and 12 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:gift-section (INDEX:59) */
:root {
  --nature-primary: {{ section.settings.primary_color | default: '#1a4d2e' }};
  --nature-gold: {{ section.settings.gold_accent | default: '#c5a572' }};
  --nature-soft: {{ section.settings.soft_green | default: '#a8c09a' }};
  --nature-dark: {{ section.settings.text_dark | default: '#0f172a' }};
  --nature-light: {{ section.settings.text_light | default: '#64748b' }};
  --nature-bg: {{ section.settings.bg_color | default: '#f8fafc' }};
}

.gift-exceptional-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--nature-bg) 0%, #f0f7f4 50%, #e8f5e8 100%);
  overflow: hidden;
  font-family: {{ section.settings.font_family.family }}, serif;
}

/* Éléments décoratifs organiques */
.gift-exceptional-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 77, 46, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.gift-exceptional-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.gift-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.gift-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  min-height: 600px;
}

/* Section de contenu côté gauche */
.gift-content-side {
  position: relative;
}

.gift-floating-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--nature-primary), var(--nature-soft));
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px rgba(26, 77, 46, 0.2);
  transform: rotate(-8deg);
  z-index: 2;
}

.gift-main-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 200;
  color: var(--nature-dark);
  line-height: 1.1;
  margin: 40px 0 30px 0;
  letter-spacing: -0.03em;
  position: relative;
}

.gift-main-headline .accent-word {
  background: linear-gradient(135deg, var(--nature-primary), var(--nature-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  position: relative;
}

.gift-main-headline .accent-word::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--nature-gold), transparent);
  border-radius: 2px;
}

.gift-description {
  font-size: 1.3rem;
  color: var(--nature-light);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 500px;
}

.gift-features-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.gift-features-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--nature-dark);
  font-weight: 500;
}

.gift-features-list li::before {
  content: '✓';
  background: linear-gradient(135deg, var(--nature-primary), var(--nature-soft));
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.gift-price-showcase {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
  border: 2px solid rgba(197, 165, 114, 0.1);
  position: relative;
  overflow: hidden;
}

.gift-price-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--nature-primary), var(--nature-gold));
}

.gift-price-label {
  font-size: 14px;
  color: var(--nature-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gift-price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--nature-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.gift-price-old {
  font-size: 1.4rem;
  color: var(--nature-light);
  text-decoration: line-through;
  font-weight: 400;
}

.gift-savings-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.gift-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.gift-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--nature-primary), var(--nature-soft));
  color: white;
  padding: 20px 40px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(26, 77, 46, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.gift-primary-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--nature-gold), var(--nature-primary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gift-primary-cta:hover::before {
  opacity: 1;
}

.gift-primary-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 77, 46, 0.4);
}

.gift-primary-cta span,
.gift-primary-cta svg {
  position: relative;
  z-index: 1;
}

.gift-secondary-info {
  text-align: center;
  font-size: 14px;
  color: var(--nature-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Section image côté droit - EXTRAORDINAIRE */
.gift-image-side {
  position: relative;
  height: 600px;
}

.gift-main-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gift-main-image-container:hover {
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.8);
}

.gift-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.gift-main-image-container:hover .gift-hero-image {
  transform: scale(1.05);
}

/* Éléments décoratifs flottants */
.gift-floating-element {
  position: absolute;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.gift-quality-badge {
  top: 40px;
  right: -30px;
  width: 140px;
  text-align: center;
  background: linear-gradient(135deg, var(--nature-gold), #e2b880);
  color: white;
  transform: rotate(12deg);
  z-index: 3;
}

.gift-quality-badge .badge-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.gift-quality-badge .badge-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gift-eco-badge {
  bottom: 60px;
  left: -40px;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(-8deg);
  z-index: 3;
}

.gift-eco-badge .eco-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--nature-primary), var(--nature-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
}

.gift-eco-badge .eco-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--nature-dark);
  line-height: 1.3;
}

.gift-delivery-info {
  bottom: -20px;
  right: 40px;
  background: rgba(255, 255, 255, 0.98);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gift-delivery-info .delivery-icon {
  width: 36px;
  height: 36px;
  background: var(--nature-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.gift-delivery-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--nature-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .gift-hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .gift-image-side {
    order: -1;
    height: 400px;
  }
  
  .gift-main-image-container {
    transform: none;
    border-radius: 24px;
  }
  
  .gift-main-image-container:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .gift-exceptional-section {
    min-height: auto;
    padding: 60px 0;
  }
  
  .gift-container {
    padding: 0 16px;
  }
  
  .gift-hero-layout {
    gap: 40px;
  }
  
  .gift-image-side {
    height: 300px;
  }
  
  .gift-floating-badge {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    display: inline-block;
    margin-bottom: 20px;
  }
  
  .gift-floating-element {
    position: relative;
    transform: none !important;
    margin: 20px 0;
  }
  
  .gift-quality-badge,
  .gift-eco-badge,
  .gift-delivery-info {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: inline-block;
    margin: 10px;
  }
  
  .gift-price-showcase {
    margin: 30px 0;
    padding: 24px;
  }
  
  .gift-primary-cta {
    padding: 18px 36px;
    font-size: 16px;
  }
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.gift-floating-element {
  animation: float 3s ease-in-out infinite;
}

.gift-floating-element:nth-child(2) {
  animation-delay: 0.5s;
}

.gift-floating-element:nth-child(3) {
  animation-delay: 1s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gift-content-side {
  animation: slideInLeft 0.8s ease-out;
}

.gift-image-side {
  animation: slideInRight 0.8s ease-out 0.2s both;
}
/* END_SECTION:gift-section */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:our-story-button (INDEX:172) */
/* ── Section wrapper ── */
  .our-story-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 0px;
    background-color: #ffffff; /* white background */
    position: relative;
    overflow: hidden;
  }

  /* Optional: soft vignette to mimic the blurred background in the image */
  .our-story-section::before {
    content: '';
    position: absolute;
    inset: 0;
    
    pointer-events: none;
  }

  /* ── Button ── */
  .our-story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border: 1.5px solid rgba(0, 0, 0, 0.65);
    border-radius: 50px;            /* pill shape */
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  /* Hover: subtle glow */
  .our-story-btn:hover {
    border-color: rgba(0, 0, 0, 1);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
  }

  /* Hover fill sweep */
  .our-story-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.04);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .our-story-btn:hover::after {
    opacity: 1;
  }

  /* ── Label ── */
  .our-story-btn__text {
    font-family: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: rgba(0, 0, 0, 0.85);
    text-transform: uppercase;
    position: relative; /* above ::after overlay */
    z-index: 1;
    transition: color 0.3s ease;
  }
  .our-story-btn:hover .our-story-btn__text {
    color: #000000;
  }

  /* ── Active / tap state ── */
  .our-story-btn:active {
    transform: scale(0.97);
  }
/* END_SNIPPET:our-story-button */