:root {
  --color-dark: #222222;
  --color-text-secondary: #777777;
  --color-border: #e5e5e5;
  --color-bg-light: #f5f5f5;
  --color-white: #ffffff;

  --font-heading: "Jost", sans-serif;
  --font-body: "Jost", sans-serif;
  --base-size-font: 16px;

  --transition: all 0.3s ease;

  --title: 1.8rem;
  --text-content-size: 1rem;
}

@media screen and (min-width: 580px) {
  :root {
    --title: 2rem;
  }
}

@media screen and (min-width: 980px) {
  :root {
    --title: 2.4rem;
  }
}

@media screen and (min-width: 1280px) {
}

body {
  font: 400 var(--base-size-font) var(--font-body);
  line-height: 1.6;
  margin: 0;
  color: var(--color-dark);
  padding-top: var(--header-height, 0px);
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

p {
  font-size: var(--text-content-size);
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* --- Title --- */
.title {
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}
.title h1,
.title h2,
.title h3 {
  font: 400 var(--title) var(--font-heading);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0;
}

.title__subtitle {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
}

.title.-lineas h1,
.title.-lineas h2,
.title.-lineas h3 {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.title.-lineas h1::before,
.title.-lineas h1::after,
.title.-lineas h2::before,
.title.-lineas h2::after,
.title.-lineas h3::before,
.title.-lineas h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--color-border);
}

@media screen and (min-width: 580px) {
}

@media screen and (min-width: 980px) {
}

@media screen and (min-width: 1280px) {
}

/* --- Utilidades --- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: flex;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.d-flex {
  display: flex;
}

.svg-icon {
  display: block;
}

/* --- Container --- */
.container {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0 1.5rem;
  max-width: 1396px;
  z-index: 1;
}
.container.-full {
  max-width: none;
  width: 96%;
}

@media screen and (min-width: 580px) {
}

@media screen and (min-width: 980px) {
  .container {
    width: 100%;
  }
}

@media screen and (min-width: 1280px) {
}

/* --- General --- */
.btn {
  border: none;
  background: var(--color-dark);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 30px;
  transition: var(--transition);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 0;
}

.btn:hover {
  background-color: var(--color-text-secondary);
}

.btn.-w100 {
  width: 100%;
}

.btn.-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn.-outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.btn.-white {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.btn.-white:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.btn.-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn.-outline-dark:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

section {
  padding: 60px 0;
  overflow-x: clip;
  position: relative;
  scroll-margin-top: 130px;
}

@media screen and (min-width: 980px) {
  section {
    padding: 90px 0;
  }
}

@media screen and (min-width: 1280px) {
}

/**
*	HEADER
*	=======================================================================================================
**/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 4px 15px rgb(0 0 0 / 10%);
}

.header.is-hidden {
  transform: translateY(-100%);
}

/** HEADER - ROW (3 COLUMNAS) ============== **/
.header__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  transition: padding 0.3s ease;
}

.header.is-scrolled .header__row {
  padding: 6px 0;
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}

.header__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-dark);
  transition: var(--transition);
}

@media screen and (min-width: 980px) {
  .header__hamburger {
    display: none;
  }
  .header__row {
  border-bottom: 1px solid var(--color-border);
}

}

.header__col {
  display: flex;
  align-items: center;
}

/** HEADER - COL BÚSQUEDA ============== **/
.header__col--search {
  position: relative;
  gap: 6px;
}

@media screen and (min-width: 980px) {
  .header__col--search {
    width: 240px;
  }
}

.header__search-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media screen and (min-width: 980px) {
  .header__search-toggle {
    display: flex;
  }
}

.header__search-toggle-icon {
  width: 19px;
  height: 19px;
}

.header__search-toggle-text {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-dark);
  white-space: nowrap;
}

/** HEADER - SEARCH OVERLAY ============== **/
.header__search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background-color: rgb(0 0 0 / 70%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.header__search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header__search-overlay-inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  background-color: var(--color-white);
  padding: 80px 20px;
  transform: translateY(-100%);
  transition: var(--transition);
}

.header__search-overlay.is-open .header__search-overlay-inner {
  transform: translateY(0);
}

.header__search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.header__search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin-top: 2.5rem;
  border: 1px solid var(--color-border);
  padding: 8px 10px;
}

.header__search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-dark);
}

.header__search-input::placeholder {
  color: var(--color-text-secondary);
}

.header__search-submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__search-submit-icon {
  width: 17px;
  height: 17px;
}

/** HEADER - COL MEDIO (NAV IZQ + LOGO + NAV DER) ============== **/
.header__col--middle {
  justify-content: center;
  flex: 1;
}

@media screen and (min-width: 980px) {
  .header__col--middle {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
}

.header__col-logo {
  display: flex;
  justify-content: center;
}

.header__logo {
  display: flex;
}

.header__logo-img {
  width: 130px;
  height: auto;
  display: block;
  transition: width 0.3s ease;
}

.header.is-scrolled .header__logo-img {
  width: 110px;
}

@media screen and (min-width: 980px) {
  .header__logo-img {
    width: 150px;
  }

  .header.is-scrolled .header__logo-img {
    width: 130px;
  }
}

.header__nav {
  display: none;
}

@media screen and (min-width: 980px) {
  .header__nav {
    display: block;
  }

  .header__nav--left {
    justify-self: start;
  }

  .header__nav--right {
    justify-self: end;
  }
}

.header__nav-menu {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: var(--transition);
  white-space: nowrap;
}

.header__nav-link:hover {
  color: var(--color-text-secondary);
}

/** HEADER - COL ICONOS ============== **/
.header__col--icons {
  justify-content: flex-end;
}

@media screen and (min-width: 980px) {
  .header__col--icons {
    width: 240px;
  }
}

.header__icons {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.header__icons-item {
  display: none;
}

.header__icons-item:last-child {
  display: block;
}

@media screen and (min-width: 980px) {
  .header__icons-item {
    display: block;
  }
}

.header__icons-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icons-icon {
  width: 21px;
  height: 21px;
}

.header__icons-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/**
*	NAV SIDEBAR (MOBILE)
*	=======================================================================================================
**/
.nav-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 2000;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.nav-sidebar.is-open {
  left: 0;
  box-shadow: 4px 0 20px rgb(0 0 0 / 15%);
}

@media screen and (min-width: 980px) {
  .nav-sidebar {
    display: none;
  }
}

.nav-sidebar__header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

.nav-sidebar__logo-img {
  width: 120px;
  display: block;
}

.nav-sidebar__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-sidebar__close-icon {
  width: 18px;
  height: 18px;
  color: var(--color-dark);
}

.nav-sidebar__body {
  padding: 10px 20px 20px;
  flex: 1;
}

.nav-sidebar__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-sidebar__menu-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.nav-sidebar__utility {
  list-style: none;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-sidebar__utility-item a,
.nav-sidebar__utility-btn {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
}

.nav-sidebar__utility-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.nav-sidebar__overlay {
  position: fixed;
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
  z-index: 1999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-sidebar__overlay.is-open {
  display: block;
  opacity: 1;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	PÁGINA HOME
*	=======================================================================================================
**/

/** SECCIÓN HERO - HOME ============== **/
.hero {
  padding: 0;
  overflow: hidden;
}

.hero__swiper {
  position: relative;
}

.hero__slide {
  position: relative;
  background-color: var(--color-bg-light);
}

.hero__slide-wrapper {
  align-items: center;
  gap: 30px;
  text-align: left;
}

.hero__slide-image {
  overflow: hidden;
  width: 40%;
  height: stretch;
}
.hero__slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 20px;
  width: 60%;
  min-height: 340px;
  justify-content: center;
  padding: 40px 1.5rem 40px 20px;
}

.hero__slide-title {
  font: 500 1.5rem var(--font-heading);
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 500px;
  color: #fff;
}
@media screen and (min-width: 580px) {
  .hero__slide-title {
    font-size: 2.6rem;
  }
  .hero__slide-content {
    padding: 0 20px;
  }
}
.hero__slide-text {
  margin: 0 0 24px;
  max-width: 380px;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.2;
}
.hero__slide-title,
.hero__slide-text,
.hero__slide-content .btn {
  opacity: 0;
  transform: translateY(30px);
  transition:
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease;
}

.hero__slide-content .btn {
  text-transform: none;
  transition:
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.swiper-slide-active .hero__slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.swiper-slide-active .hero__slide-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.swiper-slide-active .hero__slide-content .btn {
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.6s,
    opacity 0.6s ease 0.6s,
    background-color 0.3s ease,
    color 0.3s ease;
}

.hero__slide-floating {
  position: absolute;
  top: 50%;
  left: -30px;
  z-index: 4;
  display: block;
  width: 70px;
  aspect-ratio: 4 / 5;
  opacity: 0;
  box-shadow: 0 20px 40px rgb(0 0 0 / 10%);
  transform: translate(-50%, -50%) perspective(1400px) rotateY(90deg);
  transition:
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease;
}

.swiper-slide-active .hero__slide-floating {
  opacity: 1;
  transform: translate(-50%, -50%) perspective(1400px) rotateY(0deg);
  transition-delay: 0.2s;
}

.hero__pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  --swiper-pagination-color: var(--color-white);
  --swiper-pagination-bullet-inactive-color: var(--color-dark);
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.hero__nav {
  display: none;
}

@media screen and (min-width: 580px) {
  .hero__slide-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 980px) {
  .hero__slide-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .hero__slide-content {
    align-items: flex-start;
    width: 60%;
    padding: 0 4.5rem 0 220px;
  }

  .hero__slide-title {
    font-size: 3.2rem;
  }

  .hero__slide-image {
    height: calc(100vh - 75px);
    width: 40%;
  }

  .hero__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .hero:hover .hero__nav {
    opacity: 1;
  }

  .hero__nav-prev,
  .hero__nav-next {
    width: 30px;
    height: 30px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
  }

  .hero__nav-icon {
    width: 16px;
    height: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .hero__slide-floating {
    width: 317px;
    left: 0;
  }

  .hero__slide-title {
    font-size: 63px;
  }
}

/** SECCIÓN GÉNERO - HOME ============== **/
.genero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.genero__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 8/5;
}
.genero__card-image {
  position: absolute;
  inset: 0;
}
.genero__card-image img {
  transition: transform 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.genero__card:hover .genero__card-image img {
  transform: scale(1.09);
}
.genero__card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.genero__card-title {
  font: 400 2rem var(--font-heading);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.genero__card-text {
  max-width: 260px;
  margin-bottom: 20px;
  color: var(--color-text-secondary);
}

@media screen and (min-width: 580px) {
  .genero__card-content {
  padding: 2rem 2.5rem;
}
}

@media screen and (min-width: 980px) {
  .genero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media screen and (min-width: 1280px) {
}

/** SECCIÓN CATEGORÍAS PRINCIPALES - HOME ============== **/
#categorias-principales {
  padding: 0;
}
.categorias-principales__item {
  text-align: center;
}

.categorias-principales__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  text-decoration: none;
}

.categorias-principales__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
}
.categorias-principales__icon img {
  width: 100%;
  height: 100%;
}

.categorias-principales__title {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--color-dark);
}

.categorias-principales__title span {
  position: relative;
}

.categorias-principales__title span::before,
.categorias-principales__title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  border-bottom: 1px solid var(--color-dark);
  opacity: 0;
}

.categorias-principales__title span::before {
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}

.categorias-principales__title span::after {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.categorias-principales__item:hover
  .categorias-principales__title
  span::before {
  transform: scaleX(0);
  transition-delay: 0s;
  opacity: 1;
}

.categorias-principales__item:hover .categorias-principales__title span::after {
  transform: scaleX(1);
  transition-delay: 0.3s;
  opacity: 1;
}

@media screen and (min-width: 580px) {
}

@media screen and (min-width: 980px) {
  .categorias-principales__icon {
    width: 45px;
    height: 45px;
  }
}

@media screen and (min-width: 1280px) {
}

/** SECCIÓN COLECCIÓN - HOME ============== **/
.collection__pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.collection__pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid var(--color-dark);
  opacity: 1;
}

.collection__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-dark);
}

/** PRODUCT CARD (reutilizable en tienda) ============== **/
.product-card__image-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 1 / 1;
}

.product-card__image,
.product-card__image-hover {
  transition: opacity 0.4s linear;
}

.product-card__image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-card__image-hover {
  opacity: 1;
}
.product-card__badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 7px;
  line-height: 1;
}

.product-card__badge.-sold {
  background-color: var(--color-text-secondary);
}

.product-card__actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(70px);
  transition: all 0.3s ease-out;
}

.product-card:hover .product-card__actions {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.product-card__action-btn {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.product-card__action-btn:hover,
.product-card__action-btn.is-active {
  background-color: var(--color-dark);
}

.product-card__action-btn:hover .product-card__action-icon,
.product-card__action-btn.is-active .product-card__action-icon {
  filter: invert(1);
}

.product-card__action-btn.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.product-card__list-action-btn.is-active .product-card__list-action-icon {
  filter: invert(0.6) sepia(1) saturate(4) hue-rotate(320deg);
}

.js-wishlist-toggle.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.product-card__action-icon {
  width: 15px;
  height: 15px;
}
.product-card__action-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  transform: translateY(-50%) translateX(6px);
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.82rem;
  white-space: nowrap;
  padding: 5px 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.product-card__action-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.product-card__body {
  text-align: center;
}

.product-card__category {
  margin: 0 0 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-text-secondary);
}

.product-card__name {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.product-card__name a {
  color: var(--color-dark);
  text-decoration: none;
}

.product-card__price-wrap {
  position: relative;
  overflow: hidden;
}

.product-card__price {
  transition: all 0.3s ease;
}

.product-card__price-current {
  font-weight: 500;
  color: var(--color-dark);
}

.product-card__price-old {
  margin-left: 8px;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

.product-card__add-to-cart {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(27px);
    background-color: var(--color-white);
    color: var(--color-dark);
    border: none;
    padding: 3px 14px;
    font-size: 0.82rem;
}

.product-card__add-to-cart:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
  border: none;
  padding: 5px 14px;
  font-size: 0.82rem;
}

.product-card:hover .product-card__price {
  opacity: 0;
  transform: translateY(-100%);
}

.product-card:hover .product-card__add-to-cart {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-card__desc {
  display: none;
}

.product-card__list-actions {
  display: none;
}

@media screen and (max-width: 979.98px) {
  .product-card__actions {
    display: none;
  }

  .product-card__add-to-cart {
    display: none;
  }

  .product-card:hover .product-card__price {
    opacity: 1;
    transform: none;
  }

  .product-card__name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .product-card__name a {
    display: block;
  }
}

@media screen and (min-width: 580px) {
}

@media screen and (min-width: 980px) {
}

@media screen and (min-width: 1280px) {
}

/** SECCIÓN FIND STORE ============== **/
.find-store {
  padding: 0;
}

.find-store__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  text-align: center;
  background-color: #f6e9f2;
  padding: 24px 0;
}

.find-store__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.find-store__text {
  margin: 0;
  font-size: 1.3rem;
  color: var(--color-dark);
  padding-right: 10px;
  line-height: 1;
}

.find-store__btn {
  padding: 8px 24px;
  font-size: 0.75rem;
}

/** SECCIÓN RESEÑAS DE CLIENTES ============== **/
.reviews {
  margin: 40px 0;
  background-color: #ede3e2;
}
.review-card {
  height: 100%;
  background-color: var(--color-white);
  padding: 34px 30px;
}

.review-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.review-card__icon img {
  width: 18px;
  height: 18px;
}

.review-card__title {
  font: 600 1.1rem var(--font-heading);
  margin: 0 0 10px;
  color: var(--color-dark);
}

.review-card__text {
  margin: 0 0 20px;
  font-size: 0.9rem;
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-card__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
}

.review-card__name::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1px;
  margin-right: 6px;
  vertical-align: middle;
  background-color: var(--color-dark);
}
.review-card__rating {
  color: #d98a72;
  letter-spacing: 1px;
}

.review-card__rating .-empty {
  color: #d8d0cf;
}

.reviews__nav {
  display: none;
}

@media screen and (min-width: 980px) {
  .reviews__nav {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .reviews:hover .reviews__nav {
    opacity: 1;
  }

  .reviews__nav-prev,
  .reviews__nav-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 30px;
    height: 30px;
    border: none;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
    transition: var(--transition);
  }

  .reviews__nav-prev {
    left: 0;
  }

  .reviews__nav-next {
    right: 0;
  }
}

.reviews__pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.reviews__pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid var(--color-dark);
  opacity: 1;
}

.reviews__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-dark);
}

/** SECCIÓN INSTAGRAM ============== **/
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media screen and (min-width: 580px) {
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 980px) {
  .instagram__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.instagram__item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.instagram__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 40%);
  opacity: 0;
  transition: var(--transition);
}

.instagram__icon img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

.instagram__item:hover .instagram__icon {
  opacity: 1;
}

/**
*	FOOTER
*	=======================================================================================================
**/
.footer {
  padding: 60px 0 0;
}

.footer__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--color-border);
}

@media screen and (min-width: 580px) {
  .footer__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 980px) {
  .footer__row {
    grid-template-columns: 1.1fr 1fr 1fr 1.1fr 0.8fr;
    gap: 24px;
  }
}

@media screen and (max-width: 979.98px) {
  .footer__col {
    text-align: center;
  }

  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social,
  .footer__support {
    justify-content: center;
  }
}

.footer__logo {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.footer__tagline {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.footer__social {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: var(--transition);
}

.footer__social a:hover {
  opacity: 0.6;
}

.footer__social img {
  width: 15px;
  height: 15px;
}

.footer__title {
  font: 500 1rem var(--font-heading);
  margin: 0 0 20px;
  color: var(--color-dark);
}

.footer__support {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__support-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__support-icon img {
  width: 17px;
  height: 17px;
}

.footer__support-label {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.footer__support-phone {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
}

.footer__address {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.footer__address a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer__address a:hover {
  color: var(--color-dark);
}

.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__menu li {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer__menu a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer__menu a:hover {
  color: var(--color-dark);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__copyright {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.footer__copyright + .footer__copyright {
  margin-top: 6px;
}
.footer__copyright a {
  color: var(--color-dark);
  text-decoration: underline;
}

.footer__copyright-logo-link {
  display: inline-flex;
  vertical-align: middle;
  text-decoration: none;
}

.footer__copyright-logo {
  height: 11px;
  width: auto;
}

/**
*	BACK TO TOP
*	=======================================================================================================
**/
.back-to-top {
  display: none;
}

@media screen and (min-width: 980px) {
  .back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background-color: var(--color-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top.has-sticky-cart {
  bottom: 94px;
}

.back-to-top:hover {
  background-color: var(--color-text-secondary);
}

.back-to-top__icon {
  width: 16px;
  height: 16px;
  filter: invert(1);
}
}

/**
*	PÁGINA PRODUCTO
*	=======================================================================================================
**/
.breadcrumb {
    padding: 40px 0 16px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-light);
}
.breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-dark);
}

.breadcrumb__sep {
  margin: 0 6px;
}

.breadcrumb__current {
  color: var(--color-dark);
}

.breadcrumb__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.breadcrumb__path {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.breadcrumb__path::-webkit-scrollbar {
  display: none;
}

.breadcrumb__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.breadcrumb__nav-link {
  width: 14px;
  height: 14px;
  display: block;
  color: var(--color-dark);
}

/** PRODUCTO - GALERÍA + RESUMEN ============== **/
.product-single {
    padding-top: 20px;
    background-color: var(--color-bg-light);
}
.product-single__row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 980px) {
  .product-single__row {
    flex-direction: row;
    gap: 60px;
  }

  .product-single__row > .product-single__gallery,
  .product-single__row > .product-single__summary {
    flex: 1 1 0;
  }
}

.product-single__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (min-width: 980px) {
  .product-single__gallery {
    flex-direction: row-reverse;
    gap: 16px;
    position: sticky;
    top: 50px;
    height: fit-content;
}
}

.product-single__main-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--color-bg-light);
    cursor: zoom-in;
    height: max-content;
}

@media screen and (min-width: 980px) {
  .product-single__main-image {
    flex: 1;
  }
}

.product-single__main-image img {
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.product-single__main-image:hover img {
  transform: scale(1.08);
}

.product-single__main-image img.is-hidden {
  opacity: 0;
}

.product-single__zoom-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.product-single__zoom-btn:hover {
  background-color: var(--color-dark);
}

.product-single__zoom-btn:hover img {
  filter: invert(1);
}

.product-single__zoom-btn img {
  width: 15px;
  height: 15px;
}

.product-single__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media screen and (min-width: 980px) {
  .product-single__thumbs {
    grid-template-columns: 1fr;
    width: 90px;
    height: fit-content;
}
}
.product-single__thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--color-border);
    background: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
}
.product-single__thumb.is-active {
  border-color: var(--color-dark);
}

.product-single__title {
    font: 400 2rem var(--font-heading);
    margin: 6px 0 0;
    color: var(--color-dark);
}

.product-single__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-single__rating-link {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  text-decoration: none;
}

.product-single__rating-link:hover {
  color: var(--color-dark);
}

.product-single__price {
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 500;
    color: var(--color-dark);
}

.product-single__desc {
    max-width: 480px;
    margin-bottom: 18px;
    font-size: var(--text-content-size);
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}
.product-single__stock {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.product-single__stock .-in-stock {
  color: #2e7d4f;
  font-weight: 500;
}

.product-single__stock .-out-of-stock {
  color: #b3261e;
  font-weight: 500;
}

.product-single__form {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.product-single__quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.product-single__qty-minus,
.product-single__qty-plus {
  width: 40px;
  height: 46px;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-dark);
}

.product-single__qty-input {
  width: 44px;
  height: 46px;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-dark);
  -moz-appearance: textfield;
  appearance: textfield;
}

.product-single__qty-input::-webkit-outer-spin-button,
.product-single__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-single__add-to-cart {
  padding: 13px 40px;
}

.product-single__buy-now {
  width: 100%;
  padding: 13px 40px;
}

.product-single__utility {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-single__utility a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.product-single__utility a.js-wishlist-toggle.is-active {
  color: var(--color-dark);
  font-weight: 600;
}

.product-single__utility a.js-wishlist-toggle.is-active img {
  filter: invert(0.6) sepia(1) saturate(4) hue-rotate(320deg);
}

.product-single__utility a.js-wishlist-toggle.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.product-single__utility a:hover {
  color: var(--color-dark);
}

.product-single__utility img {
  width: 16px;
  height: 16px;
}

.product-single__delivery {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
}

.product-single__viewing {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.product-single__viewing img {
  width: 16px;
  height: 16px;
}

.product-single__viewing strong {
  color: var(--color-dark);
}

.product-single__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background-color: var(--color-bg-light);
  padding: 20px;
  margin-bottom: 24px;
}

@media screen and (min-width: 580px) {
  .product-single__benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-single__benefits div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.product-single__benefits img {
    width: 35px;
    height: 35px;
}

.product-single__benefits span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.2;
}

.product-single__meta {
    margin: 20px 0;
}

.product-single__meta p {
  font-size: 0.85rem;
  margin: 0 0 6px;
  color: var(--color-text-secondary);
}

.product-single__meta span {
  color: var(--color-dark);
}

.product-single__meta a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.product-single__meta a:hover {
  color: var(--color-dark);
}

.product-single__share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-single__share-label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.product-single__share img {
  width: 15px;
  height: 15px;
}

/** PRODUCTO - TABS ============== **/
.product-tabs {
    padding: 60px 0;
}
.product-tabs__nav {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.product-tabs__btn {
    background: none;
    border: none;
    padding: 0 0 5px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    position: relative;
}

.product-tabs__btn.is-active {
  color: var(--color-dark);
}

.product-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background-color: var(--color-dark);
}

.product-tabs__panel {
    display: none;
    max-width: 720px;
    margin: 0 auto;
}

.product-tabs__panel.is-active {
  display: block;
}

.product-tabs__panel .review-card {
  margin-bottom: 20px;
  max-width: 100%;
}

/** PRODUCTO - RESEÑAS (WooCommerce reviews) ============== **/
#tab-reviews .woocommerce-Reviews {
  text-align: left;
}

#tab-reviews #comments {
  margin-bottom: 50px;
}

#tab-reviews .woocommerce-Reviews-title {
  font: 400 1.5rem var(--font-heading);
  letter-spacing: 0.01em;
  margin: 0 0 25px;
  color: var(--color-dark);
}

#tab-reviews .woocommerce-Reviews-title span {
  color: var(--color-text-secondary);
}

/* Mensaje "Ancora non ci sono recensioni" */
#tab-reviews .woocommerce-noreviews {
  background: var(--color-bg-light);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-left: 3px solid #d98a72;
  padding: 14px 18px;
  margin: 0 0 30px;
  font-size: 0.9rem;
}

/* Listado de reseñas */
#tab-reviews ol.commentlist {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

#tab-reviews ol.commentlist li.review,
#tab-reviews ol.commentlist li.comment {
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--color-border);
}

#tab-reviews ol.commentlist li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

#tab-reviews .comment_container {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

#tab-reviews .comment_container img.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0;
  border: 1px solid var(--color-border);
  background: var(--color-bg-light);
}

#tab-reviews .comment-text {
  min-width: 0;
}

#tab-reviews .comment-text > .star-rating {
  margin: 2px 0 8px;
  font-size: 0.9em;
  color: #d98a72;
}

#tab-reviews .comment-text .star-rating::before,
#tab-reviews .comment-text .star-rating span::before {
  color: #d98a72;
}

#tab-reviews .comment-text p.meta {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

#tab-reviews .woocommerce-review__author {
  font-weight: 600;
  color: var(--color-dark);
  font-style: normal;
}

#tab-reviews .woocommerce-review__dash {
  margin: 0 6px;
}

#tab-reviews .comment-text .description {
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

#tab-reviews .comment-text .description p:last-child {
  margin-bottom: 0;
}

#tab-reviews .woocommerce-review__verified {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.75rem;
  color: #4a8f5b;
}

/* Formulario de reseña */
#tab-reviews #review_form_wrapper {
  border-top: 1px solid var(--color-border);
  padding-top: 35px;
}

#tab-reviews .comment-reply-title {
  display: block;
  font: 400 1.25rem var(--font-heading);
  color: var(--color-dark);
  margin-bottom: 8px;
}

#tab-reviews .comment-notes,
#tab-reviews .comment-form-cookies-consent {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

#tab-reviews .comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

#tab-reviews .comment-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 8px;
}

#tab-reviews .comment-form .required {
  color: #d98a72;
}

#tab-reviews .comment-form input[type="text"],
#tab-reviews .comment-form input[type="email"],
#tab-reviews .comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font: 400 0.9rem var(--font-body);
  color: var(--color-dark);
  border-radius: 0;
  transition: border-color 0.3s ease;
}

#tab-reviews .comment-form input[type="text"]:focus,
#tab-reviews .comment-form input[type="email"]:focus,
#tab-reviews .comment-form textarea:focus {
  outline: none;
  border-color: var(--color-dark);
}

#tab-reviews .comment-form textarea {
  min-height: 130px;
  resize: vertical;
}

#tab-reviews .comment-form-author,
#tab-reviews .comment-form-email,
#tab-reviews .comment-form-comment,
#tab-reviews .comment-form-rating {
  margin: 0;
}

@media screen and (min-width: 620px) {
  #tab-reviews .comment-form-author,
  #tab-reviews .comment-form-email {
    display: inline-block;
    width: calc(50% - 10px);
  }

  #tab-reviews .comment-form-author {
    margin-right: 20px;
  }
}

/* Selector de estrellas */
#tab-reviews .comment-form-rating label {
  margin-bottom: 6px;
}

#tab-reviews p.stars {
  margin: 0;
  line-height: 1;
}

#tab-reviews p.stars a::before {
  color: var(--color-dark);
  font-size: 1.3em;
}

#tab-reviews p.stars:hover a::before,
#tab-reviews p.stars.selected a.active::before,
#tab-reviews p.stars.selected a:not(.active)::before {
  color: #d98a72;
}

#tab-reviews p.stars.selected a.active ~ a::before {
  color: var(--color-dark);
}

#tab-reviews select#rating {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font: 400 0.9rem var(--font-body);
}

/* Botón enviar */
#tab-reviews .form-submit {
  margin: 0;
}

#tab-reviews .comment-form input#submit,
#tab-reviews .comment-form .submit {
  border: none;
  background: var(--color-dark);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 12px 40px;
  cursor: pointer;
  border-radius: 0;
  transition: var(--transition);
}

#tab-reviews .comment-form input#submit:hover,
#tab-reviews .comment-form .submit:hover {
  background-color: var(--color-text-secondary);
}

#tab-reviews .woocommerce-verification-required {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

#tab-reviews .must-log-in,
#tab-reviews .woocommerce-Reviews .must-log-in a {
  font-size: 0.9rem;
}

/** PRODUCTO - STICKY ADD TO CART ============== **/
.sticky-add-to-cart {
  display: none;
}

@media screen and (min-width: 980px) {
  .sticky-add-to-cart {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    background-color: var(--color-white);
    box-shadow: 0 -4px 15px rgb(0 0 0 / 10%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .sticky-add-to-cart.is-visible {
    transform: translateY(0);
  }
}

.sticky-add-to-cart__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.sticky-add-to-cart__info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.sticky-add-to-cart__image {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  overflow: hidden;
}

.sticky-add-to-cart__title {
  margin: 0 0 2px;
  font-size: 0.95rem;
  color: var(--color-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.sticky-add-to-cart__price {
  font-weight: 500;
  color: var(--color-dark);
}

.sticky-add-to-cart__btn {
  flex-shrink: 0;
}

/** PRODUCTO - LIGHTBOX ============== **/
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background-color: rgb(0 0 0 / 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.product-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.product-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

/** PRODUCTO - QUICKVIEW ============== **/
.quickview-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.quickview-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.quickview-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 60%);
}

.quickview-modal__dialog {
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    width: 100%;
    max-width: 960px;
    height: 90vh;
    overflow-y: auto;
    padding: 40px;
    max-height: 760px;
}

.quickview-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.quickview__row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 780px) {
  .quickview__row {
    flex-direction: row;
    gap: 40px;
  }

  .quickview__gallery, .quickview__summary {
    flex: 1 1 0;
    min-width: 0;
    height: fit-content;
    position: sticky;
    top: 0;
}
}

.quickview__gallery-swiper {
  aspect-ratio: 1 / 1;
}

.quickview__gallery-nav {
  display: none;
}

@media screen and (min-width: 780px) {
  .quickview__gallery-nav {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .quickview__gallery:hover .quickview__gallery-nav {
    opacity: 1;
  }
}

.quickview__gallery-nav-prev,
.quickview__gallery-nav-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 30px;
  height: 30px;
  border: none;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: var(--transition);
}

.quickview__gallery-nav-prev {
  left: 10px;
}

.quickview__gallery-nav-next {
  right: 10px;
}

.quickview__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}

.quickview__buy-now-form {
  display: contents;
}

.quickview__loading {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quickview__loading::after {
  content: "";
  width: 34px;
  height: 34px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-dark);
  border-radius: 50%;
  animation: quickview-spin 0.7s linear infinite;
}

@keyframes quickview-spin {
  to {
    transform: rotate(360deg);
  }
}
