/** Shopify CDN: Minification failed

Line 166:18 Expected identifier but found whitespace
Line 166:20 Unexpected "{"
Line 166:33 Expected ":"
Line 166:38 Expected ":"
Line 167:21 Expected identifier but found whitespace
Line 167:23 Unexpected "{"
Line 167:39 Expected ":"
Line 167:44 Expected ":"
Line 520:20 Expected identifier but found whitespace
Line 520:22 Unexpected "{"
... and 38 more hidden warnings

**/


/* CSS from section stylesheet tags */
.cta-style-2 {
    position: relative;
    overflow: hidden;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  /* Placeholder Styling */
  .cta-style-2__background-placeholder,
  .cta-style-2__overlay-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0, 0, 0, 0.2);
  }

  .cta-style-2__placeholder-content {
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
  }

  .cta-style-2__placeholder-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.5rem auto;
    stroke-width: 1.5;
  }

  .cta-style-2__placeholder-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
  }
/* Base featured product styles */
  .featured-product {
    position: relative;
    min-height: var(--min-height);
  }

  .featured-product__body {
    position: relative;
    min-height: var(--min-height);
    padding: 0 var(--outer);
  }

  @media only screen and (min-width: 750px) {
    .featured-product__body {
      display: flex;
      align-items: flex-start;
      position: static;
      min-height: var(--height);
      padding: 0;
    }

    .featured-product.is-reversed .featured-product__body {
      flex-direction: row-reverse;
    }
  }

  @media only screen and (min-width: 750px) {
    .featured-product__content {
      position: sticky;
      top: var(--top);
      flex: 0 0 50%;
      display: flex;
      align-items: center;
      z-index: 3;
      min-width: 0;
      min-height: inherit;
      padding: var(--outer) 0;
      background: var(--bg);
    }
  }

  .featured-product__card {
    padding: var(--outer) 0;
  }

  @media only screen and (min-width: 750px) {
    .featured-product__card {
      flex: 0 0 50%;
      min-width: 0;
      padding: 0;
      margin: 0 auto;
    }
  }

  .featured-product__aside {
    flex: 0 0 50%;
    position: relative;
    min-width: 0;
    background: var(--bg);
    transform: translateZ(0);
  }

  .featured-product__image {
    position: relative;
    margin-bottom: 1rem;
  }

  .featured-product__image:last-child {
    margin-bottom: 0;
  }

  .featured-product__image .image-wrapper {
    width: 100%;
    aspect-ratio: var(--aspect-ratio, 1);
    overflow: hidden;
    border-radius: 0.5rem;
  }

  .featured-product__image .image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  /* Product card styles */
  .product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
  }

  .product-link:hover {
    opacity: 0.75;
  }

  .product-item__title {
    margin: 0;
    line-height: 1.3;
  }

  .price--compare {
    opacity: 0.7;
  }
.featured-product {
      @apply grid w-full grid-cols-12 gap-6 gap-y-8 md:gap-y-0 gap-x-6;
    }
.hero-style-2 {
    --padding-top: {{ padding_top }}px;
    --padding-bottom: {{ padding_bottom }}px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
  }

  .hero-style-2 {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .hero-style-2--full-width {
    width: 100%;
    max-width: 100%;
  }

  .hero-style-2--rounded {
    border-radius: 1rem;
    margin: 1rem;
  }

  .hero-style-2__wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .hero-style-2__container {
    position: relative;
    z-index: 2;
    min-height: 500px;
  }

  /* Content Styling */
  .hero-style-2__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-style-2__header-label {
    margin-bottom: 0.5rem;
  }

  .hero-style-2__heading h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
  }

  .hero-style-2__text {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
  }

  .hero-style-2__text p:last-child {
    margin-bottom: 0;
  }

  /* Buttons */
  .hero-style-2__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
  }

  .hero-style-2__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 160px;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-style-2__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
  }

  .hero-style-2__button:hover::before {
    left: 100%;
  }

  .hero-style-2__button--primary {
    background: linear-gradient(135deg, var(--color-secondary-dark, #003f08) 0%, var(--color-secondary, #566c2a) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 63, 8, 0.3);
  }

  .hero-style-2__button--primary:hover {
    background: linear-gradient(135deg, var(--color-secondary, #566c2a) 0%, var(--color-secondary-dark, #003f08) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 63, 8, 0.4);
  }

  .hero-style-2__button--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-secondary-dark, #003f08);
    border-color: var(--color-secondary-dark, #003f08);
    backdrop-filter: blur(10px);
  }

  .hero-style-2__button--secondary:hover {
    background: var(--color-secondary-dark, #003f08);
    color: white;
    transform: translateY(-2px);
  }

  .hero-style-2__button:focus {
    outline: 3px solid var(--color-primary, #e1eb00);
    outline-offset: 2px;
  }

  .hero-style-2__button-arrow {
    width: 1.125rem;
    height: 1.125rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .hero-style-2__button:hover .hero-style-2__button-arrow {
    transform: translateX(3px);
  }

  /* Image Styling */
  .hero-style-2__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-style-2__image-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }

  .hero-style-2__image-container--rounded {
    border-radius: 1.5rem;
  }

  .hero-style-2__image-element {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .hero-style-2__image-container:hover .hero-style-2__image-element {
    transform: scale(1.05);
  }

  .hero-style-2__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
  }

  /* Placeholder Styling */
  .hero-style-2__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
    background: rgba(0, 0, 0, 0.05);
    border: 2px dashed rgba(0, 0, 0, 0.2);
  }

  .hero-style-2__placeholder-content {
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
  }

  .hero-style-2__placeholder-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem auto;
  }

  .hero-style-2__placeholder-text {
    font-size: 1rem;
    margin: 0;
  }

  /* Decorative Shapes */
  .hero-style-2__decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
  }

  .hero-style-2__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
  }

  .hero-style-2__shape--1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
  }

  .hero-style-2__shape--2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite reverse;
  }

  .hero-style-2__shape--3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 80%;
    animation: float 10s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }

  /* Background Pattern */
  .hero-style-2__background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
  }

  .hero-style-2__pattern-svg {
    width: 100%;
    height: 100%;
  }

  /* Responsive Design */
  @media screen and (max-width: 640px) {
    .hero-style-2__wrapper {
      padding: 0 0.5rem;
    }

    .hero-style-2__buttons {
      flex-direction: column;
      align-items: stretch;
    }

    .hero-style-2__button {
      width: 100%;
      justify-content: center;
    }
  }

  @media screen and (max-width: 767px) {
    .hero-style-2__container {
      gap: 2.5rem;
      min-height: auto;
    }

    .hero-style-2__content {
      text-align: center !important;
      order: 2;
    }

    .hero-style-2__image {
      order: 1;
    }

    .hero-style-2__image-container,
    .hero-style-2__image-placeholder {
      min-height: 300px;
    }

    .hero-style-2__heading h1 {
      font-size: 2.5rem;
    }

    .hero-style-2__text {
      font-size: 1.125rem;
    }
  }

  @media screen and (min-width: 768px) {
    .hero-style-2__wrapper {
      padding: 0 2rem;
    }

    .hero-style-2__container {
      gap: 4rem;
    }
  }

  @media screen and (min-width: 1024px) {
    .hero-style-2__container {
      gap: 6rem;
      min-height: 600px;
    }

    .hero-style-2__image-container,
    .hero-style-2__image-placeholder {
      min-height: 500px;
    }
  }

  @media screen and (min-width: 750px) {
    .hero-style-2 {
      --padding-top: {{ padding_top | times: 1.5 | round: 0 }}px;
      --padding-bottom: {{ padding_bottom | times: 1.5 | round: 0 }}px;
    }
  }

  /* Animation */
  @media (prefers-reduced-motion: no-preference) {
    .hero-style-2__header-label,
    .hero-style-2__heading,
    .hero-style-2__text,
    .hero-style-2__buttons {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease forwards;
    }

    .hero-style-2__image {
      opacity: 0;
      transform: scale(0.9) translateX(30px);
      animation: fadeInScale 1s ease forwards;
    }

    .hero-style-2__header-label { animation-delay: 0.1s; }
    .hero-style-2__heading { animation-delay: 0.2s; }
    .hero-style-2__text { animation-delay: 0.3s; }
    .hero-style-2__buttons { animation-delay: 0.4s; }
    .hero-style-2__image { animation-delay: 0.5s; }
  }

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

  @keyframes fadeInScale {
    to {
      opacity: 1;
      transform: scale(1) translateX(0);
    }
  }

  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .hero-style-2 [class*="__"] {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }

    .hero-style-2__button,
    .hero-style-2__image-element,
    .hero-style-2__shape {
      transition: none;
      animation: none;
    }

    .hero-style-2__button:hover,
    .hero-style-2__image-container:hover .hero-style-2__image-element {
      transform: none;
    }

    .hero-style-2__button::before {
      display: none;
    }
  }

  /* High contrast mode support */
  @media (prefers-contrast: high) {
    .hero-style-2__button,
    .hero-style-2__image-container {
      border: 2px solid currentColor;
    }

    .hero-style-2__decorative-shapes {
      display: none;
    }

    .hero-style-2__background-pattern {
      display: none;
    }
  }
.hero-style-3 {
    --padding-top: {{ padding_top }}px;
    --padding-bottom: {{ padding_bottom }}px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .hero-style-3--full-width {
    width: 100%;
    max-width: 100%;
  }

  .hero-style-3__wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .hero-style-3__container {
    position: relative;
    z-index: 2;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Content Styling */
  .hero-style-3__content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .hero-style-3__header-label {
    margin-bottom: 0.5rem;
  }

  .hero-style-3__heading h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
  }

  .hero-style-3__subheading h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    opacity: 0.8;
  }

  .hero-style-3__text {
    font-size: 1.375rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
  }

  .hero-style-3__text p:last-child {
    margin-bottom: 0;
  }

  /* Buttons */
  .hero-style-3__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }

  .hero-style-3__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-style-3__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
  }

  .hero-style-3__button:hover::before {
    left: 100%;
  }

  .hero-style-3__button--primary {
    background: linear-gradient(135deg, var(--color-secondary-dark, #003f08) 0%, var(--color-secondary, #566c2a) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 63, 8, 0.4);
  }

  .hero-style-3__button--primary:hover {
    background: linear-gradient(135deg, var(--color-secondary, #566c2a) 0%, var(--color-secondary-dark, #003f08) 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 63, 8, 0.5);
  }

  .hero-style-3__button--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-secondary-dark, #003f08);
    border-color: var(--color-secondary-dark, #003f08);
    backdrop-filter: blur(10px);
  }

  .hero-style-3__button--secondary:hover {
    background: var(--color-secondary-dark, #003f08);
    color: white;
    transform: translateY(-3px);
  }

  .hero-style-3__button:focus {
    outline: 3px solid var(--color-primary, #e1eb00);
    outline-offset: 2px;
  }

  .hero-style-3__button-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .hero-style-3__button:hover .hero-style-3__button-arrow {
    transform: translateX(4px);
  }

  /* Icon Boxes */
  .hero-style-3__icon-boxes {
    margin-top: 2rem;
  }

  .hero-style-3__icon-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .hero-style-3__icon-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .hero-style-3__icon-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .hero-style-3__icon-box-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-style-3__icon-box-icon--placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .hero-style-3__icon-box-content {
    flex: 1;
  }

  .hero-style-3__icon-box-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
  }

  .hero-style-3__icon-box-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
  }

  /* Gradient Backgrounds */
  .hero-style-3--gradient-primary {
    background: linear-gradient(135deg, var(--color-primary, #e1eb00) 0%, var(--color-secondary, #566c2a) 100%);
  }

  .hero-style-3--gradient-secondary {
    background: linear-gradient(135deg, var(--color-secondary, #566c2a) 0%, var(--color-secondary-dark, #003f08) 100%);
  }

  .hero-style-3--gradient-neutral {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  }

  .hero-style-3--gradient-sunset {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 50%, #fb923c 100%);
  }

  /* Background Pattern */
  .hero-style-3__background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
  }

  .hero-style-3__pattern-svg {
    width: 100%;
    height: 100%;
  }

  /* Decorative Elements */
  .hero-style-3__decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
  }

  .hero-style-3__decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
  }

  .hero-style-3__decoration--1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
  }

  .hero-style-3__decoration--2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
  }

  .hero-style-3__decoration--3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 85%;
    animation: float 12s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-30px) rotate(180deg);
    }
  }

  /* Responsive Design */
  @media screen and (max-width: 640px) {
    .hero-style-3__wrapper {
      padding: 0 0.5rem;
    }

    .hero-style-3__buttons {
      flex-direction: column;
      align-items: stretch;
    }

    .hero-style-3__button {
      width: 100%;
      justify-content: center;
    }

    .hero-style-3__icon-boxes-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .hero-style-3__icon-box {
      padding: 1rem;
    }
  }

  @media screen and (max-width: 767px) {
    .hero-style-3__container {
      min-height: auto;
      padding: 2rem 0;
    }

    .hero-style-3__content {
      gap: 1.5rem;
      text-align: center !important;
    }

    .hero-style-3__heading h1 {
      font-size: 2.5rem;
    }

    .hero-style-3__subheading h2 {
      font-size: 1.5rem;
    }

    .hero-style-3__text {
      font-size: 1.125rem;
    }
  }

  @media screen and (min-width: 768px) {
    .hero-style-3__wrapper {
      padding: 0 2rem;
    }

    .hero-style-3__container {
      min-height: 500px;
    }
  }

  @media screen and (min-width: 1024px) {
    .hero-style-3__container {
      min-height: 600px;
    }
  }

  @media screen and (min-width: 750px) {
    .hero-style-3 {
      --padding-top: {{ padding_top | times: 1.5 | round: 0 }}px;
      --padding-bottom: {{ padding_bottom | times: 1.5 | round: 0 }}px;
    }
  }

  /* Animation */
  @media (prefers-reduced-motion: no-preference) {
    .hero-style-3__header-label,
    .hero-style-3__heading,
    .hero-style-3__subheading,
    .hero-style-3__text,
    .hero-style-3__buttons {
      opacity: 0;
      transform: translateY(40px);
      animation: fadeInUp 1s ease forwards;
    }

    .hero-style-3__icon-boxes {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease forwards;
    }

    .hero-style-3__header-label { animation-delay: 0.1s; }
    .hero-style-3__heading { animation-delay: 0.2s; }
    .hero-style-3__subheading { animation-delay: 0.3s; }
    .hero-style-3__text { animation-delay: 0.4s; }
    .hero-style-3__buttons { animation-delay: 0.5s; }
    .hero-style-3__icon-boxes { animation-delay: 0.6s; }
  }

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

  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .hero-style-3 [class*="__"] {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }

    .hero-style-3__button,
    .hero-style-3__decoration {
      transition: none;
      animation: none;
    }

    .hero-style-3__button:hover,
    .hero-style-3__icon-box:hover {
      transform: none;
    }

    .hero-style-3__button::before {
      display: none;
    }
  }

  /* High contrast mode support */
  @media (prefers-contrast: high) {
    .hero-style-3__button,
    .hero-style-3__icon-box {
      border: 2px solid currentColor;
    }

    .hero-style-3__decorative-elements {
      display: none;
    }

    .hero-style-3__background-pattern {
      display: none;
    }
  }
.product-overview-hotspots__container {
    position: relative;
  }

  .pulsating-circle {
    width: 30px;
    height: 30px;
    position: absolute;

    &:before {
      content: '';
      position: relative;
      display: block;
      width: 120%;
      height: 120%;
      box-sizing: border-box;
      margin-left: -10%;
      margin-top: -10%;
      border-radius: 45px;
      background-color: var(--color-secondary-dark);
      animation: pulse-ring 2.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }

    &:after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      display: block;
      width: 100%;
      height: 100%;
      background-color: var(--color-secondary-dark);
      border-radius: 15px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
      animation: pulse-dot 2.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
    }
  }

  @keyframes pulse-ring {
    0% {
      transform: scale(0.1);
    }
    80%,
    100% {
      opacity: 0;
    }
  }

  @keyframes pulse-dot {
    0% {
      transform: scale(0.7);
    }
    50% {
      transform: scale(0.8);
    }
    100% {
      transform: scale(0.7);
    }
  }

  /* Hotspot Content */
  .hotspot-content {
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    height: auto;
  }

  .hotspot-content--hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
  }

  /* Decorations */
  .hotspot-decoration {
    position: absolute;
    width: 50vw;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
  }

  .hotspot-decoration[data-decoration-position='bottomRight'] {
    bottom: -55%;
    right: -10%;
  }

  .hotspot-decoration[data-decoration-position='bottomLeft'] {
    bottom: -55%;
    left: -10%;
  }

  .hotspot-decoration[data-decoration-position='topLeft'] {
    top: 3%;
    left: 72%;
  }

  .hotspot-decoration[data-decoration-position='topRight'] {
    top: 3%;
    right: 72%;
  }

  .hotspot-decoration--visible {
    opacity: var(--decoration-opacity);
  }
.social-style-1 {
    --padding-top: {{ padding_top }}px;
    --padding-bottom: {{ padding_bottom }}px;
    position: relative;
    overflow: hidden;
  }

  .social-style-1 {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .social-style-1--full-width {
    width: 100%;
    max-width: 100%;
  }

  .social-style-1__header {
    max-width: 780px;
    margin: 0 auto 3rem auto;
  }

  .social-style-1__above-heading {
    margin-bottom: 1rem;
  }

  .social-style-1__above-heading-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
  }

  .social-style-1__heading {
    margin-bottom: 1.5rem;
  }

  .social-style-1__heading h1,
  .social-style-1__heading h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
  }

  .social-style-1__additional-content {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
  }

  .social-style-1__additional-content p:last-child {
    margin-bottom: 0;
  }

  .social-style-1__content {
    width: 100%;
  }

  .social-style-1__instagram-feed {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Fallback Content Styling */
  .social-style-1__fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
    min-height: 400px;
    gap: 2rem;
  }

  .social-style-1__fallback-image {
    max-width: 300px;
    width: 100%;
  }

  .social-style-1__fallback-content {
    max-width: 500px;
  }

  .social-style-1__fallback-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
  }

  .social-style-1__fallback-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .social-style-1__fallback-text p:last-child {
    margin-bottom: 0;
  }

  .social-style-1__fallback-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737, #fcaf45, #ffdc80);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
  }

  .social-style-1__fallback-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
  }

  .social-style-1__fallback-button:focus {
    outline: 2px solid var(--color-primary, #e1eb00);
    outline-offset: 2px;
  }

  .social-style-1__instagram-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Responsive Design */
  @media screen and (max-width: 767px) {
    .social-style-1__header {
      margin-bottom: 2rem;
      text-align: center !important;
    }

    .social-style-1__heading h1,
    .social-style-1__heading h2 {
      font-size: 2rem;
    }

    .social-style-1__fallback {
      padding: 2rem 1rem;
      min-height: 300px;
    }

    .social-style-1__fallback-image {
      max-width: 250px;
    }
  }

  @media screen and (min-width: 750px) {
    .social-style-1 {
      --padding-top: {{ padding_top | times: 1.5 | round: 0 }}px;
      --padding-bottom: {{ padding_bottom | times: 1.5 | round: 0 }}px;
    }
  }

  @media screen and (min-width: 1024px) {
    .social-style-1__header {
      margin-bottom: 4rem;
    }
  }

  /* Animation */
  @media (prefers-reduced-motion: no-preference) {
    .social-style-1__above-heading,
    .social-style-1__heading,
    .social-style-1__additional-content,
    .social-style-1__content {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease forwards;
    }

    .social-style-1__above-heading { animation-delay: 0.1s; }
    .social-style-1__heading { animation-delay: 0.2s; }
    .social-style-1__additional-content { animation-delay: 0.3s; }
    .social-style-1__content { animation-delay: 0.4s; }
  }

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

  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .social-style-1 [class*="__"] {
      animation: none;
      opacity: 1;
      transform: none;
    }

    .social-style-1__fallback-button {
      transition: none;
    }
  }

  /* High contrast mode support */
  @media (prefers-contrast: high) {
    .social-style-1__fallback-button {
      background: var(--color-secondary-dark, #003f08);
      border: 2px solid white;
    }

    .social-style-1__fallback {
      border: 2px solid currentColor;
    }
  }

/* CSS from snippet stylesheet tags */
.glide__bullet--active {
    border-color: rgba(255, 255, 255, 0.9) !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.2s ease-in-out;
  }

  .glide__bullet {
    transition: all 0.2s ease-in-out;
  }