/** Shopify CDN: Minification failed

Line 424:0 Unexpected "}"

**/
.products-toolbar {
  position: relative;
  padding-bottom: calc(4 * var(--space-unit));
  border: solid rgba(var(--text-color)/0.15);
  border-width: 0 0 1px;
}

.products-toolbar__filter .icon {
  margin-inline-start: calc(4 * var(--space-unit));
  fill: rgba(var(--bg-color));
}

.products-toolbar__layout {
  margin-inline-end: -8px;
}
.products-toolbar__layout .label {
  margin-inline-end: 4px;
}
.products-toolbar__layout > label {
  padding: 8px;
  transition: color 0.3s;
  color: rgba(var(--text-color)/0.5);
  line-height: 1em;
  cursor: pointer;
}
.products-toolbar__layout input:checked + label {
  color: rgb(var(--text-color));
}

.main-products-grid[data-layout=list] .grid {
  grid-template-columns: none;
}
.main-products-grid:not(.main-products-grid--contained)[data-layout=list] .grid {
  row-gap: 0;
}
.main-products-grid:not(.main-products-grid--contained)[data-layout=list] .grid > li {
  padding-bottom: calc(10 * var(--space-unit));
  border-bottom: 1px solid rgba(var(--text-color)/0.15);
}

.products-toolbar__filter-btn circle {
  transition: transform 0.3s, color 0.3s;
}
.products-toolbar__filter-btn:not(.is-active) circle:nth-of-type(1) {
  transform: translateX(6px);
  color: rgba(var(--text-color)/0.8);
}
.products-toolbar__filter-btn:not(.is-active) circle:nth-of-type(2) {
  transform: translateX(-6px);
  color: rgba(var(--text-color)/0.8);
}

.products-toolbar--compare:not(.products-toolbar--compare-shift-xs) .products-toolbar__compare {
  padding-inline-start: 10px;
  white-space: nowrap;
}

.products-toolbar--compare-shift-xs {
  margin-top: 80px;
}
.products-toolbar--compare-shift-xs .products-toolbar__compare {
  position: absolute;
  top: -110%;
  transform: translateY(100%);
}

.products-toolbar__sort .custom-select__btn {
  margin-inline-end: 30px;
  padding: 0;
  font-weight: normal;
}
.products-toolbar__sort .custom-select__btn > .icon {
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}
body:not(.tab-used) .products-toolbar__sort .custom-select__btn {
  border: 0;
  box-shadow: none;
}

@media (max-width: 768.98px) {
  .products-toolbar {
    justify-content: space-between;
  }
  .products-toolbar__filter {
    padding-inline-end: 10px;
  }
  .products-toolbar__filter-btn {
    padding: 9px 24px;
    border: var(--btn-border-width) solid rgba(var(--text-color)/0.15);
    border-radius: var(--btn-border-radius, 0);
    font-size: 0.88em;
    font-weight: 700;
    line-height: 1.2em;
    text-align: start;
  }
  .main-products-grid:not(.main-products-grid--contained)[data-layout=list] .grid {
    margin-top: calc(8 * var(--space-unit) * -1 - 1px);
    column-gap: 0;
  }
  .main-products-grid:not(.main-products-grid--contained)[data-layout=list] .grid > li {
    padding-bottom: calc(6 * var(--space-unit));
  }
  .main-products-grid[data-layout=grid] .grid-cols-2 {
    margin-top: calc(8 * var(--space-unit) * -1 - 1px);
    margin-right: calc(var(--gutter) * -1);
    margin-left: calc(var(--gutter) * -1);
    column-gap: 0;
    border-top: 1px solid rgba(var(--text-color)/0.15);
    border-bottom: 1px solid rgba(var(--text-color)/0.15);
    background-color: rgba(var(--bg-color));
    row-gap: 0;
  }
  .main-products-grid[data-layout=grid] .grid-cols-2 > li {
    border: solid rgba(var(--text-color)/0.15);
    border-width: 0 1px 1px 0;
  }
  .main-products-grid[data-layout=grid] .grid-cols-2 .card {
            padding: 10px 10px;
  }
  .main-products-grid[data-layout=grid] .grid-cols-2 .card--product-contained {
    border-width: 0;
  }
}
@media (min-width: 600px) {
  .products-toolbar .label,
.products-toolbar label,
.products-toolbar .switch + label,
.products-toolbar .custom-select__btn,
.products-toolbar .products-toolbar__filter-btn {
    font-size: 1em;
  }
  .products-toolbar__sort {
    white-space: nowrap;
  }
  .products-toolbar__sort custom-select {
    display: flex;
    align-items: center;
  }
  .products-toolbar__sort .custom-select {
    position: relative;
    top: 1px;
  }
  .products-toolbar__sort label {
    margin: 0;
    padding-inline-end: 12px;
  }
  .products-toolbar__sort .custom-select__btn {
    height: 35px;
  }
  .products-toolbar--compare-shift-xs {
    margin-top: 0;
  }
  .products-toolbar--compare-shift-xs .products-toolbar__compare {
    position: static;
    top: auto;
    transform: none;
  }
  .products-toolbar__compare {
    visibility: hidden;
    right: auto;
    margin-inline-start: auto;
    transition: opacity 0.1s, visibility 0.1s;
    opacity: 0;
  }
  .products-toolbar__compare + .products-toolbar__layout {
    position: relative;
    margin-inline-start: calc(6 * var(--space-unit));
    padding-inline-start: calc(5 * var(--space-unit));
  }
  .products-toolbar__compare + .products-toolbar__layout::before {
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 1px;
    background-color: rgba(var(--text-color)/0.15);
  }
  [dir=rtl] .products-toolbar__compare + .products-toolbar__layout::before {
    right: 0;
    left: auto;
  }
  .transition-ready .products-toolbar__compare {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 769px) {
  .products-toolbar {
    padding-top: calc(4 * var(--space-unit));
    border-width: 1px 0;
  }
  .products-toolbar__filter + .products-toolbar__sort {
    margin-inline-start: calc(6 * var(--space-unit));
    padding-inline-start: calc(6 * var(--space-unit));
    border-inline-start: 1px solid rgba(var(--text-color)/0.15);
  }
}
@media (min-width: 1024px) {
  .js .lg\:js-hidden {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  .products-toolbar__layout .label {
    display: none;
  }
}
.cc-collection-products .card__vendor{
  min-height:24px !important;
  margin-bottom:6px !important;
}

.cc-collection-products .card__title{
  min-height:52px !important;
  display:block !important;
  margin-bottom:12px !important;
}

.cc-collection-products .amb-card-meta{
  min-height:54px !important;
}

.cc-collection-products .price{
  min-height:42px !important;
  display:flex !important;
  align-items:flex-start !important;
}

.cc-collection-products .card__quick-add{
  margin-top:auto !important;
}
.cc-collection-products .amb-meta-second .amb-meta-icon{
  width:16px !important;
  height:16px !important;
  max-width:16px !important;
  max-height:16px !important;
  object-fit:contain !important;
  display:inline-block !important;
}
/* Bandera origen / D.O. */
.cc-collection-products .amb-meta-line:not(.amb-meta-second) img.amb-meta-icon{
  width:16px !important;
  height:16px !important;
  max-width:16px !important;
  max-height:16px !important;
  min-width:16px !important;
  min-height:16px !important;
  object-fit:cover !important;
  border-radius:50% !important;
  display:block !important;
}

/* Icono calendario / formato */
.cc-collection-products .amb-meta-second img.amb-meta-icon{
  width:16px !important;
  height:16px !important;
  max-width:16px !important;
  max-height:16px !important;
  min-width:16px !important;
  min-height:16px !important;
  object-fit:contain !important;
  border-radius:0 !important;
  display:block !important;
}
/* D.O. + añada */
.cc-collection-products .zona-meta{
  min-height:70px;
}

/* estrellas */
.cc-collection-products .zona-rating{
  min-height:36px;
  display:flex;
  align-items:center;
}

/* stock */
.cc-collection-products .zona-stock{
  min-height:28px;
  display:flex;
  align-items:center;
}

/* precio */
.cc-collection-products .price{
  min-height:55px;
}
/* botón */
.cc-collection-products .card__quick-add{
  margin-top:auto;
}
.cc-collection-products .card__title{
  min-height:86px !important;
  line-height:1.2 !important;
  margin-bottom:10px !important;
}
.cc-collection-products product-card.card{
  height:100% !important;
  display:flex !important;
  flex-direction:column !important;
}

.cc-collection-products .card__info-container,
.cc-collection-products .card__info,
.cc-collection-products .card__info-inner{
  height:100% !important;
  display:flex !important;
  flex-direction:column !important;
}

.cc-collection-products .card__vendor{
  min-height:28px !important;
}

.cc-collection-products .card__title{
  min-height:78px !important;
}

.cc-collection-products .amb-card-meta{
  min-height:62px !important;
}

.cc-collection-products .jdgm-widget,
.cc-collection-products .rating,
.cc-collection-products .zona-rating{
  min-height:36px !important;
}



.cc-collection-products .product-inventory__status{
  min-height:30px !important;
}

.cc-collection-products .card__quick-add{
  margin-top:8px !important;
}
.zona-rating{
    min-height:35px !important;
    display:flex;
    align-items:center;
}

.zona-stock{
    min-height:30px !important;
    display:flex;
    align-items:center;
}
/* Alinear cards colección AMB */
.cc-collection-products .zona-rating{
  min-height:36px !important;
  height:36px !important;
  display:flex !important;
  align-items:center !important;
}

.cc-collection-products .zona-stock{
  min-height:30px !important;
  height:30px !important;
  display:flex !important;
  align-items:center !important;
}


.cc-collection-products .card__quick-add{
  margin-top:8px !important;
}
.cc-collection-products .zona-rating{
  min-height:36px !important;
  display:flex !important;
  align-items:center !important;
}

.cc-collection-products .zona-stock{
  min-height:30px !important;
  height:30px !important;
  display:flex !important;
  align-items:center !important;
}

.cc-collection-products .price{
  min-height:58px !important;
}
.cc-collection-products .card__vendor{
  height:28px !important;
  overflow:hidden;
}

.cc-collection-products .card__title{
  height:78px !important;
  overflow:hidden;
}

.cc-collection-products .amb-card-meta{
  height:62px !important;
  overflow:hidden;
}

.cc-collection-products .zona-rating{
  height:38px !important;
  display:flex;
  align-items:center;
}

.cc-collection-products .price{
  height:58px !important;
  display:flex;
  align-items:center;
}

.cc-collection-products .zona-stock{
  height:32px !important;
  display:flex;
  align-items:center;
}
}
.cc-collection-products .amb-card-bottom{
  height:132px !important;
  display:grid !important;
  grid-template-rows:36px 58px 38px !important;
}

.cc-collection-products .zona-rating,
.cc-collection-products .zona-price,
.cc-collection-products .zona-stock{
  min-height:0 !important;
  height:auto !important;
  display:flex !important;
  align-items:center !important;
}

.cc-collection-products .card__quick-add{
  margin-top:0 !important;
}
.amb-stock-zone{height:22px!important;min-height:22px!important;display:flex!important;align-items:center!important}
.amb-stock-msg{margin:0!important;padding:0!important;line-height:1!important}
.price{margin-bottom:0!important}
.card__quick-add{margin-top:8px!important}
/* ===========================
   AMBVINOS PREMIUM CARDS V2
   =========================== */

.cc-collection-products product-card.card{
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: all .25s ease;
}

.cc-collection-products product-card.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.cc-collection-products .product-card-content{
  padding: 12px;
}

.cc-collection-products .card__media{
  max-width: 340px !important;
  margin: 0 auto !important;
}

.cc-collection-products .card__title{
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #202020 !important;
}

.cc-collection-products .price__current{
  color: #8b0d2b !important;
  font-weight: 800 !important;
  font-size: 2.3rem !important;
}

.cc-collection-products .add-button,
.cc-collection-products .seleccionar-opciones{
  background: #8b0d2b !important;
  border-radius: 10px !important;
  transition: all .2s ease;
}

.cc-collection-products .add-button:hover,
.cc-collection-products .seleccionar-opciones:hover{
  background: #6f0921 !important;
}

.cc-collection-products .card__media img{
  transition: transform .25s ease;
}

.cc-collection-products product-card.card:hover .card__media img{
  transform: translateY(-5px);
}