/* --- VARIABLES --- */
:root {
  /* --pink-L:rgb(255, 208, 236);
    --pink-M:rgb(255, 102, 195);
    --pink-S:rgb(253, 11, 158);

    --red-L:rgb(255, 208, 210);
    --red-M:rgb(255, 102, 110);
    --red-S:rgb(255, 11, 23);

    --purple-L:rgb(238, 211, 255);
    --purple-M:rgb(199, 111, 255);
    --purple-S:rgb(164, 25, 252);

    --green-L:rgb(212, 255, 208);
    --green-M:rgb(117, 255, 102);
    --green-S:rgb(34, 253, 11);

    --yellow-L:rgb(255, 254, 208);
    --yellow-M:rgb(255, 253, 102);
    --yellow-S:rgb(255, 252, 11);

    --text-dark: rgb(3, 3, 3);
    --text-light: rgb(115, 115, 115);
    --white: rgb(255, 255, 255); */

  --pink-L: #ffd0ec;
  --pink-M: #ff66c3;
  --pink-S: #fd0b9e;

  --red-L: #ffd0d2;
  --red-M: #ff666e;
  --red-S: #ff0b17;

  --purple-L: #eed3ff;
  --purple-M: #c76fff;
  --purple-S: #a419fc;

  --green-L: #d4ffd0;
  --green-M: #75ff66;
  --green-S: #22fd0b;

  --yellow-L: #fffed0;
  --yellow-M: #fffd66;
  --yellow-S: #fffc0b;

  --text-dark: #030303;
  --text-light: #737373;
  --text-placejolder: #b0b0b0;
  --white: #ffffff;

  --font-main: "Belleza", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* --- BASE --- */
* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-decoration: none;
  line-height: 100%;
}

*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  font-family: var(--font-secondary);
  background: white;
  color: var(--text-dark);
  font-display: swap;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  font-weight: 800;
}

p {
  line-height: 130%;
}

a {
  text-decoration: none;
  font-size: 1.1rem;
  cursor: pointer;
}

ul {
  list-style: none;
}

img {
  display: block;
}

button {
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid var(--text-placejolder);
  border-radius: 8px;
  padding: 1rem;
  width: 100%;
}

input:focus,
input:active {
  border: 1px solid var(--pink-S);
}

input::placeholder {
  color: var(--text-placejolder);
  font-weight: 600;
}

select {
  outline: none;
  border: 1px solid var(--text-placejolder);
  border-radius: 8px;
  padding: 1rem;
  width: 100%;
}

select:focus,
select:active {
  border: 1px solid var(--pink-S);
}

select::placeholder {
  color: var(--text-placejolder);
  font-weight: 600;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid var(--text-placejolder);
  border-radius: 8px;
  padding: 1rem;
  width: 100%;
}

textarea::placeholder {
  color: var(--text-placejolder);
  font-weight: 600;
}

textarea:focus,
textarea:active {
  border: 1px solid var(--pink-S);
}

/* --- UTILIDADES --- */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
}

.h-separator {
  height: 10rem;
}
@media (max-width: 768px) {
  .h-separator {
    height: 7rem;
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--pink-M);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-S);
}

/* ------------------- HEADER ------------------- */

.navbar__wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 1s;
  height: 90px;
}

.navbar__wrapper.scrolled {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar__logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-main);
}

.navbar__wrapper.scrolled .navbar__logo {
  color: var(--pink-S);
}

.navbar__links-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.navbar__links {
  color: var(--white);
  font-size: 1.8rem;
}

.navbar__wrapper.scrolled .navbar__links {
  color: var(--text-dark);
}

.navbar__wrapper.scrolled .navbar__links:hover,
.navbar__wrapper.scrolled .navbar__links:focus,
.navbar__wrapper.scrolled .navbar__links:active {
  color: var(--pink-S);
}

.navbar__links:hover,
.navbar__links:focus,
.navbar__links:active {
  color: var(--pink-S);
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -16px;
  right: -12px;
  background: var(--purple-S);
  color: var(--white);
  font-size: 0.9rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.search-wrapper {
  position: relative;
}

.nav-search {
  display: block;
  position: absolute;
  right: 0;
  top: 60px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  width: 500px;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.search-wrapper.open .nav-search {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-search input.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: var(--purple-S);
  font-weight: 800;
}

.search-toggle {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease, transform 0.12s ease;
}

.search-toggle i {
  transition: transform 0.18s ease, color 0.12s ease;
}

.search-wrapper.open .search-toggle i {
  transform: rotate(90deg);
  color: var(--pink-S);
}

.nav-search-results {
  max-height: 60dvh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0 1rem;
}

.nav-search-result:first-child {
  margin-top: 1rem;
}

.nav-search-result:last-child {
  margin-bottom: 1rem;
}

.nav-search-result {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.12s ease, transform 0.08s ease;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 100%;
}

.nav-search-result:hover,
.nav-search-result:focus,
.nav-search-result:active {
  background: var(--pink-L);
}

.nav-search-thumb {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 58px;
}

.nav-search-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-items: flex-start;
  gap: 0.5rem;
}

.nav-search-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-search-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-search-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.nav-search-price {
  background: var(--pink-S);
  color: #fff;
  padding: 0.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
}

.nav-search-empty {
  padding: 1rem;
  color: var(--text-light);
  text-align: center;
  font-size: 0.9rem;
}

.underNav__wrapper {
  display: none;
}

@media (max-width: 768px) {
  .navbar__links-container {
    display: none;
  }

  .navbar__wrapper {
    position: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 8dvh;
    z-index: none;
    /*background: var(--text-dark);*/
    background: var(--white);
    border: none;
  }

  .navbar__logo {
    /*color: var(--white);*/
    color: var(--pink-S);
  }

  .navbar__container {
    justify-content: center;
  }

  .underNav__wrapper {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9;
  }

  .underNav__container {
    background: white;
    box-shadow: rgba(14, 30, 37, 0.3) 0px 2px 4px 0px,
      rgba(14, 30, 37, 0.6) 0px 2px 16px 0px;
    border-bottom: 1px solid #e6e6e6;
    width: 100%;
  }

  .underNav__links-container {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 8dvh;
  }

  .navbar__links {
    color: var(--purple-S);
  }

  .undeNav__buttom {
    background: var(--purple-S);
    background: radial-gradient(circle,var(--purple-M) 0%, var(--purple-S) 90%);
    padding: 1.3rem;
    border-radius: 50%;
    margin-bottom: 5dvh;
    border: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    animation: hithere 8s ease infinite;
    
  }

  @keyframes hithere {
    /* El movimiento ahora ocurre solo en el primer 25% del tiempo (25% de 8s = 2s) */
    0%   { transform: scale(1); }
    7%   { transform: scale(1.05); }
    10%, 15% { transform: rotate(-20deg) scale(1.05); }
    12.5% { transform: rotate(20deg) scale(1.05); }
    17.5% { transform: rotate(0deg) scale(1.05); }
    25%  { transform: scale(1); }
    
    /* El elemento se queda estático desde el 25% hasta el 100% (6 segundos de pausa) */
    100% { transform: scale(1); }
    }

  .undeNav__buttom:hover,
  .undeNav__buttom:focus,
  .undeNav__buttom:active {
    background: var(--purple-M);
    background: radial-gradient(circle,var(--purple-S) 40%, var(--purple-M) 100%);
    border: 3px solid rgba(0, 0, 0, 0.2);
    box-shadow: none;
    animation: none;
  }

  .undeNav__buttom i {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .search-wrapper {
  }

  .nav-search {
    position: fixed;
    top: 9dvh;
    width: 90%;
    right: 2rem;
    left: 2rem;
  }
  .nav-search-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }

  @media (max-width: 576px) {
    .navbar__logo {
      font-size: 1.6rem;
    }
  }
  @media (max-width: 350px) {
    .navbar__logo {
      font-size: 1.3rem;
    }
  }
}
/* ---------------------------------------------- */

/* ------------------- HERO --------------------- */
.hero__wrapper {
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__image-container {
  background-color: #1a1a1a;
  width: 100%;
  height: 100%;
  /* background-image removed — use inline <picture>/<img> for responsive hero */
  background-image: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero__image-container picture {
  width: 100%;
  height: 100%;
  
}
.hero__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__content-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__content-container h2 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: var(--white);
  text-align: center;
}

.hero__content-container p {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  color: var(--white);
  text-align: center;
}

@media (max-width: 768px) {
  .hero__wrapper {
    height: 84dvh;
  }

  .hero__content-container h2 {
    font-size: 3rem;
  }

  .hero__content-container p {
    font-size: 1.1rem;
  }

  /* .hero__image-container {
    background-position: left center;
  } */
}
/* ---------------------------------------------- */

/* -------------- PRODUCT SLIDE ----------------- */
.logo__slider-title {
  margin-bottom: 4rem;
}

.logo__slider-title h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.logo__slider-title p {
  text-align: center;
  font-size: 1.3rem;
}

.splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  min-width: 400px;
  width: auto;
  height: auto;
}

.splide__track {
  padding: 1rem 0;
}

.splide__list {
  gap: 3rem;
}

@media (max-width: 576px) {
  .splide__list {
    gap: 2rem;
  }

  .splide__slide {
    max-width: 350px;
    min-width: 300px;
    width: auto;
  }
}

/* ---------------------------------------------- */

/* ----------------- PRODUCTS ------------------- */

/* --- PRODUCTOS --- */
.favorites__wrapper {
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--purple-S),
    var(--purple-M),
    var(--pink-L)
  );
}

.favorites__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.favorites__head {
  margin-bottom: 4rem;
}

.favorites__head h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: white;
}

.favorites__head p {
  text-align: center;
  font-size: 1.3rem;
  color: white;
}

.products-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 400px;
  min-width: 400px;
  width: auto;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img {
  height: 300px;
  width: 100%;
  object-fit: contain;
  background: var(--white);
  /*background: linear-gradient(*/
  /*  180deg,*/
  /*  rgb(224, 224, 224) 76%,*/
  /*  rgba(241, 241, 241, 1) 82%,*/
  /*  rgba(241, 241, 241, 1) 100%*/
  /*);*/
}
.product-info {
  padding: 1rem;
}
.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  margin-top: 1rem;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}
.product-shipping {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 2rem;
}
.product-shipping img {
  width: 25px;
  height: 18px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.detail-shipping-info {
  display: flex;
  gap: 0.5rem;
}
.detail-shipping-info img {
  width: 25px;
  height: 18px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.product-price {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pink-M);
  margin: 5px 0 10px 0;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.action-btn {
  background: none;
  font-size: 1rem;
  color: var(--text-light);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.share-bt {
  font-size: 1.8rem;
}

.share-bt:hover {
  color: var(--purple-S);
}

.like-btn i {
  color: var(--text-light);
  font-size: 1.8rem;
}

.like-btn i:hover,
.like-btn.liked i {
  color: var(--red-S);
}

.add-cart-btn {
  background: var(--pink-M);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-cart-btn i {
  font-size: 1.8rem;
}

.add-cart-btn:hover {
  background: var(--purple-S);
}

@media (max-width: 576px) {
  .product-card {
    max-width: 350px;
    min-width: 300px;
    width: auto;
  }

  .add-cart-btn {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .product-card {
    max-width: 100%;
    min-width: 100%;
    width: auto;
  }

  .product-img {
    height: 200px;
    width: 100%;
  }

  .share-bt {
    font-size: 1.5rem;
  }

  .add-cart-btn i {
    font-size: 1.5rem;
  }

  .like-btn i {
    font-size: 1.5rem;
  }
}
/* ---------------------------------------------- */

/* ----------------- PRODUCTS ------------------- */
.about__container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.about__images-wrapper {
  display: flex;
  width: 60%;
  gap: 1rem;
  height: 82dvh;
}

.about__images-containerLeft {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.about__images-containerLeft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.images__containerLeft-img1 {
  width: 100%;
  height: 50%;
}

.images__containerLeft-img2 {
  padding-left: 3rem;
  width: 100%;
  height: 50%;
}

.about__images-containerRight {
  width: 50%;
  padding: 4rem 0;
}

.about__images-containerRight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about__info-wrapper {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about__info-container {
  margin-bottom: 2rem;
}

.about__info-container h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about__info-container p {
  font-size: 1.2rem;
  line-height: 130%;
}

/* --- FAQ --- */
.faq__title h2 {
  font-size: 2rem;
  color: var(--purple-S);
}

.faq__wrapper {
  width: 100%;
}

.faq__item {
  border-bottom: 1px solid var(--pink-L);
  padding: 20px 0;
}

.faq__question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq__question p {
  font-weight: 600;
}

.faq__question i {
  transition: transform 0.5s ease;
  color: var(--purple-S);
  font-weight: bolder;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  margin-top: 0.5rem;
  color: var(--text-light);
  transition: max-height 0.3s ease;
}

.faq__item.down .faq__answer {
  max-height: 500px;
}

.faq__item.down .faq__question i {
  transform: rotate(180deg);
}

@media (max-width: 950px) {
  .about__container {
    flex-direction: column;
    gap: 3rem;
  }

  .about__images-wrapper {
    width: 100%;
  }

  .about__info-wrapper {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .about__images-wrapper {
    gap: 0.5rem;
    height: 40dvh;
  }

  .images__containerLeft-img2 {
    padding-left: 0;
  }

  .about__images-containerRight {
    width: 50%;
    padding: 0 0;
  }

  .about__images-containerLeft {
    gap: 0.5rem;
  }
}
/* ---------------------------------------------- */

/* ------------------ TIKTOK -------------------- */
.tt__container-head {
  margin-bottom: 4rem;
}

.tt__container-head h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.tt__container-head p {
  text-align: center;
  font-size: 1.3rem;
}

.tt__grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.tt__grid-items {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}

.tt__grid-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 125.1851%;
  overflow: hidden;
  background: var(--red-L);
  border-radius: 10px;
}

.tt__grid-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 480px) {
  .tt__grid-items {
    min-width: 100%;
    max-width: 100%;
  }
}
/* ---------------------------------------------- */

/* ------------------ FOOTER -------------------- */
.footer__wrapper {
  background: var(--text-dark);
  padding: 4rem 0;
}

.footer__container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer__container-info {
  width: 50%;
}

.footer__container-contact h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.footer__container-contact p {
  font-size: 1.3rem;
  color: white;
}

.footer__container-contact h3 {
  font-size: 1.5rem;
  margin: 2rem 0 0.5rem 0;
  color: white;
}

.footer__container-phones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.footer__container-contact a {
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__container-contact a i {
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0.5rem;
  border-radius: 50%;
  background: var(--pink-S);
  color: var(--white);
}

.footer__container-contact a:hover,
.footer__container-contact a:active,
.footer__container-contact a:focus {
  color: var(--white);
}

.form__wrapper {
  width: 50%;
}

.form__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 24px;
  max-width: 475px;
  min-width: 370px;
  margin: 0 auto;
}

.btn-center {
  display: flex;
  justify-content: center;
}

.pplinks__privacy {
  padding: 2rem 2rem;
  background: var(--text-dark);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.pplinks__privacy a {
  color: var(--white);
  font-size: 0.6rem;
}
@media (max-width: 768px) {
  .footer__wrapper {
    background: var(--text-dark);
    padding: 4rem 0 1rem 0;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .footer__container-info {
    width: 100%;
  }

  .form__wrapper {
    width: 100%;
  }

  .footer__copy-container {
    padding-bottom: 14dvh;
  }
}

@media (max-width: 576px) {
  .form__container {
    max-width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 455px) {
  .pplinks__privacy {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------------------------------------------- */

/* -------- FORMULARIO DEL FOOTER MODAL --------- */
/* Estilos del Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    255,
    245,
    247,
    0.8
  ); /* Fondo rosado muy claro con transparencia */
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 3rem;
  border-radius: 40px;
  text-align: center;
  position: relative;
  max-width: 450px;
  width: 90%;
  border: 1px solid #ffdae0;
  box-shadow: 0 20px 40px rgba(255, 182, 193, 0.3);
  animation: popIn 0.5s cubic-bezier(0.26, 0.53, 0.74, 1.48);
}

.modal-body h2 {
  color: #d63384;
  font-weight: bold;
  margin-bottom: 1rem;
}

.modal-body p {
  color: #88606e;
  line-height: 1.6;
}

.hearts {
  font-size: 1.8rem;
  margin: 15px 0;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
  color: #ffb6c1;
  transition: 0.3s;
}

.close-modal:hover {
  color: #d63384;
}

.modal-overlay.active {
  display: flex;
}

.footer__copy-wrapper {
  background: var(--text-dark);
}

.footer__copy-container {
  color: var(--white);
  text-align: center;
  padding-bottom: 0.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .footer__copy-container {
    padding-bottom: 8rem;
  }
}
/* ---------------------------------------------- */

/* --------------- CART MODAL ------------------- */
.cart-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 550px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .cart-modal {
    width: 100%;
  }
}

.cart-modal.open {
  right: 0;
}

.cart-header {
  padding: 1rem;
  background: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 1px, rgba(0, 0, 0, 0.07) 0px 4px 2px,
    rgba(0, 0, 0, 0.07) 0px 8px 4px, rgba(0, 0, 0, 0.07) 0px 16px 8px,
    rgba(0, 0, 0, 0.07) 0px 32px 16px;
}

.cart-header-btn {
  background: none;
  font-size: 1.5rem;
  color: var(--white);
}

.cart-items-empty {
  text-align: center;
  color: var(--text-light);
  margin-top: 1.5rem;
}

.cart-footer-total {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--text-dark);
  font-family: inherit;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  padding-bottom: 1rem;
  background: #f2f2f2;
  padding: 1rem;
  border-radius: 12px;
  gap: 1rem;
}
@media (max-width: 576px) {
  .cart-item {
    gap: 0.5rem;
  }
}
.cart-item-title {
  font-weight: 900;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cart-item-remove {
  color: var(--red-M);
  cursor: pointer;
  font-size: 1.5rem;
}

.cart-item-subtotal {
  font-size: 1rem;
}

@media (max-width: 455px) {
  .cart-item-subtotal {
    font-size: 0.9rem;
  }
}

.quantity-control {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.quantity-control button {
  font-size: 1.5rem;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid #e6e6e6;
  background: #eeeeee;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1500;
  display: none;
}

.overlay.active {
  display: block;
}

.quote-form-container {
  display: none;
  margin-top: 1rem;
  background: var(--purple-L);
  padding: 1rem;
  border-radius: 15px;
}

.quote-form-container.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-form-container-text {
  text-align: center;
  font-size: 0.9rem;
}

.quote-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* ---------------------------------------------- */

/* --------------- CATALOGO PAGE ---------------- */

.catalogo__wrapper {
  min-height: 80vh;
  padding: 8rem 0;
}

.catalogo__container-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
}

.catalogo__container-fields {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  max-width: 1350px;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .catalogo__container-fields {
    flex-direction: column;
  }
}

.catalogo__container-field {
  width: 100%;
}
.catalogo__container-field select{
  padding: 0.5rem;
}
.catalogo__container-field input{
  padding: 0.5rem;
}
/* .catalogo__container-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
} */

.filter-title{
    padding: 0 2rem;
    margin-bottom: 0.5rem;
}
.filter-title h2{
    font-family: var(--font-secondary);
    font-size: 0.8rem;
}
.backnav {
  background: var(--text-dark);
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (max-width: 768px) {
  .backnav {
    display: none;
  }
  .catalogo__wrapper {
    padding: 4rem 0;
  }
}
/* ---------------------------------------------- */

/* -------------------- TOAST ------------------- */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3000;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
}

/* ---------------------------------------------- */

/* --- SUCCESS MODAL STYLES --- */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.success-overlay.active {
  display: flex;
}

.success-modal {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: popIn 0.3s ease-out;
  position: relative;
  border: 4px solid var(--pink-L);
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-content {
  background: white; /* Para que salga bien en el screenshot */
  padding: 10px;
}

.success-icon {
  font-size: 4rem;
  color: var(--pink-M);
  margin-bottom: 1rem;
}

.success-modal h3 {
  color: var(--purple-S);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.order-number-box {
  background: var(--pink-L);
  padding: 1rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px dashed var(--pink-M);
}

.order-number-box span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.order-number-box strong {
  font-size: 1.4rem;
  color: var(--text-dark);
  letter-spacing: 1px;
  display: block;
}

.success-message {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.btn-text {
  background: none;
  border: none;
  color: var(--text-light);
  margin-top: 15px;
  text-decoration: underline;
  font-size: 0.9rem;
}

.btn-text:hover {
  color: var(--red-M);
}

/* ------------- ESPECIFICACIONES --------------- */
.specs__wrapper {
  padding: 8rem 0;
}

.specs__backtocatalog {
  color: var(--pink-S);
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.9rem;
}

.specs__backtocatalog i {
  font-weight: 900;
}

.detail-gallery img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--text-placejolder);
  border-radius: 15px;
  box-shadow: var(--shadow);
  background: linear-gradient(
    180deg,
    rgba(223, 223, 223, 1) 80%,
    rgba(215, 215, 215, 1) 83%,
    rgba(223, 223, 223, 1) 100%
  );
}
.specs-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  margin-bottom: 2rem;
}
.specs-container div {
  flex: 1;
  padding: 2rem;
  border-radius: 15px;
}
.specs-container ul li{
    line-height: 1.3;
}
@media (max-width: 768px) {
  .specs__wrapper {
    padding: 4rem 0;
  }
  .detail-gallery img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
  }
  .specs-container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 576px) {
}

/* ---------------------------------------------- */

/* -------------- DEVOLUTION PAGE --------------- */

.devolution__wrapper {
  width: 100%;
  padding: 8rem 2rem;
}
.devolution__container {
  text-align: center;
  background: #f2f2f2;
  border-radius: 15px;
  padding: 2rem;
}
.devolution__paragraph {
  margin: 2rem 0;
}
.devolution__faq {
  margin: 2rem 0;
  text-align: left;
}
.devolution__paragraph ul {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.devolution__paragraph ul li {
  text-align: left;
  list-style: disc;
}
@media (max-width: 768px) {
  .devolution__wrapper {
    padding: 4rem 1rem;
  }
  .devolution__container {
    padding: 1rem;
  }
}
@media (max-width: 455px) {
  .devolution__container h1 {
    font-size: 1.6rem;
  }
}

/* ---------------- PAGINA 404 ------------------ */
.oops-wrapper{
    background-color: var(--purple-S);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    margin: 0;

}
.container-box {
  background-color: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 500px;
  width: 90%;
  animation: fadeInerrorpage 0.5s ease-out;
}

.error-number {
  font-size: 8rem;
  font-weight: 900;
  color: var(--pink-S);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.error-description {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-home {
  display: inline-block;
  background-color: var(--purple-S);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(253, 11, 158, 0.4);
}

.btn-home:hover {
  transform: translateY(-2px);
  background-color: var(--purple-M);
  box-shadow: 0 10px 15px -3px rgba(253, 11, 158, 0.5);
}

@keyframes fadeInerrorpage {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ---------------------------------------------- */

@media (max-width: 1483px) {
}
@media (max-width: 1280px) {
}
@media (max-width: 1150px) {
}
@media (max-width: 950px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
}
@media (max-width: 480px) {
}
@media (max-width: 455px) {
}
@media (max-width: 350px) {
}
