/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 20:16 Expected identifier but found whitespace
Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 20:78 Expected ":"
Line 21:19 Expected identifier but found whitespace
Line 21:21 Unexpected "{"
Line 21:30 Expected ":"
Line 21:84 Expected ":"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }

  @media screen and (min-width: 990px) {
    .collection-list-wrapper {
      max-width: none !important;
      width: 100% !important;
      padding-left: 60px;
      padding-right: 60px;
    }
    
    .collection-list-desktop-carousel {
      overflow: hidden;
      position: relative;
    }
    
    .collection-list-desktop-carousel .collection-list {
      display: flex !important;
      flex-wrap: nowrap !important;
      transition: transform 0.3s ease;
      gap: 20px;
    }
    
    .collection-list-desktop-carousel .collection-list__item {
      flex: 0 0 auto !important;
      width: calc((100vw - 140px) / 4);
      display: block !important;
    }
    
    .collection-list-desktop-carousel .grid {
      display: flex !important;
      grid-template-columns: none !important;
    }
    
    .collection-list-desktop-carousel .grid__item {
      grid-column: auto !important;
    }
    
    .slider-controls-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 30px;
      gap: 20px;
    }
    
    .custom-scrollbar {
      flex: 1;
      height: 4px;
      background-color: #e0e0e0;
      border-radius: 2px;
      position: relative;
      cursor: pointer;
    }
    
    .custom-scroll-thumb {
      height: 100%;
      background-color: #212121;
      border-radius: 2px;
      transition: width 0.3s ease, left 0.3s ease;
      position: absolute;
      min-width: 40px;
    }
    
    .slider-buttons {
      display: flex;
      gap: 10px;
    }
    
    .slider-button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      width: 33px;
      height: 33px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s ease;
    }
    
    .slider-button:hover {
      opacity: 0.7;
    }
    
    .slider-button:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
    
    .slider-button svg {
      width: 33px;
      height: 33px;
    }
  }

  @media screen and (max-width: 989px) {
    .slider-controls-container {
      display: none;
    }
    
    .mobile-slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
      gap: 15px;
    }
    
    .mobile-slider-controls .slider-button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      width: 33px;
      height: 33px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s ease;
    }
    
    .mobile-slider-controls .slider-button:hover {
      opacity: 0.7;
    }
    
    .mobile-slider-controls .slider-button:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
    
    .mobile-slider-controls .slider-button svg {
      width: 33px;
      height: 33px;
    }
    
    .mobile-slider-controls .slider-counter {
      font-size: 14px;
      color: #212121;
    }
  }

  @media screen and (min-width: 990px) {
    .mobile-slider-controls {
      display: none;
    }
  }
.accessories-info-section {
  padding: 60px 0;
}

.accessories-info-section .accessories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.accessories-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.accessories-wrapper.reverse-layout {
  direction: rtl;
}

.accessories-wrapper.reverse-layout > * {
  direction: ltr;
}

.accessories-content {
  padding-right: 20px;
}

.reverse-layout .accessories-content {
  padding-right: 0;
  padding-left: 20px;
}

.accessories-heading {
  font-size: 40px;
  font-family: 'Butler Regular';
  color: #533526;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.accessories-description {
  font-size: 20px;
  line-height: 1.6;
  color: #533526;
  margin: 0;
  font-family: 'Darker Grotesque Regular';
}

.accessories-image {
  position: relative;
}

.accessories-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f5f5;
  aspect-ratio: 1/1;
}

.accessories-image-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.accessories-image-container:hover img {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .accessories-info-section {
    padding: 40px 0;
  }
  .accessories-info-section .accessories-container {
    padding: 0 15px;
  }
  .accessories-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .accessories-wrapper.reverse-layout {
    direction: ltr;
  }
  .accessories-content {
    padding-right: 0;
    order: 2;
  }
  .reverse-layout .accessories-content {
    padding-left: 0;
    order: 2;
  }
  .accessories-image {
    order: 1;
  }
  .accessories-heading {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .accessories-image-container:hover img {
    transform: none;
  }
}

@media (max-width: 480px) {
  .accessories-info-section {
    padding: 30px 0;
  }
  .accessories-wrapper {
    gap: 20px;
  }
  .accessories-heading {
    font-size: 24px;
  }
  .accessories-description {
    font-size: 18px;
  }
}
.logo-carousel-section {
    background-color: #F8F8F8;
    padding: 20px;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-heading {
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  
  .quote-text {
    text-align: center;
    color: #424242;
    font-size: 25px;
    margin-bottom: 0px;
    font-family: 'Darker Grotesque Medium';
  }
  
  .logo-text {
    display: none;
    color: #424242;
    font-size: 18px;
    font-family: 'Darker Grotesque Medium';
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: visible !important;
    padding: 0 5% !important;
  }
  
  .logo-text-display {
    text-align: center;
    margin-bottom: 30px;
    min-height: 30px;
  }
  
  .logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 590px;
    will-change: transform;
  }
  
  .logo-item {
    flex: 0 0 auto;
    margin: 0 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
    opacity: 0.5;
    transform: scale(0.9);
    will-change: filter, opacity, transform;
  }
  
  .logo-item.active {
    filter: none;
    opacity: 1;
    transform: scale(1);
  }
  
  .logo-text.active {
    display: block;
    opacity: 1;
  }
  
  .logo-image {
    max-height: 60px;
    width: auto;
    display: block;
  }
  
  .logo-placeholder {
    width: 150px;
    height: 60px;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .progress-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .progress-bar {
    width: 100px;
    height: 4px;
    background-color: #C7C7C7;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    margin-left: auto;
  }
  
  .progress-thumb {
    width: 0%;
    height: 100%;
    background-color: #2B2B2B;
    border-radius: 25px;
    transition: none;
    position: absolute;
    top: 0;
    left: 0;
    will-change: width;
  }
  
  @media (max-width: 768px) {
    .logo-carousel-section {
      padding: 40px 0;
      margin-top: -20px;
    }
    
    .container {
      padding: 0 15px;
    }
    
    .section-heading {
      font-size: 20px;
      margin-bottom: 15px;
    }
    
    .quote-text {
      font-size: 16px;
      margin-bottom: 30px;
      padding: 0 20px;
    }
    
    .logos-wrapper {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      margin-left: 0 !important;
      transform: none !important;
      position: static !important;
      width: 100% !important;
      left: auto !important;
    }
    
    .logo-item {
      margin: 0 15px;
      display: none;
      justify-content: center;
      align-items: center;
    }
    
    .logo-item.active {
      display: flex;
    }
    
    .logo-item.prev-item,
    .logo-item.next-item {
      display: none;
    }
    
    .logo-image {
      max-height: 40px;
    }
    
    .logo-placeholder {
      width: auto;
      min-width: 120px;
      height: 40px;
      padding: 0 15px;
      font-size: 14px;
    }
    
    .progress-container {
      margin-top: 20px;
    }
    
    .progress-bar {
      width: 80px;
    }
  }
  
  @media (max-width: 480px) {
    .logo-item {
      margin: 0 10px;
    }
    
    .logo-image {
      max-height: 35px;
    }
    
    .logo-placeholder {
      min-width: 100px;
      height: 35px;
      font-size: 12px;
    }
    
    .quote-text {
      font-size: 14px;
    }
  }
.press-cards-section {
    width: 100%;
    padding: 40px 20px;
  }
  
  .press-cards-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .press-card {
    background: linear-gradient(to bottom, #c7b7b20d, #ffa88b12);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
  }
  
  .press-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 15px;
  }
  
  .press-card__heading {
    font-size: 24px;
    color: #533526;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Butler Regular';
  }
  
  .press-card__description {
    color: #533526;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .press-card__button {
    background: none;
    border: none;
    color: #533526;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    align-self: flex-start;
    font-family: 'Darker Grotesque Semibold';
  }

  
  .press-card__button:hover {
    opacity: 0.8;
  }
  
  .press-card__arrow {
    width: 12px;
    height: 7px;
    flex-shrink: 0;
  }
  
  @media (max-width: 768px) {
    .press-cards-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .press-cards-section {
      padding: 30px 15px;
    }
    
    .press-card__heading {
      font-size: 20px;
    }
    
    .press-card__description {
      font-size: 14px;
    }
    
    .press-card__image {
      height: 150px;
    }
  }
  
  @media (max-width: 480px) {
    .press-cards-container {
      gap: 10px;
    }
    
    .press-card {
      padding: 8px;
    }
    
    .press-card__heading {
      font-size: 18px;
    }
    
    .press-card__image {
      height: 120px;
    }
  }

/* CSS from snippet stylesheet tags */
.card__caption {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 3em;
    line-height: 1.5;
    display: block !important;
  }