/** Shopify CDN: Minification failed

Line 111:2 Unexpected "}"

**/


/* CSS from section stylesheet blocks */
.exclusive-offers-section {
    width: 100%;
    padding: 40px 0;
  }
  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .section-title {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  .section-description {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .products-grid {
    display: grid;
    gap: 20px;
  }
  .product-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    position: relative;
  }
  .product-item:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  }
  .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .promotion-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .image-wrapper:hover .promotion-product-image {
    transform: scale(1.05);
  }
  .badge, .savings-badge {
    position: absolute;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
  }
  .badge {
    top: 10px;
    left: 10px;
  }
  .savings-badge {
    top: 10px;
    right: 10px;
    background-color: #2ecc71;
    color: #fff;
  }
  .product-info {
    padding: 12px;
    min-height: 120px;
    position: relative;
  }
  .product-title {
    font-size: 1rem;
    margin: 0 0 35px;
    font-weight: 600;
    line-height: 1.2;
  }
  .price-stock-container {
    position: absolute;
    top:90%;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .price-container {
    display: flex;
    flex-direction: row;
    gap:10px;
    align-items: baseline;
  }
  }
  .current-price {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1;
  }

  .original-price {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
  }
  .countdown-timer {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  .stock-availability {
    font-size: 0.8rem;
  }
  .stock-text {
    color: #e74c3c;
    font-weight: 600;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
  }
  .stock-text.out-of-stock {
    color: #999;
    background-color: rgba(153, 153, 153, 0.1);
  }
  .section-footer {
    text-align: center;
    margin-top: 30px;
  }
  .view-all-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
  }
  .view-all-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  /* Responsive Grid */
  .columns-desktop-1 { grid-template-columns: repeat(1, 1fr); }
  .columns-desktop-2 { grid-template-columns: repeat(2, 1fr); }
  .columns-desktop-3 { grid-template-columns: repeat(3, 1fr); }
  .columns-desktop-4 { grid-template-columns: repeat(4, 1fr); }

  @media (max-width: 1024px) {
    .columns-tablet-1 { grid-template-columns: repeat(1, 1fr); }
    .columns-tablet-2 { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 767px) {
    .columns-mobile-1 { grid-template-columns: repeat(1, 1fr); }
    .columns-mobile-2 { grid-template-columns: repeat(2, 1fr); }
    .section-title {
      font-size: 28px;
    }
    .section-description {
      font-size: 16px;
    }
  }