/** Shopify CDN: Minification failed

Line 27:15 Expected identifier but found whitespace
Line 27:17 Unexpected "{"
Line 27:26 Expected ":"
Line 85:15 Expected identifier but found whitespace
Line 85:17 Unexpected "{"
Line 85:26 Expected ":"
Line 127:14 Expected identifier but found whitespace
Line 127:22 Unexpected "{"
Line 127:31 Expected ":"
Line 127:38 Expected identifier but found "10s"
... and 4 more hidden warnings

**/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Container for the entire section */
  .gallery-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    background: {{ section.settings.background_color }};
    padding-bottom: 35px;
  }
 .gallery-section .copywrite-text-imp{
    position: absolute;
    color: #ffffff;
    bottom: 7px;
    max-width: 50%;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    right: 10%;
 }
  /* Left sticky content */
  .left-content {
    flex: 0 0 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
  }

  .left-content h2 {
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    color: #ffffff;
    font-family: 'Albert Sans', sans-serif;
  }

  /* .highlight {
    background: linear-gradient(90deg, {{ section.settings.gradient_start }}, {{ section.settings.gradient_end }});
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  } */

  .left-content p {
    font-size: 17.6px;
    color: rgba(227, 230, 235, 0.5);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 400;
    font-family: 'Albert Sans', sans-serif;
  }

  /* Right scrolling gallery */
  .right-gallery {
    flex: 0 0 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: {{ section.settings.gallery_background }};
  }

  /* Gallery items */
  .gallery-item {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
  }

  .gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  /* Decorative elements */
  .floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-{{ section.id }} 10s infinite linear;
  }

  @keyframes float-{{ section.id }} {
    from {
      transform: translateY(100vh) rotate(0deg);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    to {
      transform: translateY(-100vh) rotate(360deg);
      opacity: 0;
    }
  }

  .kira-os__buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 25px;
  }
.list-content{
    margin: 10px 0 0 30px;
    font-family: 'Albert Sans', sans-serif;
    color: rgba(227, 230, 235, 0.5);
    font-size: 16px;
}
.list-title{
    font-family: 'Albert Sans', sans-serif;
    font-weight: 300;
    font-size: 20px; 
}
  .kira-os__button {
    padding: 12px 24px;
    border: .5px solid #ffffff;
    background: #0e100f80;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .625rem;
    border-radius: 30px;
    transition: all .3s ease;
    cursor: pointer;
    text-decoration: none;
  }

  .kira-os__buttons .kira-os__button:first-child {
    background: #fff;
    color: #1d212e;
    border-color: #fff;
  }

  .kira-os__button span {
    line-height: 22px;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Albert Sans', sans-serif;
  }

  .kira-os__buttons .kira-os__button:first-child span {
    color: #1d212e;
  }

  .kira-os__button .svg-1 svg{
    width: 25px;
    height: 25px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .kira-os__buttons .kira-os__button:last-child span {
    color: #fff;
  }

  .kira-os__button .svg-2 svg{
    width: 25px;
    height: 25px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .kira-os__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #ffffff1a;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .gallery-section {
      flex-direction: column;
    }

    .left-content {
      flex: none;
      position: relative;
      height: auto;
      min-height: 50vh;
      padding: 60px 40px;
    }

    .right-gallery {
      flex: none;
    }

    .gallery-item {
      height: 100vh;
    }

    .gallery-item img {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .kira-os__buttons {
      flex-direction: column;
    }

    .kira-os__button {
      width: 100%;
    }
    .gallery-item{
      height: 60vh;
    }
  }