/** Shopify CDN: Minification failed

Line 30:15 Expected identifier but found whitespace
Line 30:17 Unexpected "{"
Line 30:26 Expected ":"
Line 30:52 Expected ":"
Line 35:21 Expected identifier but found whitespace
Line 35:23 Unexpected "{"
Line 35:32 Expected ":"
Line 56:12 Expected identifier but found whitespace
Line 56:14 Unexpected "{"
Line 56:23 Expected ":"
... and 132 more hidden warnings

**/


/* CSS from section stylesheet tags */
.luxury-conversion-section {
    font-family: var(--font-body-family);
  }

  .luxury-conversion-section * {
    box-sizing: border-box;
  }

  /* Video Hero Section */
  .luxury-hero {
    position: relative;
    min-height: {{ section.settings.hero_height }}vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: {{ section.settings.bg_color }};
  }

  .luxury-hero__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .luxury-hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: {{ section.settings.video_opacity | divided_by: 100.0 }};
  }

  .luxury-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
      {{ section.settings.overlay_color | color_modify: 'alpha', 0.3 }} 0%, 
      {{ section.settings.overlay_color | color_modify: 'alpha', 0.85 }} 100%);
    z-index: 1;
  }

  .luxury-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
  }

  .luxury-hero__badge {
    display: inline-block;
    border: 1px solid {{ section.settings.accent_color | color_modify: 'alpha', 0.5 }};
    color: {{ section.settings.accent_color }};
    padding: 10px 30px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    background: {{ section.settings.accent_color | color_modify: 'alpha', 0.05 }};
  }

  .luxury-hero__title {
    font-size: {{ section.settings.title_size }}px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: {{ section.settings.title_color }};
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }

  .luxury-hero__subtitle {
    font-size: {{ section.settings.subtitle_size }}px;
    color: {{ section.settings.accent_color }};
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 1px;
  }

  .luxury-hero__cta {
    display: inline-block;
    background: transparent;
    color: {{ section.settings.button_text_color }};
    padding: 18px 50px;
    border: 1px solid {{ section.settings.accent_color }};
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }

  .luxury-hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: {{ section.settings.accent_color }};
    transition: left 0.4s ease;
    z-index: -1;
  }

  .luxury-hero__cta:hover::before {
    left: 0;
  }

  .luxury-hero__cta:hover {
    color: {{ section.settings.bg_color }};
    border-color: {{ section.settings.accent_color }};
  }

  /* Gallery Section */
  .luxury-gallery {
    padding: {{ section.settings.section_padding }}px 40px;
    background-color: {{ section.settings.bg_color }};
  }

  .luxury-gallery__header {
    text-align: center;
    margin-bottom: 80px;
  }

  .luxury-gallery__title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: {{ section.settings.title_color }};
  }

  .luxury-gallery__subtitle {
    font-size: 18px;
    color: {{ section.settings.text_color | color_modify: 'alpha', 0.6 }};
    letter-spacing: 1px;
  }

  .luxury-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .luxury-gallery__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: {{ section.settings.bg_color }};
  }

  .luxury-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(30%) brightness(0.8);
  }

  .luxury-gallery__item:hover .luxury-gallery__image {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
  }

  .luxury-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: {{ section.settings.overlay_color | color_modify: 'alpha', 0.7 }};
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px;
  }

  .luxury-gallery__item:hover .luxury-gallery__overlay {
    opacity: 1;
  }

  .luxury-gallery__product-title {
    font-size: 24px;
    color: {{ section.settings.title_color }};
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .luxury-gallery__price {
    font-size: 18px;
    color: {{ section.settings.accent_color }};
    margin-bottom: 20px;
  }

  .luxury-gallery__cta {
    border: 1px solid {{ section.settings.accent_color }};
    color: {{ section.settings.title_color }};
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .luxury-gallery__cta:hover {
    background: {{ section.settings.accent_color }};
    color: {{ section.settings.bg_color }};
  }

  /* Features Section */
  .luxury-features {
    padding: {{ section.settings.section_padding }}px 40px;
    background: {{ section.settings.bg_color | color_modify: 'lightness', '+5' }};
  }

  .luxury-features__grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
  }

  .luxury-features__item {
    text-align: center;
    padding: 40px;
  }

  .luxury-features__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    stroke: {{ section.settings.accent_color }};
    opacity: 0.8;
  }

  .luxury-features__title {
    font-size: 22px;
    color: {{ section.settings.title_color }};
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .luxury-features__description {
    font-size: 16px;
    color: {{ section.settings.text_color | color_modify: 'alpha', 0.6 }};
    line-height: 1.8;
  }

  /* Stats Section */
  .luxury-stats {
    padding: 100px 40px;
    background: linear-gradient(135deg, 
      {{ section.settings.bg_color | color_modify: 'lightness', '+8' }} 0%, 
      {{ section.settings.bg_color }} 100%);
  }

  .luxury-stats__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    text-align: center;
  }

  .luxury-stats__number {
    font-size: 56px;
    color: {{ section.settings.accent_color }};
    font-weight: 300;
    margin-bottom: 10px;
  }

  .luxury-stats__label {
    font-size: 14px;
    color: {{ section.settings.text_color | color_modify: 'alpha', 0.6 }};
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* Newsletter Section */
  .luxury-newsletter {
    padding: {{ section.settings.section_padding }}px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .luxury-newsletter__title {
    font-size: 42px;
    color: {{ section.settings.title_color }};
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .luxury-newsletter__subtitle {
    font-size: 18px;
    color: {{ section.settings.text_color | color_modify: 'alpha', 0.6 }};
    margin-bottom: 40px;
  }

  .luxury-newsletter__form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .luxury-newsletter__input {
    flex: 1;
    padding: 18px 30px;
    background: {{ section.settings.bg_color | color_modify: 'lightness', '+10' }};
    border: 1px solid {{ section.settings.text_color | color_modify: 'alpha', 0.2 }};
    color: {{ section.settings.title_color }};
    font-size: 14px;
    letter-spacing: 1px;
  }

  .luxury-newsletter__input:focus {
    outline: none;
    border-color: {{ section.settings.accent_color }};
  }

  .luxury-newsletter__button {
    padding: 18px 40px;
    background: {{ section.settings.accent_color }};
    border: none;
    color: {{ section.settings.bg_color }};
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
  }

  .luxury-newsletter__button:hover {
    background: {{ section.settings.accent_color | color_modify: 'lightness', '+10' }};
  }

  @media (max-width: 768px) {
    .luxury-hero__title {
      font-size: 36px;
    }
    .luxury-gallery__grid {
      grid-template-columns: 1fr;
    }
    .luxury-newsletter__form {
      flex-direction: column;
    }
  }