/** Shopify CDN: Minification failed

Line 198:3 Unexpected "`"
Line 261:2 Unexpected "{"
Line 261:3 Expected identifier but found "%"
Line 269:4 Unexpected "{"
Line 269:5 Expected identifier but found "%"
Line 430:4 Unexpected "{"
Line 430:5 Expected identifier but found "%"
Line 430:65 Unexpected "{"
Line 430:66 Expected identifier but found "%"
Line 443:4 Unexpected "{"
... and 7 more hidden warnings

**/
.mobile-filter,
.product-filter-bar {
  display: none;
}
#page-loader { padding: 20px 0; }
.skeleton-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.skel-card { background: #fff; border-radius: 8px; border: 1px solid #eee; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.skel-img { height: 120px; border-radius: 6px; }
.skel-line { height: 12px; border-radius: 6px; }
.skel-line.short { width: 60%; }
.skel-btn { height: 36px; border-radius: 4px; margin-top: 4px; }
.skel-img, .skel-line, .skel-btn {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }
    .inner-product-btn{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    }
    .csl-animated-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 15px 34px;
    font-size: 1.3rem;
    background-color: #fff;
    font-weight: 500;
    color: #000000;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    width: 30%;
    margin-bottom: 6px;
    align-items: center;
    text-decoration: none;
  }
  .csl-button2 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .csl-animated-btn img {
    position: absolute;
    width: 12px;
    z-index: 9;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .csl-animated-btn .text img {
    text-align: center;
    align-items: center;
    height: 30px;
    width: 30px;
  }
  .csl-animated-btn .text {
    text-align: left;
  }
  .csl-animated-btn .arr-1 {
    right: 16px;
  }
  .csl-animated-btn .arr-2 {
    left: -25%;
  }
  .csl-animated-btn .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    cursor:pointer;
    font-family:var(--bens-font2);
  }
  .csl-animated-btn:hover .arr-1 {
    right: -24%;
  }
  .csl-animated-btn:hover .arr-2 {
    left: 16px;
  }
  .csl-animated-btn:hover .text {
    transform: translateX(12px);
  }
  .product-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .filter-label {
    font-size: 18px;
    font-weight: 500;
    color: red;
    margin-right: 8px;
  }

  .filter-btn {
    padding: 10px 18px;
    border: 1px solid red;
    color: var(--brand-red);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
    cursor:pointer;
    transition: all 0.25s ease;
  }

  .filter-btn:hover {
    background:var(--brand-red);
    color: #fff;
  }

  .filter-btn.active {
    background: var(--brand-red);
    color: #fff;
  }
  

  .grid {
    margin:0 auto;
    margin-bottom:50px;
    display: grid;
    gap: 20px;
    max-width:100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-card {
    padding: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .product-card-description {
    display: flex;
    flex-direction: column;
    flex-grow: 1;            /* fills remaining space */
    text-align: center;
    justify-content: space-between;
  }
  .product-title p{
    font-size:1.7rem;
    font-weight:500;
    color:var(--brand-red);
    margin:0;
    line-height:1;
  }
  .product-image {
    position:relative;
    overflow: hidden;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .product-image .food-badge{
    height:20px;
    width:20px;
  }
  .food-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: auto;
  z-index: 10;
  }

  .product-image img {
    height: 120px;
    width: auto;
    object-fit: contain;
  }`
  .product-card h3 {
    font-size: 2rem;
    margin: 0;
    padding:0;
    color: var(--brand-red);
    font-weight: 500;
  }

  .choose-bundle-btn {
    position: relative;
    width: 100%;
    max-width: 100%;          /* adjust if needed */
    height: 40px;              /* FIXED HEIGHT */
    background: red;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    padding: 0;                /* IMPORTANT */
  }

  /* Common layer styles */
  .choose-bundle-btn span {
    position: absolute;
    inset: 0;                  /* top:0 right:0 bottom:0 left:0 */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;            /* FIX TEXT CUTTING */
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  /* Default text */
  .btn-text {
    transform: translateY(0);
    opacity: 1;
  }

  /* + icon (start below) */
  .btn-plus {
    transform: translateY(100%);
    opacity: 0;
    font-size: 26px;
    font-weight: 500;
    cursor:pointer;
  }

  /* Hover animation */
  .choose-bundle-btn:hover .btn-text {
    transform: translateY(-100%);
    opacity: 0;
  }

  .choose-bundle-btn:hover .btn-plus {
    transform: translateY(0);
    opacity: 1;
  }


  {% comment %} .product-card button {
    margin-top: 8px;
    background: red;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  } {% endcomment %}


  @media screen and (max-width: 767px) {
    .product-card h3 {
      font-size: 1.3rem;
    }
  }
  .bundle-popup {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 500;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100%);
  }

  .bundle-popup.visible {
    transform: translateY(0);
  }

  .bundle-popup.minimized {
    transform: translateY(calc(100% - 0px));
  }

  .popup-toggle {
    position: absolute;
    top: -40px;
    right: 20px;
    cursor: pointer;
    background:var(--brand-red);
    color: #fff;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }

  .popup-toggle:hover {
    background: var(--brand-red);
  }

  .popup-toggle svg {
    transition: transform 0.3s ease;
  }

  .bundle-popup.minimized .popup-toggle svg {
    transform: rotate(180deg);
  }

  .popup-content {
    display: flex;
    align-items: center;
    padding: 24px 20px;
    gap: 20px;
    position: relative;
    transition: opacity 0.3s ease;
  }

  .bundle-popup.minimized .popup-content {
    opacity: 0;
    pointer-events: none;
  }

  .popup-header {
    flex: 0 0 200px;
  }

  .popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-red);
    line-height: 1.3;
  }

  .mobile-nav-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .mobile-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
  }

  .mobile-nav-left {
    left: 10px;
  }

  .mobile-nav-right {
    right: 10px;
  }

  .bundle-options-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
  }

  .bundle-options-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color:var(--brand-red) #f1f1f1;
  }

  .bundle-options-container::-webkit-scrollbar {
    height: 6px;
  }

  .bundle-options-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }

  .bundle-options-container::-webkit-scrollbar-thumb {
    background: var(--brand-red);
    border-radius: 3px;
  }

  .bundle-options-container::-webkit-scrollbar-thumb:hover {
    background: var(--brand-red);
  }

  .bundle-option {
    min-width: 200px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
  }


  .bundle-option.selected {
    border: 3px solid var(--brand-red);
    {% comment %} box-shadow: 0 4px 16px rgba(220, 38, 38, 0.2); {% endcomment %}
  }

  .bundle-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f9fafb;
  }

  .bundle-image img {
    width: 100%;
    {% comment %} height: 100%; {% endcomment %}
    object-fit: cover;
  }

  .zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .bundle-option:hover .zoom-icon {
    opacity: 1;
  }

  .bundle-info {
    padding: 16px;
    text-align: center;
  }

  .bundle-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
  }

  .cookie-count {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
  }

  .cookie-detail {
    margin: 4px 0 0 0;
    font-size: 12px;
    color:var(--brand-red);
  }

  .price {
    margin: 8px 0 0 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
  }

  .out-of-stock {
    margin: 8px 0 0 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-red);
  }

  .popup-action {
    flex: 0 0 140px;
  }

  .btn-continue {
    width: 100%;
    padding: 14px 20px;
    background: var(--brand-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  }

  .btn-continue:hover {
    background:var(--brand-red);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    transform: translateY(-1px);
  }

  .btn-continue:active {
    transform: translateY(0);
  }

  @media (min-width: 1441px) {
    .grid {
      grid-template-columns: repeat(4, 1fr);
       max-width:75%;
    }
    .csl-animated-btn {
      width: 40%;
    }
    .product-image img {
      height: 180px;
      width:180px;
    }

  }

  @media (max-width: 1440px) {
    .grid {
      grid-template-columns: repeat(4, 1fr);
       max-width:80%;
    }
    .csl-animated-btn {
      width: 40%;
    }
    .product-image img {
      height: 160px;
      width:160px;
    }
  }
  @media (max-width: 900px) {
    .grid {
      max-width:90%;
      grid-template-columns: repeat(2, 1fr);
    }
    .csl-animated-btn {
      width: 40%;
    }
    .product-image img {
      height: 180px;
      width:180px;
    }
  }

.mobile-filter{
  display:none;
}



  /* Mobile Responsive */
  @media (max-width: 667px) {
 
    .product-filter-bar{
    display:none;
    }

    .mobile-filter{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:var(--brand-red);
    font-family:var(--bens-font);
    color:#fff;
    padding:16px 18px;
    width:100%;
    position:relative;
    box-sizing:border-box;
    }

    .mobile-filter-label{
    display:flex;
    gap:8px;
    font-size:16px;
    font-weight:500;
    }

    .filter-text{
    opacity:0.9;
    }

    .filter-selected{
    font-weight:500;
    }

    .filter-arrow{
    display:flex;
    align-items:center;
    }

    /* invisible select covering entire bar */
    .filter-dropdown{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
cursor:pointer;
}

    .popup-content {
      flex-direction: column;
      padding: 20px 15px;
      gap: 15px;
    }
    .csl-animated-btn {
      width: 40%;
    }

    .popup-header {
      flex: none;
      width: 100%;
      text-align: center;
    }

    .popup-header h3 {
      font-size: 16px;
    }

    .mobile-nav-btn {
      display: flex;
    }

    .bundle-options-wrapper {
      width: 70vw;
      
    }

    .bundle-options-container {
      flex-direction: column;
      overflow-x: hidden;
      overflow-y: hidden;
      scroll-snap-type: y mandatory;
      gap: 0;
      padding: 0;
    }

    .bundle-option {
      scroll-snap-align: start;
      display: none;
    }

    .bundle-option.active-mobile {
      display: block;
    }

    .popup-action {
      flex: none;
      width: 100%;
    }

    .popup-toggle {
      right: 50%;
      transform: translateX(50%);
    }
    .grid {
      {% comment %} max-width:85%; {% endcomment %}
      grid-template-columns: repeat(2,1fr);
      padding-top:30px;
    }
    .product-image img {
      height: 160px;
      width:160px;
    }
    .product-card {
    padding: 0px;
   }
   .product-image {
    margin-bottom: 1px;
    align-items: flex-end;
    }
    .csl-animated-btn{
    font-size: 1rem;
    }
    .choose-bundle-btn{
      height:30px;
    }
    .product-title p{
    font-size: 1.2rem;
    }
  }

  /* @media (max-width: 480px) {
    .product-title p{
    font-size: 1.2rem;
    }
    .choose-bundle-btn{
      height:30px;
    }
    .csl-animated-btn{
    font-size: 1.1rem;
    }

    .product-image {
    margin-bottom: 1px;
    align-items: flex-end;
    }
    .product-card {
    padding: 0px;
   }
    .bundle-image {
      height: 150px;
    }

    .popup-header h3 {
      font-size: 14px;
    }

    .btn-continue {
      padding: 12px 16px;
      font-size: 14px;
    }
    .grid {
      {% comment %} max-width:85%; {% endcomment %}
      grid-template-columns: repeat(2,1fr);
    }
  } */
