/** Shopify CDN: Minification failed

Line 18:2 All "@import" rules must come first
Line 19:2 All "@import" rules must come first
Line 114:2 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
/* --- RESET all Blockshop/Theme styles --- */
  #custom-banner-section {
    all: revert;
    display: block;
    margin-bottom: 60px; /* 🔥 odstęp od następnych sekcji */
  }

  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Futura&display=swap');

  /* --- Base layout --- */
  #custom-banner-section .banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  #custom-banner-section .banner-image {
    width: 100%;
    height: auto;
    display: block;
  }

  #custom-banner-section .banner-image.mobile { display: none; }

  #custom-banner-section .banner-text {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 40%;
  }

  #custom-banner-section h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 3vw;
    line-height: 1.2;
    margin-bottom: 1vw;
  }

  #custom-banner-section p {
    font-family: 'Futura', sans-serif !important;
    font-size: 1.2vw;
    line-height: 1.4;
    margin-bottom: 2vw;
  }

  #custom-banner-section a {
    background-color: #F9CAD4;
    color: #9D574E;
    text-decoration: none;
    padding: 1vw 2.4vw;
    border-radius: 50px;
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    font-size: 1.1vw;
    display: inline-block;
  }

  /* --- Mobile version --- */
  @media (max-width: 768px) {
    #custom-banner-section .banner-image.desktop { display: none; }
    #custom-banner-section .banner-image.mobile {
      display: block;
      width: 100%;
      height: 100vh;
      object-fit: cover;
      object-position: center 50%; /* 🔥 mocniejsze przycięcie od góry */
    }

    #custom-banner-section .banner-text {
      position: absolute;
      top: 9vh; /* 🔥 lekko wyżej, żeby tekst wchodził w górne 40% */
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      max-width: 90%;
      width: 90%;
      height: 40vh;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      padding-bottom: 5vh; /* 🔥 mały bufor od dołu tekstu */
    }

    #custom-banner-section h2 {
      font-size: 7vw;
      line-height: 1.2;
    }

    #custom-banner-section p {
      font-size: 4vw;
      line-height: 1.4;
    }

    #custom-banner-section a {
      font-size: 4vw;
      padding: 3vw 6vw;
      border-radius: 60px;
    }
  }
/* Google Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

  /* Global Reset for Landing Page */
  #custom-landing-vip-club { 
    all: revert; 
    display: block; 
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #F5F1ED;
  }

  #custom-landing-vip-club *,
  #custom-landing-vip-club *::before,
  #custom-landing-vip-club *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  #custom-landing-vip-club h1, 
  #custom-landing-vip-club h2, 
  #custom-landing-vip-club h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
  }

  #custom-landing-vip-club img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  #custom-landing-vip-club a {
    text-decoration: none;
    color: inherit;
  }

  /* Hero Section */
  #custom-landing-vip-club .lp-hero {
    background: #FFFBF7;
    padding: 80px 40px;
  }

  #custom-landing-vip-club .hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
  }

  #custom-landing-vip-club .hero-image {
    flex: 0 0 42%;
  }

  #custom-landing-vip-club .hero-image img {
    width: 100%;
    border-radius: 30px;
  }

  #custom-landing-vip-club .hero-content {
    flex: 1;
    text-align: center;
  }

  #custom-landing-vip-club .hero-content h1 {
    font-size: 40px;
    margin-bottom: 26px;
    color: #1a1a1a;
    line-height: 1.25;
  }

  #custom-landing-vip-club .hero-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #2a2a2a;
  }

  #custom-landing-vip-club .hero-description p {
    margin-bottom: 0;
  }

  #custom-landing-vip-club .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8B2F39;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  }

  #custom-landing-vip-club .button-icon {
    font-size: 16px;
  }

  #custom-landing-vip-club .cta-button:hover {
    background: #6d2430;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 47, 57, 0.3);
  }

  /* Subtitle Section */
  #custom-landing-vip-club .lp-subtitle {
    background: #FFFBF7;
    padding: 40px 30px 60px;
    text-align: center;
  }

  #custom-landing-vip-club .lp-subtitle p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 400;
  }

  /* Benefits Section */
  #custom-landing-vip-club .lp-benefits {
    background: #FFFBF7;
    padding: 20px 30px 60px;
  }

  #custom-landing-vip-club .benefits-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }

  #custom-landing-vip-club .benefit-item {
    text-align: center;
  }

  #custom-landing-vip-club .benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #custom-landing-vip-club .benefit-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }

  #custom-landing-vip-club .benefit-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.4;
  }

  #custom-landing-vip-club .benefit-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
  }

  /* Quote Section */
  #custom-landing-vip-club .lp-quote {
    background: #FFFBF7;
    padding: 30px 30px 60px;
    text-align: center;
  }

  #custom-landing-vip-club .stars-image {
    margin-bottom: 24px;
  }

  #custom-landing-vip-club .stars-image img {
    margin: 0 auto;
    height: 26px;
    width: auto;
  }

  #custom-landing-vip-club .quote-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 400;
  }

  #custom-landing-vip-club .quote-text strong {
    font-weight: 600;
  }

  /* Scrolling Gallery Section */
  #custom-landing-vip-club .lp-gallery-scroll {
    background: #FFFBF7;
    padding: 0 0 70px 0;
    overflow: hidden;
    position: relative;
  }

  #custom-landing-vip-club .gallery-scroll-track {
    display: flex;
    gap: 16px;
    animation: scroll 40s linear infinite;
    width: fit-content;
  }

  #custom-landing-vip-club .gallery-scroll-item {
    flex-shrink: 0;
    width: 220px;
  }

  #custom-landing-vip-club .gallery-scroll-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  #custom-landing-vip-club .lp-gallery-scroll:hover .gallery-scroll-track {
    animation-play-state: paused;
  }

  /* Static Carousel Section */
  #custom-landing-vip-club .lp-static-carousel {
    background: #FFFBF7;
    padding: 70px 40px;
    overflow: hidden;
  }

  #custom-landing-vip-club .carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  #custom-landing-vip-club .carousel-wrapper {
    flex: 1;
    overflow: hidden;
  }

  #custom-landing-vip-club .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
  }

  #custom-landing-vip-club .carousel-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }

  #custom-landing-vip-club .carousel-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }

  #custom-landing-vip-club .carousel-nav {
    background: #8B2F39;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    line-height: 1;
    padding: 0;
  }

  #custom-landing-vip-club .carousel-nav:hover {
    background: #6d2430;
    transform: scale(1.1);
  }

  #custom-landing-vip-club .carousel-nav:active {
    transform: scale(0.95);
  }

  #custom-landing-vip-club .carousel-dots {
    text-align: center;
    margin-top: 30px;
  }

  #custom-landing-vip-club .carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4c4b8;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #custom-landing-vip-club .carousel-dot:hover {
    background: #b8a79a;
  }

  #custom-landing-vip-club .carousel-dot.active {
    background: #8B2F39;
    width: 12px;
    height: 12px;
  }

  /* How It Works Section */
  #custom-landing-vip-club .lp-how-it-works {
    background: #FFFBF7;
    padding: 70px 40px;
  }

  #custom-landing-vip-club .how-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
  }

  #custom-landing-vip-club .how-text {
    flex: 1;
    text-align: left;
  }

  #custom-landing-vip-club .how-text h2 {
    font-size: 38px;
    margin-bottom: 26px;
    color: #1a1a1a;
  }

  #custom-landing-vip-club .how-description {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 32px;
    color: #2a2a2a;
  }

  #custom-landing-vip-club .how-description p {
    margin-bottom: 12px;
  }

  #custom-landing-vip-club .how-image-wrapper {
    flex: 0 0 45%;
    position: relative;
  }

  #custom-landing-vip-club .how-image-wrapper img {
    width: 100%;
    border-radius: 24px;
  }

  #custom-landing-vip-club .badge-overlay {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 130px;
    height: 130px;
    background: #8B2F39;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10;
  }

  #custom-landing-vip-club .badge-line1 {
    font-size: 15px;
    font-weight: 500;
    display: block;
    line-height: 1.3;
  }

  #custom-landing-vip-club .badge-line2 {
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-top: 2px;
  }

  /* Get Card Section */
  #custom-landing-vip-club .lp-get-card {
    background: #FFFBF7;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 40px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #custom-landing-vip-club .get-card-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #custom-landing-vip-club .get-card-content-box {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 50px 55px;
    text-align: center;
    max-width: 580px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  #custom-landing-vip-club .get-card-content-box h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
  }

  #custom-landing-vip-club .get-card-steps {
    font-size: 15px;
    line-height: 1.9;
    color: #2a2a2a;
    text-align: center;
  }

  #custom-landing-vip-club .get-card-steps p {
    margin-bottom: 10px;
  }

  #custom-landing-vip-club .get-card-steps strong {
    font-weight: 600;
  }

  /* Final CTA Section */
  #custom-landing-vip-club .lp-final-cta {
    background: #FFFBF7;
    padding: 20px 30px 80px;
    text-align: center;
  }

  #custom-landing-vip-club .cta-button-large {
    display: inline-block;
    background: #8B2F39;
    color: #fff;
    padding: 16px 52px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  #custom-landing-vip-club .cta-button-large:hover {
    background: #6d2430;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 47, 57, 0.3);
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
    #custom-landing-vip-club .hero-container,
    #custom-landing-vip-club .how-container {
      gap: 50px;
    }

    #custom-landing-vip-club .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    #custom-landing-vip-club .get-card-container {
      gap: 30px;
    }
  }

  @media (max-width: 768px) {
    #custom-landing-vip-club .lp-hero {
      padding: 50px 24px;
    }

    #custom-landing-vip-club .hero-container {
      flex-direction: column;
      gap: 40px;
    }

    #custom-landing-vip-club .hero-image {
      flex: 0 0 auto;
      width: 100%;
      max-width: 400px;
    }

    #custom-landing-vip-club .hero-content h1 {
      font-size: 32px;
    }

    #custom-landing-vip-club .hero-description {
      font-size: 14px;
    }

    #custom-landing-vip-club .lp-subtitle {
      padding: 30px 24px 50px;
    }

    #custom-landing-vip-club .lp-subtitle p {
      font-size: 15px;
    }

    #custom-landing-vip-club .lp-benefits {
      padding: 20px 24px 50px;
    }

    #custom-landing-vip-club .benefits-grid {
      grid-template-columns: 1fr;
      gap: 45px;
      max-width: 350px;
      margin: 0 auto;
    }

    #custom-landing-vip-club .lp-quote {
      padding: 30px 24px 50px;
    }

    #custom-landing-vip-club .quote-text {
      font-size: 16px;
    }

    #custom-landing-vip-club .lp-gallery-scroll {
      padding: 0 0 60px 0;
    }

    #custom-landing-vip-club .gallery-scroll-item {
      width: 180px;
    }

    #custom-landing-vip-club .gallery-scroll-item img {
      height: 240px;
    }

    #custom-landing-vip-club .lp-static-carousel {
      padding: 50px 20px;
    }

    #custom-landing-vip-club .carousel-container {
      gap: 20px;
    }

    #custom-landing-vip-club .carousel-nav {
      width: 45px;
      height: 45px;
      font-size: 24px;
    }

    #custom-landing-vip-club .carousel-slide {
      flex: 0 0 calc((100% - 20px) / 2);
      max-width: calc((100% - 20px) / 2);
    }

    #custom-landing-vip-club .carousel-slide img {
      height: 250px;
    }

    #custom-landing-vip-club .carousel-track {
      gap: 20px;
    }
  }

  @media (max-width: 480px) {
    #custom-landing-vip-club .carousel-slide {
      flex: 0 0 100%;
      max-width: 100%;
    }

    #custom-landing-vip-club .carousel-container {
      gap: 15px;
    }

    #custom-landing-vip-club .carousel-nav {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }

    #custom-landing-vip-club .carousel-slide img {
      height: 200px;
    }

    #custom-landing-vip-club .carousel-track {
      gap: 0;
    }

    #custom-landing-vip-club .lp-how-it-works {
      padding: 60px 24px;
    }

    #custom-landing-vip-club .how-container {
      flex-direction: column-reverse;
      gap: 40px;
    }

    #custom-landing-vip-club .how-image-wrapper {
      flex: 0 0 auto;
      width: 100%;
    }

    #custom-landing-vip-club .badge-overlay {
      width: 110px;
      height: 110px;
      top: -20px;
      right: -15px;
    }

    #custom-landing-vip-club .badge-line1 {
      font-size: 13px;
    }

    #custom-landing-vip-club .badge-line2 {
      font-size: 11px;
    }

    #custom-landing-vip-club .how-text {
      text-align: center;
    }

    #custom-landing-vip-club .how-text h2 {
      font-size: 30px;
    }

    #custom-landing-vip-club .how-description {
      font-size: 14px;
    }

    #custom-landing-vip-club .lp-get-card {
      padding: 80px 24px;
      min-height: 500px;
    }

    #custom-landing-vip-club .get-card-content-box {
      padding: 40px 35px;
      max-width: 100%;
    }

    #custom-landing-vip-club .get-card-content-box h2 {
      font-size: 28px;
    }

    #custom-landing-vip-club .get-card-steps {
      font-size: 14px;
    }

    #custom-landing-vip-club .lp-final-cta {
      padding: 20px 24px 70px;
    }

    #custom-landing-vip-club .cta-button-large {
      padding: 15px 45px;
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    #custom-landing-vip-club .hero-content h1 {
      font-size: 26px;
    }

    #custom-landing-vip-club .how-text h2,
    #custom-landing-vip-club .get-card-content-box h2 {
      font-size: 24px;
    }

    #custom-landing-vip-club .gallery-scroll-item {
      width: 150px;
    }

    #custom-landing-vip-club .gallery-scroll-item img {
      height: 200px;
    }
  }