/** Shopify CDN: Minification failed

Line 16:15 Expected identifier but found whitespace
Line 16:17 Unexpected "{"
Line 16:26 Expected ":"
Line 384:2 Unexpected "{"
Line 384:3 Expected identifier but found "%"
Line 438:4 Unexpected "{"
Line 438:5 Expected identifier but found "%"
Line 515:0 Unexpected "}"

**/

  .premium-slider-section {
    padding: 60px 0;
    background: {{ section.settings.background_color | default: '#ffffff' }};
  }

  .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 20px;
  }

  .header-content {
    flex: 1;
  }

  .slider-title {
    font-size: 28px;
    font-weight: 700;
    color: #0F1111;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

  .slider-subtitle {
    font-size: 15px;
    color: #565959;
    margin: 0;
    line-height: 1.4;
  }

  .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #007185;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .view-all-link:hover {
    color: #C7511F;
    text-decoration: underline;
  }

  .slider-container {
    position: relative;
    padding: 0 52px;
  }

  .products-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 16px;
    scroll-snap-type: x mandatory;
  }

  .products-track::-webkit-scrollbar {
    display: none;
  }

  .product-item {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
  }

  .product-link {
    display: block;
    background: #fff;
    border: 1px solid #DDD;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s ease;
    text-decoration: none;
    height: 100%;
  }

  .product-link:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-color: #C7511F;
    transform: translateY(-2px);
  }

  .product-image-container {
    position: relative;
    padding-top: 100%;
    background: #F7F8F8;
    overflow: hidden;
  }

  .product-image,
  .product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s ease;
  }

  .product-link:hover .product-image {
    transform: scale(1.05);
  }

  .discount-badge,
  .new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    z-index: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }

  .discount-badge {
    background: #CC0C39;
    color: #fff;
  }

  .new-badge {
    background: #007185;
    color: #fff;
  }

  .out-of-stock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
  }

  .out-of-stock-overlay span {
    background: #B12704;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
  }

  .product-details {
    padding: 16px;
  }

  .product-vendor {
    font-size: 12px;
    color: #007185;
    margin: 0 0 6px;
    font-weight: 500;
  }

  .product-name {
    font-size: 15px;
    font-weight: 400;
    color: #0F1111;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .stars {
    display: flex;
    gap: 2px;
  }

  .star {
    color: #FFA41C;
    font-size: 16px;
    line-height: 1;
  }

  .star:not(.star--filled) {
    color: #DDD;
  }

  .rating-count {
    font-size: 13px;
    color: #007185;
  }

  .product-pricing {
    margin-bottom: 12px;
  }

  .price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
  }

  .current-price {
    font-size: 22px;
    font-weight: 700;
    color: #0F1111;
  }

  .original-price {
    font-size: 14px;
    color: #565959;
    text-decoration: line-through;
  }

  .delivery-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #007600;
    margin: 0;
    font-weight: 500;
  }

  .quick-add-btn {
    width: 100%;
    padding: 10px 16px;
    background: #FFD814;
    border: 1px solid #FCD200;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0F1111;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .quick-add-btn:hover {
    background: #F7CA00;
    border-color: #F2C200;
  }

  .quick-add-btn:active {
    background: #F0B800;
  }

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

  .nav-arrow:hover {
    background: #F7F8F8;
    border-color: #888;
  }

  .nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
  }

  .nav-arrow--left {
    left: 0;
  }

  .nav-arrow--right {
    right: 0;
  }

  .nav-arrow svg {
    stroke: #0F1111;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: all 0.3s;
  }

  .dot.active {
    background: #007185;
    width: 24px;
    border-radius: 4px;
  }

  .empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #565959;
  }

  .empty-state svg {
    margin-bottom: 16px;
  }

  /* Tablet */
  @media (max-width: 1024px) {
    .premium-slider-section {
      padding: 40px 0;
    }

    .slider-title {
      font-size: 24px;
    }

    .product-item {
      width: 240px;
    }

    .slider-container {
      padding: 0 44px;
    }

    .nav-arrow {
      width: 40px;
      height: 40px;
    }
  }

  /* Mobile */
  {% comment %} @media (max-width: 768px) {
    .container {
      padding: 0 16px;
    }

    .premium-slider-section {
      padding: 32px 0;
    }

    .slider-header {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .slider-title {
      font-size: 20px;
    }

    .slider-subtitle {
      font-size: 14px;
    }

    .product-item {
      width: 180px;
    }

    .slider-container {
      padding: 0 36px;
    }

    .nav-arrow {
      width: 32px;
      height: 32px;
    }

    .nav-arrow svg {
      width: 20px;
      height: 20px;
    }

    .current-price {
      font-size: 18px;
    }

    .product-name {
      font-size: 14px;
      min-height: 40px;
    }

    .quick-add-btn {
      padding: 8px 12px;
      font-size: 13px;
    }
  } {% endcomment %}
  @media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .premium-slider-section {
    padding: 32px 0;
  }

  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .slider-title {
    font-size: 20px;
  }

  .slider-subtitle {
    font-size: 14px;
  }

  .slider-container {
    padding: 0;
  }

  .products-track {
    gap: 12px;
    padding: 8px 0 16px;
    scroll-snap-type: x mandatory;
  }

  .product-item {
    width: calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
  }

  .product-link {
    border-radius: 8px;
  }

  .product-image-container {
    padding-top: 100%;
  }

  .nav-arrow {
    width: 32px;
    height: 32px;
  }

  .nav-arrow svg {
    width: 20px;
    height: 20px;
  }

  .current-price {
    font-size: 18px;
  }

  .product-name {
    font-size: 14px;
    min-height: 40px;
  }

  .product-details {
    padding: 12px;
  }

  .quick-add-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

}
