/** Shopify CDN: Minification failed

Line 187:21 Expected identifier but found whitespace
Line 187:23 Unexpected "{"
Line 187:32 Expected ":"
Line 320:2 Unexpected "{"
Line 320:3 Expected identifier but found "%"
Line 355:2 Unexpected "{"
Line 355:3 Expected identifier but found "%"
Line 365:2 Unexpected "{"
Line 365:3 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.alt-column-section {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
  }

  .alt-column-header {
    text-align: center;
    padding: 40px 20px;
    margin: 0;
  }

  .alt-column-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #333;
  }

  .alt-column-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
  }

  .alt-column-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 0;
  }

  .alt-column-item {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    overflow: hidden;
  }

  .alt-column-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .alt-column-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
  }

  .alt-column-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
    margin: 0;
    padding: 0;
  }

  .alt-column-hover-title {
    color: transparent;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 0;
    transition: color 0.5s ease;
    text-shadow: none;
  }

  .alt-column-item:hover .alt-column-overlay {
    background: rgba(255, 255, 255, 0.8);
  }

  .alt-column-item:hover .alt-column-hover-title {
    color: #000;
  }

  .alt-column-item:hover .alt-column-image {
    transform: scale(1.05);
  }

  .alt-column-explore {
    text-align: center;
    padding: 40px 20px;
    margin: 0;
  }

  .alt-column-button {
    display: inline-block;
    padding: 16px 32px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin: 0;
  }

  .alt-column-button:hover {
    background: #555;
    color: #fff;
  }

  /* Desktop: Max 4 items per row */
  @media (min-width: 1025px) {
    .alt-column-list {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* Tablet: Max 2 items per row */
  @media (min-width: 769px) and (max-width: 1024px) {
    .alt-column-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile: 1 item per row */
  @media (max-width: 768px) {
    .alt-column-list {
      grid-template-columns: 1fr;
    }
    
    .alt-column-title {
      font-size: 2rem;
    }
    
    .alt-column-hover-title {
      font-size: 1.25rem;
    }
  }
/* Mobile: Text section full width and center justify title and button */
  @media screen and (max-width: 999px) {
    .image-with-text__text-container {
      width: 100% !important;
    }
    
    .image-with-text__text-container .heading.h3 {
      text-align: center !important;
    }
    
    .image-with-text__text-container .rte {
      text-align: center !important;
    }
    
    .image-with-text__text-container .arrow-btn {
      display: inline-flex !important;
      margin: 0 auto !important;
    }
  }
.product-carousel-section {
    background-color: {{ section.settings.background_color }};
    padding: 40px 0;
    margin: 0;
    width: 100%;
  }

  .product-carousel-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .product-carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
  }

  .product-carousel-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
  }

  .product-carousel-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .product-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .product-carousel-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .product-carousel-item {
    flex: 0 0 auto;
    width: 25%;
    margin: 0;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
  }

  .product-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .product-carousel-nav:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
  }

  .product-carousel-nav--prev {
    left: 20px;
  }

  .product-carousel-nav--next {
    right: 20px;
  }

  .product-carousel-nav svg {
    width: 20px;
    height: 20px;
    color: #333;
  }

  .product-carousel-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
  }

  /* Override product item styles for carousel */
  .product-carousel-item .product-item {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* Disable hover effects for product cards in carousel */
  .product-carousel-item .modern-product-card:hover {
    box-shadow: none !important;
    transform: none !important;
  }

  .product-carousel-item .modern-product-card:hover .modern-product-card__image-hover {
    opacity: 0 !important;
  }

  .product-carousel-item .modern-product-card:hover .modern-product-card__actions {
    opacity: 0 !important;
    transform: translateY(10px) !important;
  }

  .product-carousel-item .modern-product-card__quick-add:hover {
    background: var(--modern-primary) !important;
  }

  /* Enable/disable add to cart popover based on setting */
  {% if section.settings.enable_add_to_cart_popover %}
    /* Ensure overlay form is visible (display: flex) when popover is enabled */
    .product-carousel-item .product-item__overlay-form {
      display: flex !important;
    }

    /* Enable overlay on hover when popover is enabled */
    @media screen and (min-width: 1000px) {
      .product-carousel-item .product-item:hover .product-item__overlay-form {
        opacity: 1 !important;
      }

      .product-carousel-item .product-item:hover .product-item__image-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.15) !important;
        transition: background 0.3s ease;
        pointer-events: none;
        z-index: 1;
      }
    }

    /* Mobile: Show button on tap/always visible when popover is enabled */
    @media screen and (max-width: 999px) {
      .product-carousel-item .product-item__overlay-form {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
        align-items: flex-end;
        padding-bottom: 16px;
      }
    }
  {% else %}
    /* Disable image darkening overlay on hover for carousel when popover is disabled */
    .product-carousel-item .product-item:hover .product-item__image-wrapper::after {
      background: transparent !important;
    }

    /* Hide overlay form when popover is disabled */
    .product-carousel-item .product-item__overlay-form {
      display: none !important;
    }
  {% endif %}

  .product-carousel-item .product-item__image-wrapper {
    margin: 0;
    padding: 0;
    border: none;
    flex-shrink: 0;
  }

  .product-carousel-item .product-item__info {
    margin: 0;
    padding: 15px 10px;
    border: none;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Tablet: 3 items per row */
  @media (max-width: 1024px) {
    .product-carousel-item {
      width: 33.333%;
    }
    
    .product-carousel-nav {
      width: 40px;
      height: 40px;
    }
    
    .product-carousel-nav--prev {
      left: 15px;
    }
    
    .product-carousel-nav--next {
      right: 15px;
    }
  }

  /* Mobile: 1 item per row with swipe */
  @media (max-width: 768px) {
    .product-carousel-item {
      width: 100%;
    }
    
    .product-carousel-nav {
      display: none;
    }
    
    .product-carousel-track {
      touch-action: pan-x;
      scroll-behavior: smooth;
    }
    
    .product-carousel-title {
      font-size: 2rem;
    }
    
    .product-carousel-item .product-item__info {
      padding: 12px 8px;
    }
  }

  /* Hide navigation on very small screens */
  @media (max-width: 480px) {
    .product-carousel-nav {
      display: none;
    }
  }
.product-highlight {
    padding: 80px 0;
  }

  .product-highlight__wrapper {
    display: flex;
    align-items: stretch;
    min-height: 500px;
  }

  .product-highlight__image-column {
    flex: 0 0 50%;
    width: 50%;
    margin: 0;
    padding: 0;
  }

  .product-highlight__image-column .aspect-ratio {
    width: 100%;
    height: 0;
    position: relative;
    overflow: hidden;
  }

  .product-highlight__image-column img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-highlight__text-column {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    align-items: flex-start;
    padding: 0 40px 60px 40px;
    background-color: var(--background, #ffffff);
  }

  .product-highlight__content {
    width: 100%;
    padding-top: 0;
  }

  .product-highlight__pre-title {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }

  .product-highlight__title {
    margin: 0 0 16px 0;
    font-weight: 700;
    line-height: 1.2;
  }

  .product-highlight__post-title {
    margin-bottom: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }

  .product-highlight__price {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
  }

  .product-highlight__description {
    margin-bottom: 32px;
    line-height: 1.6;
  }

  .product-highlight__description p {
    margin-bottom: 16px;
  }

  .product-highlight__description p:last-child {
    margin-bottom: 0;
  }

  .product-highlight__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }

  .product-highlight__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #252b39;
    background-color: #252b39;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
  }

  .product-highlight__button:hover {
    background-color: #ffffff;
    color: #252b39;
    text-decoration: none;
  }

  .product-highlight__button--secondary {
    background-color: transparent;
    color: #252b39;
    border-color: #252b39;
  }

  .product-highlight__button--secondary:hover {
    background-color: #252b39;
    color: #ffffff;
  }

  .product-highlight__button-icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }

  .product-highlight__button-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  /* Reversed layout */
  .product-highlight__wrapper--reversed {
    flex-direction: row-reverse;
  }

  /* Mobile responsiveness */
  @media screen and (max-width: 999px) {
    .product-highlight {
      padding: 40px 0;
    }

    .product-highlight__wrapper {
      flex-direction: column;
      min-height: auto;
    }

    .product-highlight__image-column,
    .product-highlight__text-column {
      flex: 1 1 auto;
      width: 100%;
    }

    .product-highlight__text-column {
      padding: 0 20px 40px 20px;
    }

    .product-highlight__content {
      padding-top: 40px;
      text-align: center !important;
    }

    .product-highlight__buttons {
      justify-content: center;
    }

    .product-highlight__button {
      flex: 1 1 auto;
      justify-content: center;
      min-width: 140px;
    }
  }

  @media screen and (max-width: 640px) {
    .product-highlight {
      padding: 30px 0;
    }

    .product-highlight__text-column {
      padding: 0 15px 30px 15px;
    }

    .product-highlight__content {
      padding-top: 30px;
    }

    .product-highlight__buttons {
      flex-direction: column;
      gap: 12px;
    }

    .product-highlight__button {
      width: 100%;
      justify-content: center;
    }
  }
.sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
  }

  @media screen and (max-width: 767px) {
    .sticky-footer {
      display: flex;
    }
  }

  .sticky-footer__product {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 70px);
    overflow: hidden;
  }

  .sticky-footer__product-carousel {
    position: relative;
    overflow: hidden;
  }

  .sticky-footer__product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
  }

  .sticky-footer__product-item.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
  }

  .sticky-footer__product-image-wrapper {
    flex-shrink: 0;
    width: var(--product-size, 80px);
    height: var(--product-size, 80px);
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .sticky-footer__product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .sticky-footer__product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
    max-width: 100%;
    overflow: hidden;
  }

  .sticky-footer__product-title {
    font-size: 12px;
    line-height: 1.3;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
  }

  .sticky-footer__product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
  }

  .sticky-footer__price-current {
    color: #333;
    font-weight: 600;
  }

  .sticky-footer__price-compare {
    color: #999;
    text-decoration: line-through;
  }

  .sticky-footer__cart {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .sticky-footer__cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
  }

  .sticky-footer__cart-icon-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sticky-footer__cart-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: #333;
  }

  .sticky-footer__cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4444;
    color: #ffffff;
    border-radius: 10px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    padding: 0 6px;
    transform: translate(25%, -25%);
  }