/** Shopify CDN: Minification failed

Line 16:6 Unexpected "{"
Line 16:15 Expected ":"
Line 16:22 Unexpected "{"
Line 20:6 Unexpected "{"
Line 20:15 Expected ":"
Line 21:10 Expected identifier but found whitespace
Line 21:12 Unexpected "{"
Line 21:21 Expected ":"
Line 21:48 Unexpected "16px"
Line 21:54 Unexpected "{"
... and 34 more hidden warnings

**/
#sec-{{ section.id }} {
  --gap: 16px;
}

#sec-{{ section.id }} .page-width {
  padding: {{ section.settings.padding_top }}px 16px {{ section.settings.padding_bottom }}px;
}

#sec-{{ section.id }} .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

#sec-{{ section.id }} .nav {
  display: flex;
  gap: 8px;
}

#sec-{{ section.id }} .nav button {
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
}

/* Swiper basics */
#sec-{{ section.id }} .swiper {
    overflow: hidden;
    padding-bottom: 40px;
}

#sec-{{ section.id }} .swiper-wrapper {
  align-items: stretch;
}

#sec-{{ section.id }} .swiper-slide {
  height: auto;
}

/* Card */
#sec-{{ section.id }} .card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  background: #fff;
  min-height: auto !important;
}
#sec-{{ section.id }} .img {
  height: 220px;              /* set the same height for all */
  width: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  overflow: hidden;           /* keeps layout clean */
}
#sec-{{ section.id }} .img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;    
}


#sec-{{ section.id }} .title {
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
    min-height: 2.6em;
    display: block;
    margin: 10px;
    color: rgb(var(--color-foreground));
    font-weight: bold;
}

#sec-{{ section.id }} .opts {
  display: grid;
  gap: 8px;
}

#sec-{{ section.id }} .opt {
    display: grid;
    gap: 4px;
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

#sec-{{ section.id }} .opt select {
  width: auto;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

#sec-{{ section.id }} .price {
    font-weight: 600;
    margin-top: auto;
    color: #ff3800;
}

#sec-{{ section.id }} .btn {
    width: 100%;
    padding: 12px 12px;
    border-radius: 8px;
    border: 0;
    background: rgba(var(--color-button),var(--alpha-button-background));
    color: var(--btn-c, #fff);
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

#sec-{{ section.id }} .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
