:root {
  --bo-size--max-width: 1210px;
  --bo-size--breakpoint: 990px;
  --bo-size--mobile: 480px;
  --bo-color--base: #ffffff;
  --bo-color--base-dark: #F5EFE7;
  --bo-color--contrast--light: #919191;
  --bo-color--contrast: #4D4D4D;
  --bo-color--contrast--alpha: #4D4D4D66;
  --bo-color--primary: #FDD8C5;
  --bo-color--secondary: #FBBBA5;
  --bo-color--secondary--alpha: #FBBBA526;
  --bo-color--tertiary: #F5CD8F;
  --bo-color--tertiary--alpha: #F5CD8F26;
  --bo-color--quaternary: #B6D893;
  --bo-color--quaternary--alpha: #B6D89326;
  --bo-color--quinary: #DB5858;
  --bo-base: 1rem;
  --bo-space--xxl: calc(10 * var(--bo-base));
  --bo-space--xl:  calc(4 * var(--bo-base));
  --bo-space--l:   calc(3 * var(--bo-base));
  --bo-space--m:   calc(2 * var(--bo-base));
  --bo-space--s:    calc(1.75 * var(--bo-base));
  --bo-space--xs:   calc(var(--bo-base) + var(--bo-space--xxxs));
  --bo-space--xxs:  var(--bo-base);
  --bo-space--xxxs: calc(var(--bo-base) / 2);
  --bo-offset: 120px;
  --bo-font--weight--regular: 400;
  --bo-font--weight--strong: 600; }

.bo-card {
  width: 100%;
  display: grid;
  gap: var(--bo-space--s);
  padding-bottom: var(--bo-space--m);
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 20vw; }
  .bo-card.bo-card--text {
    grid-auto-rows: unset; }
  @media (max-width: 990px) {
    .bo-card {
      grid-template-columns: repeat(2, 1fr);
      /* Cambia a 2 columnas */
      grid-auto-rows: 45vw; } }

.bo-card__item {
  transition: all 0.1s ease-in-out;
  border-radius: var(--bo-space--m);
  overflow: hidden;
  grid-column: span 2; }
  .bo-card__item:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 32px 0 rgba(219, 197, 184, 0.8); }
    .bo-card__item:hover img {
      transition: all 0.2s ease-in-out; }
  .bo-card__item--extend {
    grid-column: 1 / -1; }
    .bo-card__item--extend img {
      object-fit: none !important; }
  .bo-card__item img {
    width: 100%;
    height: 20vw;
    object-fit: cover; }
    @media (max-width: 990px) {
      .bo-card__item img {
        height: 45vw; } }
  .bo-card__item a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: var(--bo-space--m); }
    .bo-card__item a:hover {
      text-decoration: none; }
  .bo-card__item h2, .bo-card__item h3, .bo-card__item span {
    background-color: var(--bo-color--base);
    border: 2px solid var(--bo-color--contrast);
    padding: 8px 20px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    bottom: calc(1.5*var(--bo-space--xl)); }
    .bo-card__item h2:hover, .bo-card__item h3:hover, .bo-card__item span:hover {
      text-decoration: none; }
  .bo-card__item--text a {
    background-color: var(--bo-color--base);
    overflow: hidden;
    border-radius: var(--bo-space--m);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: var(--bo-space--xxs); }
    .bo-card__item--text a img {
      grid-area: 1 / 1 / 2 / 2; }
    .bo-card__item--text a div {
      grid-area: 1 / 2 / 2 / 4; }
    .bo-card__item--text a img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 0; }
    .bo-card__item--text a div {
      display: flex;
      flex-direction: column;
      gap: var(--bo-space--xxxs);
      padding: 0 var(--bo-space--xxs) 0 0; }
    .bo-card__item--text a h2, .bo-card__item--text a h3 {
      background-color: transparent;
      border: 0;
      padding: 0;
      border-radius: 0;
      font-size: 22px;
      font-weight: 600;
      line-height: 1;
      position: relative;
      bottom: initial; }
    .bo-card__item--text a p {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
      color: var(--bo-color--contrast--alpha); }

.bo-pill {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: var(--bo-space--xs);
  padding: 0 0 var(--bo-space--m);
  flex-wrap: wrap; }

.bo-pill__item {
  background-color: var(--bo-color--secondary);
  border-radius: 32px;
  padding: 6px 16px;
  gap: var(--bo-space--xxxs);
  font-weight: 600; }
  .bo-pill__item:hover {
    background-color: var(--bo-color--primary); }
  .bo-pill__item a {
    text-decoration: none; }

.bo-pagination {
  width: 100%; }

.bo-select {
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  .bo-select > li {
    display: inline-block;
    width: 100%; }
    .bo-select > li option {
      font-size: 16px;
      font-weight: 600; }

.bo-order {
  display: flex;
  justify-content: flex-end;
  gap: var(--bo-space--xxs); }
  .bo-order__align-top {
    align-items: flex-start; }
  .bo-order__align-center {
    align-items: center; }
  .bo-order p {
    font-size: 16px; }

.products-filters .options {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--bo-space--xxs); }
  .products-filters .options .option-select {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-image: url("../img/expand-arrow.png");
    background-color: var(--bo-color--base);
    position: relative;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(100% - var(--bo-space--xxs)) 11px;
    cursor: pointer;
    border-radius: var(--bo-space--xxs);
    padding: var(--bo-space--xxxs) var(--bo-space--xxs); }
    .products-filters .options .option-select > li {
      display: inline-block;
      width: 100%; }
      .products-filters .options .option-select > li .color {
        display: inline-block;
        width: 16px;
        height: 16px;
        top: 3px;
        position: relative;
        border-radius: 8px;
        border: 2px solid var(--bo-color--contrast--alpha); }
      .products-filters .options .option-select > li.last {
        margin-right: 0; }
      .products-filters .options .option-select > li .show-color-select {
        font-weight: 600;
        font-size: 16px; }
        .products-filters .options .option-select > li .show-color-select:hover .color-select {
          display: block; }
        .products-filters .options .option-select > li .show-color-select .color-select {
          display: none;
          position: absolute;
          min-width: 125px;
          padding-top: 15px;
          top: 15px;
          left: -51px;
          z-index: 1; }
          .products-filters .options .option-select > li .show-color-select .color-select:before {
            content: "";
            position: absolute;
            top: 5px;
            left: 52px;
            width: 0;
            height: 0;
            border-width: 0 10px 10px;
            border-style: solid;
            border-color: transparent transparent white; }
          .products-filters .options .option-select > li .show-color-select .color-select .content-color-select {
            background-color: white;
            box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.15);
            padding: 10px; }
      .products-filters .options .option-select > li .option-select-option__actived {
        background-color: var(--bo-color--primary);
        border-radius: 32px;
        padding: 2px 16px; }
        .products-filters .options .option-select > li .option-select-option__actived a {
          font-weight: 600; }
    .products-filters .options .option-select .js-filter-options {
      display: flex;
      flex-direction: column;
      padding: var(--bo-space--xxxs) 0; }
      .products-filters .options .option-select .js-filter-options li {
        padding: var(--bo-space--xxxs) var(--bo-space--xxs);
        width: calc(100% - calc(var(--bo-space--xxs)*2));
        border-radius: var(--bo-space--xxxs); }
      .products-filters .options .option-select .js-filter-options li:hover,
      .products-filters .options .option-select .js-filter-options li a:hover {
        background-color: var(--bo-color--primary); }

#bo-vertical__heading .bo-section__wrapper {
  padding: 0 var(--bo-space--m); }
  #bo-vertical__heading .bo-section__wrapper h1 {
    margin: 0; }
  @media (max-width: 990px) {
    #bo-vertical__heading .bo-section__wrapper {
      padding: 0 var(--bo-space--xxs); } }
  #bo-vertical__heading .bo-section__wrapper .bo-heading {
    gap: var(--bo-space--xxxs);
    margin-bottom: var(--bo-space--m); }
    #bo-vertical__heading .bo-section__wrapper .bo-heading h2,
    #bo-vertical__heading .bo-section__wrapper .bo-heading h2 strong {
      font-size: var(--bo-space--xs);
      line-height: var(--bo-space--s);
      font-weight: 400; }

#bo-vertical__products .bo-section__wrapper {
  padding: 0;
  display: flex;
  flex-wrap: nowrap; }
  #bo-vertical__products .bo-section__wrapper .products-filters {
    width: 20%; }
  #bo-vertical__products .bo-section__wrapper .products {
    width: 80%; }
  #bo-vertical__products .bo-section__wrapper .products__100 {
    width: 100%; }
  @media (max-width: 990px) {
    #bo-vertical__products .bo-section__wrapper {
      flex-wrap: wrap; }
      #bo-vertical__products .bo-section__wrapper .products-filters {
        width: 100%; }
      #bo-vertical__products .bo-section__wrapper .products {
        width: 100%; } }
