/** Shopify CDN: Minification failed

Line 22:16 Expected identifier but found whitespace
Line 22:18 Unexpected "{"
Line 22:27 Expected ":"
Line 22:53 Expected ":"
Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:30 Expected ":"
Line 23:59 Expected ":"
Line 34:15 Expected identifier but found whitespace
Line 34:17 Unexpected "{"
... and 4 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:page-content (INDEX:33) */
.page-content-section .page-content {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
/* END_SECTION:page-content */

/* START_SECTION:sticky-atc (INDEX:57) */
.sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: {{ section.settings.bg_color }};
    color: {{ section.settings.text_color }};
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    padding: 10px 0;
    transition: transform 0.3s ease;
  }
  .sticky-atc-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .sticky-atc-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .sticky-atc-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
  }
  .sticky-atc-title {
    font-weight: 600;
    display: block;
    font-size: 14px;
  }
  .sticky-atc-price {
    font-weight: 700;
    font-size: 16px;
  }
  .sticky-atc-btn {
    white-space: nowrap;
  }
  @media (max-width: 749px) {
    .sticky-atc-text .sticky-atc-title {
      font-size: 12px;
      max-width: 120px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
  }
/* END_SECTION:sticky-atc */