html, body {
  width: 100%;
  height: max-content;
  margin: 0;
  padding: 0;
  font-size: 13px;
  -webkit-overflow-scrolling: touch;
  color: #000000;
  background-color: #fff;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-family: "Inter", sans-serif;
}
html.is-hidden, body.is-hidden {
  overflow: hidden;
}

body::after {
  content: "";
  display: block;
  position: relative;
  clear: both;
}

* {
  letter-spacing: 0.03em;
}

.material-symbols-outlined {
  font-weight: 300;
}

a {
  text-decoration: none;
  color: currentColor;
}

h1, h2, h3, h4, h5, h6, b, strong {
  margin: 0;
  font-weight: normal;
}

img {
  border: none;
  margin: 0;
  max-width: 100%;
  height: auto;
}

input, textarea, button {
  color: currentColor;
  padding: 0;
  margin: 0;
  background-color: transparent;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  resize: none;
  font-size: 1rem;
}

select {
  color: currentColor;
  background-color: transparent;
}

::placeholder {
  font-family: "Inter", sans-serif;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input:active, textarea:active, button:active,
input:focus, textarea:focus, button:focus {
  outline: 0;
}

.o-content {
  width: calc(100% - 6rem);
  margin: 0 auto;
  max-width: 1800px;
}
@media (max-width: 1120px) {
  .o-content {
    width: calc(100% - 4rem);
  }
}
@media (max-width: 900px) {
  .o-content {
    width: calc(100% - 2rem);
  }
}

.o-wrapper {
  min-height: calc(100dvh - 5.4rem);
}
.o-wrapper--home {
  padding-top: 0;
}
.o-wrapper:has(.c-page--error) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.o-hidden {
  display: none;
}

.o-space {
  width: 100%;
  height: 6rem;
  clear: both;
}
.o-space--min {
  height: 3rem;
}
.o-space--xs {
  height: 2rem;
}
.o-space--line {
  border-bottom: 1px solid #9c9c9c;
}
.o-space--4 {
  height: 4rem;
}
.o-space--10 {
  height: 10rem;
}

.o-phrase {
  max-width: 50rem;
  margin: auto;
  text-align: center;
}
.o-phrase.s-text h2 {
  font-weight: 300;
}
.o-phrase--home p {
  color: #ab2d11;
}

.o-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1rem;
}
@media (max-width: 1120px) {
  .o-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .o-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .o-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.o-grid__label {
  grid-column: 1/6;
}
.o-grid__label * {
  margin: 0;
}
.o-grid--icons .o-grid__icon {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.o-grid--icons .o-grid__icon img {
  width: 6rem;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
  margin: 0 auto 2rem;
}
.o-grid--icons .o-grid__icon p {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.o-checkbox {
  position: relative;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Source Serif 4", serif;
}
.o-checkbox a {
  text-decoration: underline;
}
.o-checkbox__span {
  position: relative;
  top: 0;
  left: 0;
  height: 6rem;
  width: 6rem;
  background-color: transparent;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1120px) {
  .o-checkbox__span {
    height: 4rem;
    width: 4rem;
  }
}
.o-checkbox__span::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.o-checkbox__input:checked ~ .o-checkbox__span::before {
  content: "";
  display: block;
  top: -1px;
  left: -1px;
  position: absolute;
  height: 100%;
  width: 100%;
  border: 1px solid currentColor;
}
.o-checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.o-checkbox--italic .o-checkbox__input:checked ~ .o-checkbox__span {
  font-style: italic;
}
.o-checkbox--italic .o-checkbox__input:checked ~ .o-checkbox__span::before {
  border: none;
}

.o-ancla {
  position: relative;
  display: block;
  height: 0;
}
.o-ancla--home {
  top: 1rem;
  position: absolute;
}

.o-select {
  border: 1px solid #9c9c9c;
  position: relative;
}
.o-select::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  display: block;
  border-left: 1px solid #9c9c9c;
  border-bottom: 1px solid #9c9c9c;
  pointer-events: none;
  top: 43%;
  right: 1rem;
  transform-origin: center;
  transform: translateY(-50%) rotate(-45deg);
}
.o-select select {
  padding: 0.6rem 1.2rem;
  padding-right: 2rem;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  font-family: "Inter", sans-serif;
}
.o-select select:focus {
  outline: none;
}

.o-btn {
  font-size: 1rem;
}
.o-btn--center {
  width: 100%;
  text-align: center;
  padding: 0 1rem;
  height: 3rem;
  line-height: 3rem;
  color: #f2ede7;
  background-color: #8c0505;
  box-sizing: border-box;
}
@media (min-width: 1120px) {
  .o-btn--center:hover {
    background-color: #f2ede7;
    color: #ab2d11;
  }
}
.o-btn--menu {
  display: none;
}
@media (max-width: 1120px) {
  .o-btn--menu {
    display: block;
  }
  .o-btn--menu:has(span:nth-child(2)) span:nth-child(2) {
    display: none;
  }
}

.o-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.o-min {
  font-size: 0.8rem;
}

.o-alert {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background-color: #f2ede7;
  padding: 0.8rem 1rem;
}
.o-alert p {
  margin: 0;
}
.o-alert--success {
  color: #0d6110;
}
.o-alert--error {
  color: #ab2d11;
}
.o-alert--warning {
  color: #f19205;
}
.o-alert--info {
  color: #1a426e;
}

.c-bag .o-alert--success {
  color: #ab2d11;
}
.c-bag .o-alert--error {
  color: #ab2d11;
}
.c-bag .o-alert--warning {
  color: #ab2d11;
}
.c-bag .o-alert--info {
  color: #ab2d11;
}

body:has(.c-product) .o-alert {
  margin-bottom: 1rem;
}

.c-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 5;
}
@media (max-width: 1120px) {
  .c-header .o-btn--menu {
    grid-column: 1;
    grid-row: 1;
    margin-right: auto;
    padding: 2rem 1rem;
    box-sizing: content-box;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.c-header__int {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
}
@media (max-width: 620px) {
  .c-header__int.o-content {
    width: 100%;
  }
}
.c-header__logo {
  grid-column: 2;
}
.c-header__logo img {
  height: 2.5rem;
  filter: invert(1);
}
@media (max-width: 620px) {
  .c-header__logo img {
    height: 2rem;
  }
}
.c-header__menu {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 1120px) {
  .c-header__menu:nth-child(2) {
    display: none;
  }
}
.c-header__menu--lateral {
  grid-column: initial;
  grid-row: initial;
  justify-content: flex-end;
  gap: 1rem;
}
@media (max-width: 620px) {
  .c-header__menu--lateral {
    gap: 0;
  }
}
.c-header__submenu {
  display: flex;
  position: absolute;
  padding: 0.6rem 0;
  width: 100%;
  left: 0;
  top: 5.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
@media (min-width: 1120px) {
  .c-header__submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.c-header__submenu .o-content {
  position: relative;
  display: flex;
  gap: 1.2rem;
}
.c-header__submenu .c-header__item {
  padding: 0.6rem 1rem;
  color: #ab2d11;
}
@media (min-width: 1120px) {
  .c-header__submenu .c-header__item:hover {
    color: #ab2d11;
  }
}
.c-header__submenu .c-header__item img {
  opacity: 0;
  position: absolute;
  top: 2rem;
  right: 0;
  width: 20rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  max-width: 50%;
  pointer-events: none;
  transition: 0.3s ease;
}
@media (min-width: 1120px) {
  .c-header__submenu .c-header__item:hover img {
    opacity: 1;
  }
}
.c-header__submenu-menu {
  display: flex;
  flex-direction: column;
}
.c-header__item {
  font-size: 1rem;
  text-transform: uppercase;
  padding: 2rem 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  color: #ab2d11;
}
@media (min-width: 1120px) {
  .c-header__item:hover {
    color: #000000;
  }
  .c-header__item:hover .c-header__item-num {
    background-color: #000000;
    color: #ffffff;
  }
}
.c-header__item.is-active {
  color: #000000;
}
.c-header__item--min {
  font-size: 0.8rem;
  color: #9c9c9c;
}
.c-header__item:has(.c-header__item-num) {
  position: relative;
}
.c-header__item-num {
  position: absolute;
  z-index: 2;
  background-color: #8c0505;
  color: #ffffff;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  text-align: center;
  padding: 0;
  font-size: 0.6rem;
  line-height: 1rem;
  top: 50%;
  left: 50%;
  display: block;
}
@media (min-width: 1120px) {
  .c-header__item:hover + .c-header__submenu,
  .c-header__item .c-header__submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.c-header__item .material-symbols-outlined {
  display: flex;
  height: 1.4rem;
  align-items: center;
}
.c-header::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: -1;
  transition: 0.25s ease;
}
@media (min-width: 1120px) {
  .c-header:has(.c-header__item:hover + .c-header__submenu, .c-header__submenu:hover) {
    color: #000000;
  }
  .c-header:has(.c-header__item:hover + .c-header__submenu, .c-header__submenu:hover) .c-header__item:has(+ .c-header__submenu:hover) {
    color: #ab2d11;
  }
  .c-header:has(.c-header__item:hover + .c-header__submenu, .c-header__submenu:hover) .c-header__int {
    border-color: #f2ede7;
  }
  .c-header:has(.c-header__item:hover + .c-header__submenu, .c-header__submenu:hover) .c-header__logo img {
    filter: invert(1);
  }
  .c-header:has(.c-header__item:hover + .c-header__submenu, .c-header__submenu:hover)::after {
    height: 9.2rem;
  }
}

body:has(.o-wrapper--home) .c-header {
  color: #ffffff;
  position: fixed;
  background-color: transparent;
}
body:has(.o-wrapper--home) .c-header__logo img {
  filter: invert(0);
}
body:has(.o-wrapper--home) .c-header__item {
  color: #ffffff;
}
body:has(.o-wrapper--home) .c-header__item-num {
  background-color: #ffffff;
  color: #000000;
}
@media (min-width: 1120px) {
  body:has(.o-wrapper--home) .c-header:hover {
    color: #000000;
  }
  body:has(.o-wrapper--home) .c-header:hover::after {
    height: 5.4rem;
  }
  body:has(.o-wrapper--home) .c-header:hover .c-header__logo img {
    filter: invert(1);
  }
  body:has(.o-wrapper--home) .c-header:hover .c-header__item {
    color: #ab2d11;
  }
  body:has(.o-wrapper--home) .c-header:hover .c-header__item-num {
    background-color: #8c0505;
    color: #ffffff;
  }
}
@media (min-width: 1120px) and (min-width: 1120px) {
  body:has(.o-wrapper--home) .c-header:hover .c-header__item:hover {
    color: #000000;
  }
  body:has(.o-wrapper--home) .c-header:hover .c-header__item:hover .c-header__item-num {
    background-color: #000000;
    color: #ffffff;
  }
}
body:has(.o-wrapper--home).is-header-background .c-header {
  color: #000000;
}
body:has(.o-wrapper--home).is-header-background .c-header__logo img {
  filter: invert(1);
}
body:has(.o-wrapper--home).is-header-background .c-header::after {
  height: 5.4rem;
}
body:has(.o-wrapper--home).is-header-background .c-header__item {
  color: #ab2d11;
}
body:has(.o-wrapper--home).is-header-background .c-header__item-num {
  background-color: #8c0505;
  color: #ffffff;
}
body:has(.o-wrapper--home).is-header-background .c-header__item.is-active {
  color: #000000;
}

@media (max-width: 1120px) {
  .is-menu {
    overflow: hidden;
  }
  .is-menu:has(.o-wrapper--home) .c-header {
    color: #000000;
  }
  .is-menu:has(.o-wrapper--home) .c-header__logo img {
    filter: invert(1);
  }
  .is-menu:has(.o-wrapper--home) .c-header__menu:nth-child(2) {
    display: flex;
    grid-column: 1/4;
    grid-row: 2;
    flex-direction: column;
    text-align: center;
    gap: 0;
    border-top: 1px solid #f2ede7;
  }
  .is-menu:has(.o-wrapper--home) .c-header__menu:nth-child(2) > .c-header__item {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #f2ede7;
  }
  .is-menu:has(.o-wrapper--home) .c-header__menu:nth-child(2) > .c-header__item:has(+ .c-header__submenu) {
    border-bottom: none;
  }
  .is-menu:has(.o-wrapper--home) .c-header__submenu .c-header__item {
    padding: 2rem 1rem;
    border-bottom: none;
  }
  .is-menu:has(.o-wrapper--home) .c-header__item-num {
    background-color: #000000;
    color: #ffffff;
  }
  .is-menu:has(.o-wrapper--home) .c-header::after {
    height: 100dvh;
  }
  .is-menu:has(.o-wrapper--home).is-header-background .c-header::after {
    height: 100dvh;
  }
  .is-menu .c-header {
    color: #000000;
  }
  .is-menu .c-header__logo img {
    filter: invert(1);
  }
  .is-menu .c-header__menu:nth-child(2) {
    display: flex;
    grid-column: 1/4;
    grid-row: 2;
    flex-direction: column;
    text-align: center;
    gap: 0;
    border-top: 1px solid #f2ede7;
  }
  .is-menu .c-header__menu:nth-child(2) > .c-header__item {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #f2ede7;
  }
  .is-menu .c-header__menu:nth-child(2) > .c-header__item:has(+ .c-header__submenu) {
    border-bottom: none;
  }
  .is-menu .c-header__menu__item-num {
    background-color: #000000;
    color: #ffffff;
  }
  .is-menu .c-header__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: initial;
    position: relative;
    top: initial;
    border-bottom: 1px solid #f2ede7;
    padding: 0;
  }
  .is-menu .c-header__submenu .o-content {
    justify-content: center;
  }
  .is-menu .c-header__submenu .c-header__item {
    padding: 2rem 1rem;
    border-bottom: none;
  }
  .is-menu .c-header .o-btn--menu:has(span:nth-child(2)) span:nth-child(1) {
    display: none;
  }
  .is-menu .c-header .o-btn--menu:has(span:nth-child(2)) span:nth-child(2) {
    display: block;
  }
  .is-menu .c-header::after {
    height: 100dvh;
  }
}

.c-footer {
  width: 100%;
  background-color: #f2ede7;
  padding: 3rem 0 3rem;
  color: #ab2d11;
}
.c-footer__int {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 1rem;
}
@media (max-width: 1120px) {
  .c-footer__int {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .c-footer__int {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .c-footer__int {
    grid-template-columns: 1fr 2fr;
  }
}
.c-footer__int h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
}
.c-footer__int ul {
  list-style: none;
  padding: 0;
  font-family: "Source Serif 4", serif;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
@media (max-width: 1120px) {
  .c-footer__int ul {
    gap: 0;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.c-footer__int ul a .is-active {
  color: #000000;
}
@media (min-width: 1120px) {
  .c-footer__int ul a:hover {
    color: #000000;
  }
}
@media (max-width: 1120px) {
  .c-footer__int ul a {
    display: block;
    padding: 0.6rem 0;
  }
}
@media (max-width: 620px) {
  .c-footer__column {
    grid-column: 2;
    text-align: right;
  }
}
.c-footer__column--logo img {
  height: 3rem;
  filter: invert(1);
  object-fit: contain;
}
@media (max-width: 900px) {
  .c-footer__column--logo {
    grid-column: 1/4;
    margin-bottom: 3rem;
  }
}
@media (max-width: 620px) {
  .c-footer__column--logo {
    grid-column: 1;
  }
}

.c-break {
  width: 100%;
}
.c-break--slider {
  height: 100dvh;
}
.c-break--slider .splide {
  height: 100%;
}
.c-break--slider .splide__track {
  height: 100%;
}
.c-break--slider .splide__list {
  height: 100%;
}
.c-break--slider .splide__slide {
  height: 100%;
}
.c-break--slider .c-break__img {
  width: 100%;
  height: 100%;
  position: relative;
}
.c-break--slider .c-break__img:has(iframe, video) {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-break--slider .c-break__img:has(iframe, video) iframe, .c-break--slider .c-break__img:has(iframe, video) video {
  min-width: calc(100dvw + 110px);
  min-height: calc(100dvh + 110px);
  aspect-ratio: 1/0.56;
  position: absolute;
  display: block;
  width: auto;
  height: auto;
}
.c-break--slider .c-break__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-break--slider .c-break__img::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
}
.c-break--slider .c-break__info {
  position: absolute;
  z-index: 3;
  padding: 3rem 10rem 16rem;
  bottom: 0;
  left: 0;
  color: #ffffff;
  width: 50%;
}
@media (max-width: 1120px) {
  .c-break--slider .c-break__info {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 900px) {
  .c-break--slider .c-break__info {
    padding: 3rem 3rem 6rem;
  }
}
@media (max-width: 620px) {
  .c-break--slider .c-break__info {
    padding: 3rem;
  }
}
.c-break--slider .c-break__info p {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.c-break--slider .c-break__info h3 {
  font-size: 3rem;
  font-family: "Source Serif 4", serif;
}
@media (max-width: 900px) {
  .c-break--slider .c-break__info h3 {
    font-size: 2rem;
  }
}
.c-break--contact {
  height: auto;
  aspect-ratio: 1/0.3;
  max-height: 100dvh;
}
@media (max-width: 900px) {
  .c-break--contact {
    aspect-ratio: 1/0.66;
  }
}
.c-break--slider-info .splide__slide {
  display: flex;
  flex-direction: row-reverse;
  background-color: #f2ede7;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.c-break--slider-info .splide__pagination {
  justify-content: end;
}
.c-break--slider-info .splide__pagination__page {
  border: 1px solid #9c9c9c;
  background-color: transparent;
}
.c-break--slider-info .splide__pagination__page.is-active {
  transform: initial;
  background-color: #9c9c9c;
}
.c-break--slider-info .c-break__img {
  width: 65%;
  aspect-ratio: 1/0.66;
  position: relative;
}
.c-break--slider-info .c-break__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-break--slider-info .c-break__info {
  padding: 3rem;
  width: 30%;
  box-sizing: border-box;
  font-weight: 300;
}
.c-break--info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  align-items: center;
}
.c-break--info-invert .c-break__img {
  grid-column: 2;
  grid-row: 1;
}
.c-break--info-invert .c-break__info {
  grid-column: 1;
  grid-row: 1;
}
.c-break--info .c-break__img {
  width: 100%;
  aspect-ratio: 1/0.66;
  position: relative;
}
.c-break--info .c-break__img img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  object-fit: cover;
}
.c-break--info .c-break__icon {
  background-color: #f2ede7;
  color: #000000;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
}
.c-break--info .c-break__info {
  font-weight: 300;
}

.c-insta {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.c-insta__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1.33;
}
.c-insta__media {
  will-change: transform;
  transition: transform 1s ease-out;
  width: 200%;
  height: 100%;
  left: -50%;
  position: relative;
}
.c-insta img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  max-width: initial;
}
@media (min-width: 1120px) {
  .c-insta--center:hover .c-insta__img {
    transform: scale(2);
  }
}
.c-insta--center .c-insta__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column-reverse;
  padding: 2rem;
  color: #ffffff;
  gap: 1rem;
  transition: 0.3s ease;
}
.c-insta--center .c-insta__info-t1 {
  font-size: 2rem;
}
.c-insta--center .c-insta__info-t2 {
  font-size: 1rem;
}
.c-insta--center .c-insta__img {
  transform-origin: center;
  transform: scale(1);
  transition: transform 50s ease;
}
@media (min-width: 1120px) {
  .c-insta--center:hover .c-insta__info {
    opacity: 0;
  }
}
.c-insta--bottom {
  overflow: initial;
}
@media (min-width: 1120px) {
  .c-insta--bottom:hover img {
    transform: scale(2);
  }
}
.c-insta--bottom img {
  transform-origin: center;
  transform: scale(1);
  transition: transform 50s ease;
}
.c-insta--bottom .c-insta__info {
  position: relative;
  padding-top: 0.6rem;
}
.c-insta--bottom .c-insta__info-t1 {
  font-size: 1.2rem;
}
.c-insta--bottom .c-insta__info-t2 {
  font-size: 1rem;
}

.c-shape {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.c-shape__title {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.c-shape__options {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1120px) {
  .c-shape__options {
    grid-template-columns: 1fr;
  }
}
.c-shape__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #9c9c9c;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.2s;
}
.c-shape__card input {
  display: none;
}
.c-shape__card.is-active {
  border-color: #ab2d11;
}
.c-shape__icon {
  width: 3rem;
  height: 3rem;
  background: #e7d8c7;
  border: 0.6rem solid #f2ede7;
}
.c-shape__icon--rect {
  border-radius: 0.6rem;
}
.c-shape__icon--round {
  border-radius: 50%;
}
.c-shape__text strong {
  display: block;
  font-size: 1rem;
}
.c-shape__text small {
  color: #9c9c9c;
  font-size: 0.8rem;
}

.c-dimensions {
  display: none;
  margin-bottom: 16px;
}
.c-dimensions.is-visible {
  display: block;
}
.c-dimensions h4 {
  margin: 16px 0 8px;
}
.c-dimensions h4 small {
  color: #888;
  font-weight: normal;
  margin-left: 6px;
}
.c-dimensions__row {
  display: flex;
  gap: 12px;
}
.c-dimensions__row input[type=number] {
  width: 100%;
  max-width: 180px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.c-dimensions__row input[type=number]:focus {
  outline: none;
  border-color: #333;
}

.c-info {
  display: inline-block;
  margin-top: 12px;
  color: #9b7c5a;
  text-decoration: underline;
  font-size: 14px;
}

.c-product__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media (max-width: 900px) {
  .c-product__row {
    grid-template-columns: 1fr;
  }
}
.c-product__title {
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Source Serif 4", serif;
  font-size: 2rem;
}
.c-product__price {
  font-weight: 300;
  font-family: "Source Serif 4", serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.c-product__split {
  position: sticky;
  top: 5.4rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 900px) {
  .c-product__split {
    position: relative;
    top: initial;
  }
}
.c-product__color {
  color: #9c9c9c;
}
.c-product__set {
  margin-bottom: 2rem;
}
.c-product__set p {
  margin: 0;
}
.c-product__set .o-btn {
  grid-column: 2;
  text-align: right;
  width: fit-content;
  margin-left: auto;
}
.c-product__nav {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 0.8rem;
}
.c-product__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.c-product__text.s-text::after {
  height: 0;
}

.c-quantity {
  position: relative;
  width: 9rem;
  padding: 0;
  margin: 0;
  display: block;
  font-size: 1rem;
  border: 1px solid #9c9c9c;
}
.c-quantity input {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  display: block;
  margin: 0;
  padding: 0 3rem;
  border: none;
  text-align: center;
  box-sizing: content-box;
  font-size: 1em;
  background-color: transparent;
  color: #000000;
}
.c-quantity-nav {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
}
.c-quantity-button {
  position: absolute;
  cursor: pointer;
  width: 3rem;
  text-align: center;
  user-select: none;
  line-height: 3rem;
  top: 0;
  border: none;
  height: 3rem;
  font-family: "Inter", sans-serif;
}
@media (min-width: 1120px) {
  .c-quantity-button:hover {
    background-color: #8c0505;
    color: #ffffff;
  }
}
.c-quantity-down {
  left: 0;
}
.c-quantity-up {
  right: -9rem;
}
.c-quantity input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  margin: 0;
}
.c-quantity input[type=number]::-webkit-outer-spin-button,
.c-quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-quantity input[type=number] {
  -moz-appearance: textfield;
}

.c-card {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 1120px) {
  .c-card:hover .c-card__img {
    transform: scale(2);
  }
  .c-card:hover .c-card__img img:nth-child(2) {
    opacity: 1;
  }
}
.c-card__media {
  will-change: transform;
  transition: transform 1s ease-out;
  width: 200%;
  height: 100%;
  left: -50%;
  position: relative;
  width: 100%;
  left: 0;
}
.c-card img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  max-width: initial;
}
.c-card__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column-reverse;
  padding: 2rem;
  color: #ffffff;
  gap: 1rem;
  transition: 0.3s ease;
}
@media (max-width: 900px) {
  .c-card__info {
    padding: 1rem;
  }
}
.c-card__info-t1 {
  font-size: 2rem;
  font-family: "Source Serif 4", serif;
}
@media (max-width: 1120px) {
  .c-card__info-t1 {
    font-size: 1.5rem;
  }
}
.c-card__info-t2 {
  font-size: 1rem;
}
.c-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1.33;
  transform-origin: center;
  transform: scale(1);
  transition: transform 50s ease;
}
.c-card__img img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.o-grid .c-card__info {
  padding: 1rem;
}

.c-carousel .splide__arrow {
  background-color: transparent;
  width: 2rem;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: initial;
}
.c-carousel .splide__arrow:disabled {
  display: none;
}
.c-carousel .splide__arrow--next {
  right: -2rem;
}
.c-carousel .splide__arrow--prev {
  left: -2rem;
}

.c-quantity {
  position: relative;
  width: 9rem;
  padding: 0;
  margin: 0;
  display: block;
  font-size: 1rem;
  border: 1px solid #9c9c9c;
}
.c-quantity input {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  display: block;
  margin: 0;
  padding: 0 3rem;
  border: none;
  text-align: center;
  box-sizing: content-box;
  font-size: 1em;
  background-color: transparent;
  color: #000000;
}
.c-quantity-nav {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
}
.c-quantity-button {
  position: absolute;
  cursor: pointer;
  width: 3rem;
  text-align: center;
  user-select: none;
  line-height: 3rem;
  top: 0;
  border: none;
  height: 3rem;
  font-family: "Inter", sans-serif;
}
@media (min-width: 1120px) {
  .c-quantity-button:hover {
    background-color: #8c0505;
    color: #ffffff;
  }
}
.c-quantity-down {
  left: 0;
}
.c-quantity-up {
  right: -9rem;
}
.c-quantity input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  margin: 0;
}
.c-quantity input[type=number]::-webkit-outer-spin-button,
.c-quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-quantity input[type=number] {
  -moz-appearance: textfield;
}

.c-bag {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-bag__over {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-bag__int {
  width: 35rem;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  overflow: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  transition-delay: 0.15s;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
@media (max-width: 620px) {
  .c-bag__int {
    width: 100%;
  }
}
.c-bag__header {
  border-bottom: 1px solid #9c9c9c;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: #ffffff;
  z-index: 4;
  position: sticky;
  top: 0;
  align-items: center;
}
.c-bag__list {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
}
.c-bag__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 2rem;
  align-items: center;
}
.c-bag__item-img {
  width: 100%;
  aspect-ratio: 1/1.25;
  object-fit: cover;
}
.c-bag__item-info {
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-bag__item-info-t1 {
  font-size: 1rem;
}
.c-bag__item-info-t2 {
  font-size: 1rem;
  color: #9c9c9c;
}
.c-bag__item-info-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.c-bag__footer {
  position: sticky;
  bottom: 0;
  background-color: #ffffff;
  padding: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #9c9c9c;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.c-bag__footer p {
  margin: 0;
}
.c-bag__footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.8rem;
}
.c-bag .o-btn:not(.o-btn--center) {
  color: #9c9c9c;
}
@media (min-width: 1120px) {
  .c-bag .o-btn:not(.o-btn--center):hover {
    color: #ab2d11;
  }
}
.c-bag--full {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: initial;
  position: relative;
  background: initial;
  display: block;
  height: auto;
  padding-bottom: 6rem;
}
@media (max-width: 900px) {
  .c-bag--full {
    margin-bottom: 6rem;
  }
}
.c-bag--full .c-bag__row {
  display: grid;
  grid-template-columns: 3fr 30rem;
  grid-gap: 3rem;
}
@media (max-width: 1120px) {
  .c-bag--full .c-bag__row {
    grid-template-columns: 3fr 20rem;
  }
}
@media (max-width: 900px) {
  .c-bag--full .c-bag__row {
    grid-template-columns: 1fr;
  }
}
.c-bag--full .c-bag__list {
  padding: 2rem 0;
  border-bottom: 1px solid #9c9c9c;
  gap: 2rem;
}
@media (max-width: 900px) {
  .c-bag--full .c-bag__list {
    gap: 1rem;
    padding: 1rem 0;
  }
}
.c-bag--full .c-bag__list:first-child {
  border-top: 1px solid #9c9c9c;
}
.c-bag--full .c-bag__footer {
  padding: 2rem 0;
  gap: 2rem;
}
@media (max-width: 900px) {
  .c-bag--full .c-bag__footer {
    border-top: none;
  }
}
.c-bag--full .c-bag__item {
  padding-bottom: 2rem;
  border-bottom: 1px solid #9c9c9c;
}
@media (max-width: 900px) {
  .c-bag--full .c-bag__item {
    padding-bottom: 1rem;
  }
}
.c-bag--full .c-bag__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.c-bag--full .c-bag__item-info {
  height: 100%;
}
.c-bag--full .c-bag__item-info-flex {
  margin-top: auto;
}

@media (max-width: 620px) {
  .is-bag {
    overflow: hidden;
  }
}
.is-bag .c-bag {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.is-bag .c-bag__over {
  opacity: 1;
}
.is-bag .c-bag__int {
  transform: translateX(0);
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table td.product-name {
  position: relative;
  padding-left: calc(100px + 1rem) !important;
  vertical-align: top;
  min-height: 100px;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td.product-name .c-bag__item-img {
  position: absolute;
  left: 0;
  top: 9px;
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-page.s-text > *:not(iframe, video, img, .wp-caption, hr, blockquote) {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.c-page.s-text h1 {
  margin: 1.2rem auto 6rem;
}
.c-page.s-text h2 {
  margin: 1.2rem auto 3rem;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}
.c-page.s-text b, .c-page.s-text strong {
  font-weight: 500;
}
.c-page.s-text .aligncenter {
  width: calc(100% + 6rem);
  margin-left: -3rem;
  height: calc(100dvh - 5.4rem);
  object-fit: cover;
  max-width: initial;
}
@media (max-width: 1120px) {
  .c-page.s-text .aligncenter {
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }
}
@media (max-width: 900px) {
  .c-page.s-text .aligncenter {
    width: calc(100% + 2rem);
    margin-left: -1rem;
  }
}
.c-page.s-text blockquote {
  max-width: 60rem;
  margin: 3rem auto;
}
.c-page.s-text blockquote * {
  font-size: 2rem;
  font-family: "Source Serif 4", serif;
  line-height: 1.4em;
}
@media (max-width: 900px) {
  .c-page.s-text blockquote * {
    font-size: 1.5rem;
  }
}
.c-page.s-text blockquote:has(.alignleft, .alignright) {
  margin: 1.2rem auto;
  max-width: inherit;
  width: 100%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 900px) {
  .c-page.s-text blockquote:has(.alignleft, .alignright) {
    gap: 1rem;
  }
}
@media (max-width: 620px) {
  .c-page.s-text blockquote:has(.alignleft, .alignright) {
    gap: 0.6rem;
  }
}
.c-page.s-text blockquote:has(.alignleft, .alignright) b, .c-page.s-text blockquote:has(.alignleft, .alignright) strong {
  font-weight: 700;
  line-height: 1.8em;
}
.c-page.s-text blockquote:has(.alignleft, .alignright) * {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}
.c-page.s-text blockquote:has(.alignleft, .alignright) *:not(img, .wp-caption) {
  max-width: 30rem;
  margin: 3rem auto;
}
.c-page.s-text blockquote:has(.alignleft, .alignright) .alignleft, .c-page.s-text blockquote:has(.alignleft, .alignright) .alignright {
  max-width: 50%;
  margin: 0;
}
.c-page.s-text blockquote:has(.alignleft, .alignright) .wp-caption {
  max-width: 50%;
  margin: 0;
}
.c-page.s-text blockquote:has(.alignleft, .alignright) .wp-caption .alignleft, .c-page.s-text blockquote:has(.alignleft, .alignright) .wp-caption .alignright {
  max-width: 100%;
  margin: 0;
}
.c-page.s-text::after {
  height: 6rem;
}
.c-page--error {
  text-align: center;
}
.c-page--error.s-text h6 {
  width: 100%;
  max-width: 30rem;
}
.c-page--error.s-text h6 a {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  max-width: 30rem;
  box-sizing: border-box;
}
.c-page--generic.s-text > hr, .c-page--generic.s-text > blockquote {
  max-width: 50rem;
}

.c-contact {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 3rem;
}
.c-contact .s-text {
  max-width: 30rem;
  margin: 0 auto;
}
.c-contact .s-text a {
  color: #ab2d11;
}
.c-contact__column {
  width: 50rem;
  max-width: 100%;
}
.c-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
.c-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  width: 100%;
}
.c-contact input {
  background-color: #f2ede7;
  padding: 0 1rem;
  height: 3rem;
  line-height: 3rem;
  width: 100%;
}
.c-contact textarea {
  background-color: #f2ede7;
  padding: 1rem;
  height: 6.2rem;
  line-height: 1.4em;
}

.c-faq {
  margin: 0 auto;
  border-bottom: 1px solid #9c9c9c;
}
.c-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 0.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
  font-family: "Source Serif 4", serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.c-faq__question:hover {
  background: #f9f9f9;
}
.c-faq__icon {
  transition: transform 0.3s ease;
}
.c-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0;
}
.c-faq.is-active .faq__answer {
  max-height: 200px;
}
.c-faq.is-active .faq__icon {
  transform: rotate(180deg);
}

.c-slider {
  margin-top: 0;
  position: relative;
  grid-column: 1/4;
}
.c-slider .splide__arrow {
  background-color: transparent;
  height: 100%;
  width: 4rem;
}
.c-slider .splide__arrow--next {
  right: 0;
}
.c-slider .splide__arrow--prev {
  left: 0;
}
.c-slider .splide__pagination__page {
  border: 1px solid #9c9c9c;
  background-color: transparent;
}
.c-slider .splide__pagination__page.is-active {
  transform: initial;
  background-color: #9c9c9c;
}
.c-slider .js-open-zoom {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: zoom-in;
}
.c-slider .o-btn {
  display: none;
  background-color: transparent;
  position: absolute;
  z-index: 3;
  top: 2rem;
  right: 2rem;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  padding: 1rem;
  line-height: 0.8rem;
}
@media (max-width: 900px) {
  .c-slider .o-btn {
    right: 0;
  }
}
@media (max-width: 620px) {
  .c-slider .o-btn {
    right: 0;
  }
}
.c-slider .o-btn--link {
  display: flex;
  top: 0;
}
.c-slider__js {
  width: 100%;
}
.c-slider__item {
  width: 100%;
}
.c-slider__item-img {
  width: 100%;
  height: calc(100vh - 5.4rem - 6rem - 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(100dvh - 10rem);
}
@media (max-width: 900px) {
  .c-slider__item-img {
    height: calc(100dvh - 5.4rem - 6rem - 2rem - 10rem);
  }
}
@media (max-width: 620px) {
  .c-slider__item-img {
    height: calc(100dvh - 5.4rem - 6rem - 2rem - 3rem);
  }
}
.c-slider__item-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.c-slider__btn {
  width: 4rem;
  height: 4rem;
  display: block;
  background-image: url(../img/mas.png);
  background-size: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.c-slider--single .splide__arrow {
  top: 50%;
}
@media (max-width: 900px) {
  .c-slider--single .splide__arrow {
    top: 50%;
  }
}
.c-slider--single .splide__pagination {
  position: relative;
  bottom: initial;
}
.c-slider--single .splide__pagination__page {
  height: 1rem;
  width: 1rem;
  opacity: 1;
}
.c-slider--single .splide__pagination__page.is-active {
  transform: initial;
}
@media (min-width: 1120px) {
  .c-slider--single .splide__pagination__page:hover {
    transform: initial;
  }
}
.c-slider--full {
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
@media (max-width: 1120px) {
  .c-slider--full {
    max-height: 100dvh;
    height: 56vw;
  }
}
.c-slider--full .splide {
  width: 100%;
  height: 100%;
}
.c-slider--full .splide__arrow:disabled {
  display: none;
}
.c-slider--full .splide__track {
  height: 100%;
}
.c-slider--full .splide__list {
  height: 100%;
}
.c-slider--full .splide__slide {
  height: 100%;
}
.c-slider--full .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-slider--thumb {
  margin-top: 0.8rem;
}
.c-slider--thumb .splide__slide {
  width: 6rem;
  aspect-ratio: 1/1;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media (max-width: 1120px) {
  .c-slider--thumb .splide__slide {
    width: 4rem;
  }
}
.c-slider--thumb .splide__slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.c-slider--thumb.splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 1px solid transparent;
}
.c-slider--thumb.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border: 1px solid #000000;
}

.is-zoom {
  overflow: hidden;
}
.is-zoom .js-open-zoom {
  display: none;
}
.is-zoom .c-product__split {
  position: static;
}
.is-zoom .c-slider {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 0;
}
.is-zoom .c-slider .o-btn {
  display: flex;
}
.is-zoom .c-slider .o-btn--link {
  display: none;
}
.is-zoom .c-slider .o-content {
  width: 100%;
  height: 100%;
}
.is-zoom .c-slider__item {
  height: 100%;
}
.is-zoom .c-slider__item-img {
  display: block;
  height: 100dvh;
  width: 100dvw;
  max-height: initial;
}
.is-zoom .c-slider__item-img img {
  display: block;
  width: auto;
  height: auto;
  object-fit: initial;
  max-width: initial;
  min-width: 100dvw;
  min-height: 100dvh;
}
.is-zoom .c-slider__item-info {
  position: absolute;
  left: 3rem;
  height: -moz-fit-content;
  height: fit-content;
  bottom: 0;
  max-width: calc(100% - 6rem);
}
@media (max-width: 900px) {
  .is-zoom .c-slider__item-info {
    left: 2rem;
    max-width: calc(100% - 4rem);
  }
}
@media (max-width: 620px) {
  .is-zoom .c-slider__item-info {
    left: 1rem;
    max-width: calc(100% - 2rem);
  }
}
.is-zoom .c-slider .splide {
  height: 100%;
}
.is-zoom .c-slider .splide__track {
  height: 100%;
}
.is-zoom .c-slider .splide__list {
  height: 100%;
}
.is-zoom .c-slider .splide__slide {
  height: 100%;
}
.is-zoom .c-slider .splide__arrow {
  display: none;
}
.is-zoom .c-slider__btn {
  background-image: url(../img/menos.png);
}

.is-notzoom .c-slider__item-img {
  cursor: pointer !important;
  touch-action: auto !important;
  pointer-events: none;
}
.is-notzoom .c-slider__item-img img {
  cursor: pointer !important;
  touch-action: auto !important;
  transition: 0s !important;
  transform: initial !important;
}

.s-text {
  font-weight: 300;
}
.s-text > *:not(h5) {
  margin: 1rem 0;
  line-height: 1.8em;
}
.s-text > *:not(h5):first-child {
  margin-top: 0;
}
.s-text > *:not(h5):last-child {
  margin-bottom: 0;
}
.s-text a {
  text-decoration: underline;
}
@media (min-width: 1120px) {
  .s-text a:hover {
    color: #ab2d11;
  }
}
.s-text p {
  margin: 1rem 0;
}
.s-text b, .s-text strong {
  font-weight: 700;
}
.s-text ul {
  list-style: square;
  box-sizing: border-box;
}
.s-text hr {
  clear: both;
  margin: 0;
  height: 0;
  border: none;
  border-bottom: 1px solid #9c9c9c;
  display: block;
  margin: 3rem auto;
}
.s-text blockquote {
  margin: 1rem 0;
  padding: 0;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
.s-text blockquote * {
  font-size: 0.8rem;
}
.s-text blockquote ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 0.8rem;
  padding: 0;
}
.s-text blockquote ul * {
  font-size: 0.8rem;
  line-height: initial;
}
.s-text blockquote ul li:nth-child(2n+1) {
  grid-column: 1;
}
.s-text blockquote ul li:nth-child(2n+2) {
  grid-column: 2;
}
.s-text .wp-caption {
  margin: 0;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 1rem;
  width: fit-content;
}
.s-text .wp-caption img {
  margin: 0;
  max-width: 100%;
}
.s-text .wp-caption p {
  margin: 0.3rem auto 0;
  text-align: center;
  font-size: 0.8rem;
}
.s-text .wp-caption .alignleft {
  text-align: left;
}
.s-text .wp-caption .alignright {
  text-align: right;
}
.s-text .aligncenter {
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 1rem auto;
  text-align: center;
}
.s-text .aligncenter.wp-caption {
  max-width: 100%;
}
.s-text .aligncenter.wp-caption p {
  text-align: left;
}
.s-text .alignleft {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  float: left;
  max-width: calc(100% - 1rem);
  position: relative;
  text-align: left;
}
.s-text .alignleft.wp-caption {
  max-width: calc(100% - 1rem);
  text-align: left;
}
.s-text .alignleft p {
  text-align: left;
}
.s-text .alignright {
  margin-left: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  float: right;
  max-width: calc(100% - 1rem);
  position: relative;
  text-align: right;
}
.s-text .alignright.wp-caption {
  max-width: calc(100% - 1rem);
}
.s-text .alignright.wp-caption p {
  text-align: right;
}
.s-text iframe {
  aspect-ratio: 1/0.56;
  max-width: 100%;
  width: 100%;
  max-height: calc(100dvh - 8rem);
  clear: both;
  height: -moz-fit-content;
  height: fit-content;
}
.s-text iframe[data-testid] {
  aspect-ratio: initial;
  max-width: 40rem;
  height: revert-layer;
  margin: 0 auto;
  display: block;
}
.s-text iframe[sandbox] {
  aspect-ratio: initial;
  max-width: 40rem;
  height: revert-layer;
  margin: 0 auto;
  display: block;
}
.s-text iframe[data-mce-fragment] {
  max-width: 40rem;
}
.s-text iframe#mapa {
  max-width: 40rem;
}
.s-text video {
  width: 100%;
  position: relative;
  aspect-ratio: 1/0.56;
}
.s-text audio {
  width: 100%;
}
.s-text h1 {
  font-family: "Source Serif 4", serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1em;
}
.s-text h2 {
  font-family: "Source Serif 4", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1em;
}
.s-text h3 {
  font-family: "Source Serif 4", serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.s-text .material-symbols-outlined {
  vertical-align: middle;
}
.s-text h5 {
  font-size: "Inter", sans-serif;
}
.s-text h6:has(a) a {
  font-size: 1rem;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border: 1px solid #9c9c9c;
  display: block;
  width: fit-content;
}
@media (min-width: 1120px) {
  .s-text h6:has(a) a:hover {
    background-color: #8c0505;
    color: #ffffff;
    border-color: #8c0505;
  }
}
.s-text::after {
  content: "";
  clear: both;
  display: block;
  height: 0;
}

.splide__sr {
  display: none !important;
}

.is-hidden {
  display: none;
}

.g-recaptcha {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.s-woo .woocommerce {
  width: 100%;
  max-width: 1020px;
  margin: 2rem auto 4rem;
}
.s-woo .woocommerce * {
  font-size: 13px;
  color: currentColor;
  font-family: "Inter", sans-serif;
}
.s-woo .woocommerce a {
  color: #ab2d11;
}
.s-woo .woocommerce p {
  margin: 0;
}
.s-woo .woocommerce button {
  font-family: "Inter", sans-serif;
  background-color: #8c0505;
  color: #f2ede7;
  border-radius: 0;
  font-weight: 400;
}
@media (min-width: 1120px) {
  .s-woo .woocommerce button:hover {
    background-color: #f2ede7;
    color: #ab2d11;
  }
}
.s-woo .woocommerce .woocommerce-error, .s-woo .woocommerce .woocommerce-info, .s-woo .woocommerce .woocommerce-message {
  background-color: #f2ede7;
  border-color: transparent !important;
}
.s-woo .woocommerce form .form-row {
  color: currentColor;
}
.s-woo .woocommerce form .form-row label {
  line-height: 2em;
  text-transform: uppercase;
}
.s-woo .woocommerce form .form-row input.input-text, .s-woo .woocommerce form .form-row textarea {
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  border: 1px solid #f2ede7;
  padding: 0 10px;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 100%;
}
.s-woo .woocommerce form .form-row textarea {
  resize: none;
  padding: 10px;
  line-height: 1.4em;
}
.s-woo .woocommerce form .form-row.validate-postcode {
  width: 47%;
  float: left;
}
.s-woo .woocommerce form .form-row.validate-phone {
  width: 47%;
  float: right;
  clear: initial;
}
.s-woo .woocommerce .select2-container--default .select2-selection--single {
  border-radius: 0;
  border-color: #f2ede7;
  height: 40px;
}
.s-woo .woocommerce-checkout.checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0px 20px;
  grid-template-rows: auto auto auto auto;
}
@media (max-width: 900px) {
  .s-woo .woocommerce-checkout.checkout {
    display: block;
  }
}
.s-woo .woocommerce-checkout.checkout > * {
  width: 100%;
  float: initial;
}
.s-woo .woocommerce #customer_details > * {
  float: initial;
  width: 100%;
}
.s-woo .woocommerce h3 {
  text-align: left;
  font-size: 1.1em;
  margin: 10px 3px;
  font-weight: 500;
  text-transform: uppercase;
}
.s-woo .woocommerce .col2-set {
  margin-bottom: 0px;
  width: 100%;
  grid-row: 2/5;
}
.s-woo .woocommerce #order_review_heading {
  grid-column: 2;
  grid-row: 2;
  height: fit-content;
  text-align: left;
  width: 100%;
}
.s-woo .woocommerce #order_review {
  width: 100%;
  grid-column: 2;
  grid-row: 3;
  padding-top: 3px;
}
.s-woo .woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}
.s-woo .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}
.s-woo .woocommerce table.shop_table {
  font-weight: 500;
  border-radius: 0;
  border-color: #f2ede7;
}
.s-woo .woocommerce table.shop_table strong {
  font-weight: 500;
}
.s-woo .woocommerce table.shop_table td {
  width: 60%;
  vertical-align: bottom;
}
.s-woo .woocommerce-checkout #payment {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.s-woo .woocommerce-checkout #payment div.payment_box {
  background-color: #f9f9f9;
}
.s-woo .woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #f9f9f9;
}
.s-woo .woocommerce .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
  grid-column: 1/3;
}
.s-woo .woocommerce button.button.alt {
  line-height: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 0;
  text-transform: uppercase;
  background-color: #8c0505;
  width: 100%;
  border: 1px solid #8c0505;
  color: #ffffff;
  margin-top: 1rem;
}
@media (min-width: 1120px) {
  .s-woo .woocommerce button.button.alt:hover {
    background-color: transparent;
    color: #ab2d11;
  }
}
.s-woo .woocommerce ul.order_details {
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s-woo .woocommerce ul.order_details li {
  border: none;
  padding: 0;
  margin: 0;
}
.s-woo .woocommerce address {
  width: 100%;
  background-color: #f2ede7;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
}
.s-woo .woocommerce-order h2 {
  color: currentColor;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  margin: 0;
  margin-bottom: 0.5rem;
}
.s-woo .woocommerce-order h3 {
  color: currentColor;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  margin: 0;
}
.s-woo .woocommerce-order span {
  color: #000000;
}
.s-woo .woocommerce-order a {
  text-decoration: underline;
}
.s-woo .woocommerce-order .woocommerce-order-details {
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
}
.s-woo .woocommerce ul.order_details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}
.s-woo .woocommerce-cart-form__cart-item img {
  max-width: 100px;
}
.s-woo .woocommerce table.cart img {
  max-width: 100px;
}
.s-woo .woocommerce table.shop_table thead {
  font-family: "Inter", sans-serif;
}
.s-woo .woocommerce table.shop_table thead th {
  font-family: "Inter", sans-serif;
  font-size: 15px;
}
.s-woo .woocommerce table.cart td.actions .input-text {
  width: 120px;
}
.s-woo .woocommerce h1, .s-woo .woocommerce h2, .s-woo .woocommerce h3, .s-woo .woocommerce h4, .s-woo .woocommerce h5, .s-woo .woocommerce h6 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}
.s-woo .woocommerce .cart .button {
  border-radius: 0px;
  font-family: "Inter", sans-serif;
}
.s-woo .woocommerce-order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem 2rem;
}
@media (max-width: 900px) {
  .s-woo .woocommerce-order {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.s-woo .woocommerce-order > *:not(ul, div, section, article) {
  grid-column: 1/3;
}
@media (max-width: 900px) {
  .s-woo .woocommerce-order > *:not(ul, div, section, article) {
    grid-column: initial;
  }
}
.s-woo .woocommerce-order > p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}
.s-woo .woocommerce-order .col2-set .col-1, .s-woo .woocommerce-order .col2-set .col-2 {
  width: calc(50% - 0.5rem);
}
@media (max-width: 900px) {
  .s-woo .woocommerce-order .col2-set .col-1, .s-woo .woocommerce-order .col2-set .col-2 {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.s-woo .woocommerce-customer-details {
  grid-column: 2;
}
@media (max-width: 900px) {
  .s-woo .woocommerce-customer-details {
    grid-column: initial;
  }
}
.s-woo .woocommerce .woocommerce-customer-details address {
  border: none;
  background-color: #f2ede7;
  line-height: 1.6em;
}
.s-woo .woocommerce .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
  background-color: #f2ede7;
  padding: 1rem;
  box-sizing: border-box;
  grid-column: 1/3;
}
@media (min-width: 1120px) {
  .s-woo .woocommerce .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
  }
}
.s-woo .woocommerce ul.order_details {
  border-bottom: none;
  padding-bottom: none;
  margin-bottom: 0;
}
.s-woo .woocommerce .woocommerce-order-details {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  grid-row: span 3;
}
.s-woo .woocommerce ul.order_details li {
  font-size: 0.8em;
}
.s-woo .woocommerce-error {
  padding: 1em 2em 1em 3.5em;
}
.s-woo .woocommerce table tr {
  background-color: transparent;
}
.s-woo .woocommerce table tr:nth-child(2n+2):not(thead tr) {
  background-color: transparent;
}
.s-woo .woocommerce-info::before {
  color: #000000;
}
.s-woo .woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.s-woo .woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses::before {
  display: none;
}
.s-woo .woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses .col-1, .s-woo .woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses .col-2 {
  width: 100%;
  box-sizing: border-box;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
  background-color: #000000;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 400;
  min-height: initial;
  font-size: 1.2rem;
  padding: 0.5rem 0;
  font-family: "Source Serif 4", serif;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
