/** Shopify CDN: Minification failed

Line 378:25 Expected identifier but found whitespace
Line 378:27 Unexpected "{"
Line 378:33 Expected ":"
Line 378:66 Expected ":"
Line 379:24 Expected identifier but found whitespace
Line 379:26 Unexpected "{"
Line 379:33 Expected ":"
Line 379:65 Expected ":"

**/


/* CSS from section stylesheet tags */
.page-width {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
.certifications__container {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 80%;
    gap: 2rem;
  }

  .certifications__box-text {
    color: #333;
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
  }

  .certifications__info-text p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
    line-height: 1.75;
    text-align: center;
    padding: 1rem;
  }

  @media (min-width: 1200px) {
    .certifications__container {
      width: 50%;
    }
  }
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.custom-footer {
    background-color: #333;
    padding: 15px;
    color: #fff;
  }

  .footer__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__logo-left,
  .footer__logo-right {
    flex: 0 0 auto;
  }

  .footer__copyright {
    flex: 1 1 auto;
    text-align: center;
    font-size: 14px;
    color: #fff;
  }

  /* Default styles for logos (desktop) */
  .footer__image-left {
    width: var(--logo-left-width-desktop);
  }

  .footer__image-right {
    width: var(--logo-right-width-desktop);
  }

  .footer__image {
    height: auto;
  }

  /* Responsive styles */
  @media (max-width: 749px) {
    .footer__image-left {
      width: var(--logo-left-width-mobile);
    }

    .footer__image-right {
      width: var(--logo-right-width-mobile);
    }

    .footer__row {
      flex-direction: column;
      text-align: center;
    }
  }
.header__container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: var(--color-background, #fff);
  }
.sub-header__box__container {
    display: flex;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 1rem;
  }

  .sub-header__box-text {
    color: #fff;
    font-size: 0.875rem;
    text-align: center;
    font-weight: 300;
  }

  .sub-header__info_container {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 80%;
    gap: 2rem;
  }

  .sub-header__info-text p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
    line-height: 1.75;
    text-align: center;
    padding: 1rem;
  }

  @font-face {
    font-family: 'Vladimir';
    src: url('/cdn/shop/files/Vladimir.woff2?v=1756055955') format('woff2');
  }
  .vladimir-font {
    position: relative;
    font-family: 'Vladimir', cursive;
    font-size: 2.5rem;
    padding: 0.5rem;
    background-color: #333;
    color: #fff;
  }

  .vladimir-font::before,
  .vladimir-font::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 10px;
  }

  .vladimir-font::before {
    top: 0;
    background: #e4ca2b;
  }

  .vladimir-font::after {
    bottom: 0;
    background: #09b8e0;
  }

  @media (min-width: 1200px) {
    .sub-header__info_container {
      width: 50%;
    }
    .vladimir-font {
      font-size: 4rem;
    }
  }

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    text-align: center;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.image__container {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .image__container img {
    object-fit: fill;
    filter: blur(10px);
    opacity: 0.7;
    transition: filter 0.6s ease, opacity 0.6s ease;
    will-change: filter, opacity;
  }

  .image__container img.loaded {
    filter: blur(0px);
    opacity: 1;
  }

  @media screen and (min-width: 768px) {
    .image__container {
      border-bottom-right-radius: 80px;
      border-bottom-left-radius: 80px;
    }
  }
.language-picker__container {
    position: relative;
  }

  .language-picker__button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: var(--font-light);
    transition: border-color 0.3s ease;
  }

  .language-picker__button:hover {
    border-color: #888;
  }

  .language-picker__arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .language-picker__button.active .language-picker__arrow {
    transform: rotate(180deg);
  }

  .language-picker__dropdown {
    position: absolute;
    top: 28px;
    left: 0px;
    right: 0;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 6px;
    list-style: none;
    padding: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    max-width: 100%;
  }

  .language-picker__dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .language-picker__label {
    font-size: 0.785rem;
  }

  .language-picker__dropdown-item {
    padding: 10px;
    cursor: pointer;
    font-weight: var(--font-light);
    font-size: 0.785rem;
  }

  .language-picker__dropdown-item:hover {
    background-color: #f0f0f0;
  }

  @media screen and (min-width: 768px) {
    .language-picker__button {
      padding: 6px 10px;
    }

    .language-picker__label {
      font-size: 0.875rem;
    }

    .language-picker__dropdown-item {
      font-size: 0.875rem;
    }
  }
*{
    --logo-width-desktop: {{block.settings.logo_width_desktop }}px;
    --logo-width-mobile: {{ block.settings.logo_width_mobile }}px;
  }

    .header__logo {
      width: var(--logo-width-desktop);
      height: auto;
    }

    @media (max-width: 749px) {
      .header__logo {
        width: var(--logo-width-mobile);
      }
    }
.product-grid-section {
    padding: 2rem;
    width: 100%;
  }

  .product-main {
    width: 100%;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  @media (max-width: 1024px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .product-grid {
      grid-template-columns: 1fr;
    }

    .variant-thumb {
      width: 48px;
      height: 48px;
    }
  }

  .product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.25rem;
  }

  .main-image {
    width: 100%;
    height: 280px;
    max-width: none !important;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.3s ease;
    pointer-events: none;
    user-select: none;
  }

  .product-title {
    font-size: 0.875rem;
    text-align: center;
    color: #fff;
    position: absolute;
    font-weight: 400;
    top: 1.5rem;
    left: 0;
    right: 0;
    background-color: #333;
    padding: 0.5rem;
  }

  .variant-thumb {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
  }

  .variant-thumb:hover,
  .variant-thumb.selected {
    opacity: 1;
    transform: scale(1.1);
    border: 2px solid #007bff;
  }

  .swiper {
    position: relative;
  }

  .swiper-slide {
    width: auto;
    height: auto;
    padding: 5px;
  }

  @media (max-width: 460px) {
    .product-grid {
      grid-template-columns: 1fr;
    }

    .variant-thumb {
      width: 50px;
      height: 50px;
    }
  }
  .custom-pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 8px;
    flex-wrap: wrap;
  }

  .pagination-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
  }

  .page-ball.dots {
    color: #000 !important;
  }

  /* Dots (balls) */
  .page-ball {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 500;
  }

  .page-ball:hover {
    background-color: #fff;
    color: #000;
    border: 0.5px solid #000;
    transform: scale(1.05);
  }

  .page-ball.current {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border: 0.5px solid #000;
  }

  .page-ball.dots {
    background: transparent;
    box-shadow: none;
    cursor: default;
    pointer-events: none;
  }

  /* Arrows */
  .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    background-color: #000;
    border-radius: 6px;
    color: #fff;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: bold;
  }

  .arrow:hover {
    background-color: #555;
    color: #fff;
    transform: scale(1.05);
  }

  .arrow.disabled {
    background-color: #333;
    color: #777;
    cursor: not-allowed;
    pointer-events: none;
  }

  .arrow.prev {
    margin-right: 0.4rem;
  }

  .arrow.next {
    margin-left: 0.4rem;
  }

  /* 📱 Mobile Enhancements */
  @media (max-width: 480px) {
    .custom-pagination {
      padding: 0.5rem;
    }

    .pagination-nav {
      gap: 0.3rem;
    }

    .page-ball,
    .arrow {
      width: 28px;
      height: 28px;
      font-size: 12px;
    }

    .page-ball.current {
      font-size: 13px;
    }

    .arrow {
      border-radius: 4px;
    }
  }
.stroke-block {
    background-color: var(--stroke-color-mobile);
    width: var(--stroke-width-mobile);
    height: var(--stroke-height-mobile);
  }

  @media screen and (min-width: 768px) {
    .stroke-block {
      background-color: var(--stroke-color-tablet);
      width: var(--stroke-width-tablet);
      height: var(--stroke-height-tablet);
    }
  }

  @media screen and (min-width: 1024px) {
    .stroke-block {
      background-color: var(--stroke-color-desktop);
      width: var(--stroke-width-desktop);
      height: var(--stroke-height-desktop);
    }
  }
.text-block {
    width: 100%;
    word-break: break-word;

    /* MOBILE (default) */
    text-align: var(--alignment-mobile);
    font-size: var(--font-size-mobile);
    font-weight: var(--font-weight-mobile);
    color: var(--color-mobile);
    line-height: var(--line-height-mobile);
    letter-spacing: var(--letter-spacing-mobile);
    text-transform: var(--text-transform-mobile);
    padding: var(--padding-mobile);
    margin: var(--margin-mobile);
  }

  /* TABLET */
  @media screen and (min-width: 768px) {
    .text-block {
      text-align: var(--alignment-tablet);
      font-size: var(--font-size-tablet);
      font-weight: var(--font-weight-tablet);
      color: var(--color-tablet);
      line-height: var(--line-height-tablet);
      letter-spacing: var(--letter-spacing-tablet);
      text-transform: var(--text-transform-tablet);
      padding: var(--padding-tablet);
      margin: var(--margin-tablet);
    }
  }

  /* DESKTOP */
  @media screen and (min-width: 1024px) {
    .text-block {
      text-align: var(--alignment-desktop);
      font-size: var(--font-size-desktop);
      font-weight: var(--font-weight-desktop);
      color: var(--color-desktop);
      line-height: var(--line-height-desktop);
      letter-spacing: var(--letter-spacing-desktop);
      text-transform: var(--text-transform-desktop);
      padding: var(--padding-desktop);
      margin: var(--margin-desktop);
    }
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }