/* ========================================
   VARIABLES Y RESET
   ======================================== */
:root {
  /* Paleta de colores pastel - frutal */
  --color-primary: #e6173e; /*// #DE123F; // #FFB6C1;      Rosa pastel */
  --color-secondary: #1db019; /* Melocotón */
  --color-tertiary: #b4e7ce; /* Verde menta */
  --color-accent: #d7de00; /* Amarillo fruta */
  --color-light: #fff5f5;
  --color-white: #ffffff;
  --color-dark: #4a3f44;
  --color-text: #5d4e55;
  --color-gray: #e8dcdd;

  --color-rojo: #de123f;
  --color-verde: #189e1e;
  --color-amarillo: #f5ff00; /* FBD959; */
  --color-naranja: #e56128;
  --color-blanco: #ffffff;

  --shadow-sm: 0 2px 8px rgba(255, 182, 193, 0.25);
  --shadow-md: 0 4px 16px rgba(255, 182, 193, 0.3);
  --shadow-lg: 0 8px 32px rgba(255, 182, 193, 0.35);
  --shadow-hover: 0 12px 40px rgba(255, 182, 193, 0.4);

  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: "Quicksand", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   BOTONES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #ff9aae);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ========================================
   HEADER / NAVEGACIÓN
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(255, 182, 193, 0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.header__logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.header__brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.header__brand span {
  color: var(--color-verde);
}

.header__nav .nav__list {
  display: flex;
  gap: 8px;
}

.nav__link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--color-text);
  position: relative;
  text-decoration: none !important;
}

.nav__link:hover,
.nav__link.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.header__cart {
  position: relative;
}

.cart__btn {
  background: var(--color-primary);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-white);
  font-size: 1.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart__btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.cart__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-dark);
  cursor: pointer;
  padding: 5px;
}

/* ========================================
   CARRITO SIDEBAR
   ======================================== */
.cart__sidebar {
  position: fixed;
  top: 0;
  right: -480px;
  width: 480px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart__sidebar.open {
  right: 0;
}

.cart__header {
  padding: 24px 30px;
  border-bottom: 2px solid var(--color-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart__header h3 {
  font-size: 1.4rem;
  color: var(--color-dark);
}

.cart__close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text);
  transition: var(--transition);
}

.cart__close:hover {
  transform: rotate(90deg);
  color: var(--color-primary);
}

.cart__items {
  flex: 1;
  padding: 20px 30px;
  overflow-y: auto;
}

.cart__empty {
  text-align: center;
  color: #999;
  font-size: 1.1rem;
  margin-top: 40px;
}

.cart__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray);
}

.cart__item img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart__item-info {
  flex: 1;
}

.cart__item-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart__item-info p {
  font-size: 0.85rem;
  color: #888;
}

.cart__item-price {
  font-weight: 700;
  color: var(--color-primary);
}

.cart__item-remove {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.cart__item-remove:hover {
  transform: scale(1.2);
}

.cart__footer {
  padding: 20px 30px;
  border-top: 2px solid var(--color-gray);
  background: var(--color-light);
}

.cart__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ========================================
   OVERLAY
   ======================================== */
.cart__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart__overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ========================================
   HERO
   ======================================== */
/*.hero {
    //padding: 140px 0 80px;
    //background: linear-gradient(135deg, #FFF0F0 0%, #FFE8E8 50%, #FFF5F5 100%);
    background-image: url('../img/banner.png');
    background-size: cover;       // Ajusta la imagen al tamaño 
    background-position: center;  // Centra la imagen 
    background-repeat: no-repeat;
    min-height: 100vh;             Altura completa de la pantalla 
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
    */
.hero {
  /* background-image: url('../img/banner_01.png');*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Contenido */
.hero-content {
  z-index: 2;
  bottom: 50%;
  transform: translateY(50%);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-logo {
  width: 250px;
  margin-bottom: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .carousel-item img {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-logo {
    width: 180px;
  }
}

/* Celular */
@media (max-width: 768px) {
  .carousel-item img {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-logo {
    width: 140px;
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--color-primary);
  position: relative;
}

.hero__title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-primary);
  opacity: 0.3;
  border-radius: 10px;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 500px;
  opacity: 0.85;
}

.hero__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ========================================
   SECCIONES GENERALES
   ======================================== */
section {
  padding: 80px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 50px;
}

.section__header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.section__header h2::after {
  content: "🍓";
  margin-left: 10px;
}

.section__header p {
  font-size: 1.1rem;
  color: var(--color-text);
  opacity: 0.8;
}

/* ========================================
   PRODUCTOS
   ======================================== */
.products {
  background: var(--color-white);
}

.products__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter__btn {
  padding: 10px 28px;
  border: 2px solid var(--color-gray);
  border-radius: 50px;
  background: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}

.filter__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter__btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product__card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(255, 182, 193, 0.15);
}

.product__card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--color-light);
}

.product__info {
  padding: 20px 24px 24px;
}

.product__info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.product__info .product__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(255, 182, 193, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.product__info .product__description {
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.product__btn-add {
  padding: 10px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}

.product__btn-add:hover {
  background: #ff9aae;
  transform: scale(1.05);
}

/* ========================================
   PAQUETES
   ======================================== */
.packages {
  background: var(--color-light);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 60;
}

.package__card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.package__card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.package__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.package__card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package__card p {
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 16px;
}

.package__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ========================================
   CONTACTO
   ======================================== */
.contact {
  background: var(--color-white);
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact__item:hover {
  transform: translateX(8px);
  background: rgba(255, 182, 193, 0.1);
}

.contact__item i {
  font-size: 1.8rem;
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.contact__item h4 {
  font-weight: 700;
  margin-bottom: 2px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form input,
.contact__form textarea {
  padding: 14px 20px;
  border: 2px solid var(--color-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-white);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.15);
}

/* ========================================
   ACERCA DE
   ======================================== */
.about {
  background: var(--color-light);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about__text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.about__text p {
  margin-bottom: 16px;
  opacity: 0.85;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  background: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.stat span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat p {
  font-size: 0.85rem;
  margin-bottom: 0;
  opacity: 0.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-verde);
  color: var(--color-white);
  padding: 60px 0 20px;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer__brand h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.footer__brand span {
  color: var(--color-white);
}

.footer__brand p {
  opacity: 0.7;
}

.footer__links h4,
.footer__social h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--color-amarillo);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--color-primary);
  transform: translateX(4px);
}

.social__icons {
  display: flex;
  gap: 16px;
}

.social__icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social__icons a:hover {
  background: var(--color-primary);
  transform: translateY(-4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .header__hamburger {
    display: block;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .header__nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: all;
  }

  .header__nav .nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .nav__link {
    display: block;
    text-align: center;
    padding: 12px;
  }

  .cart__sidebar {
    width: 100%;
    right: -100%;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    margin: 0 auto 30px;
  }

  .hero__image {
    order: -1;
  }

  .hero__image img {
    max-height: 300px;
    object-fit: contain;
  }

  .section__header h2 {
    font-size: 2.2rem;
  }

  .contact__content,
  .about__content {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social__icons {
    justify-content: center;
  }

  .products__grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product__card .product__info {
    padding: 14px;
  }

  .product__image {
    height: 180px;
  }

  .product__info h3 {
    font-size: 0.9rem;
  }

  .product__price {
    font-size: 1rem;
  }

  .product__btn-add {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .section__header h2 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ========================================
   CARRITO - CAMPOS DEL CLIENTE
   ======================================== */
.cart__customer-info {
  padding: 16px 0;
  border-bottom: 2px solid var(--color-gray);
  margin-bottom: 16px;
}

.cart__customer-info .form-group {
  margin-bottom: 12px;
}

.cart__customer-info label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.cart__customer-info label i {
  color: var(--color-primary);
  margin-right: 6px;
}

.cart__customer-info input,
.cart__customer-info textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--color-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--color-white);
}

.cart__customer-info input:focus,
.cart__customer-info textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.15);
}

.cart__customer-info input::placeholder,
.cart__customer-info textarea::placeholder {
  color: #bbb;
}

.cart__customer-info input:required:invalid,
.cart__customer-info textarea:required:invalid {
  border-color: #ff6b6b;
}

/* ========================================
   FORMULARIO DE CONTACTO MEJORADO
   ======================================== */
.contact__form .form-group {
  margin-bottom: 16px;
}

.contact__form input,
.contact__form textarea,
.contact__form select {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--color-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-white);
  color: var(--color-text);
}

.contact__form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235D4E55' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.15);
}

.contact__form input.error,
.contact__form textarea.error,
.contact__form select.error {
  border-color: #ff6b6b;
  background-color: #fff5f5;
}

.contact__feedback {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}

.contact__feedback.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}

.contact__feedback.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}

.contact__feedback.loading {
  display: block;
  background: #e2e3e5;
  color: #383d41;
  border: 2px solid #d6d8db;
}

/* ========================================
   RESPONSIVE PARA NUEVOS ELEMENTOS
   ======================================== */
@media (max-width: 768px) {
  .cart__customer-info {
    padding: 12px 0;
  }

  .cart__customer-info input,
  .cart__customer-info textarea {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .contact__form input,
  .contact__form textarea,
  .contact__form select {
    font-size: 0.9rem;
    padding: 12px 16px;
  }
}

/* ========================================
   CARRITO - CONTROLES DE CANTIDAD
   ======================================== */
.cart__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-gray);
  position: relative;
}

.cart__item img {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart__item-info {
  flex: 1;
  min-width: 0;
}

.cart__item-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--color-dark);
}

.cart__item-info p {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controles de cantidad */
.cart__item-quantity {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.cart__item-quantity button {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart__item-quantity button:hover {
  transform: scale(1.1);
  background: #ff9aae;
}

.cart__item-quantity button:active {
  transform: scale(0.9);
}

.cart__item-quantity .qty-number {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 28px;
  text-align: center;
  color: var(--color-dark);
}

.cart__item-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  min-width: 65px;
  text-align: right;
}

.cart__item-remove {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  padding: 4px 8px;
  opacity: 0.6;
}

.cart__item-remove:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Estilo para items de paquetes */
.cart__item.package-item {
  background: rgba(255, 215, 0, 0.05);
  border-left: 3px solid var(--color-accent);
  padding-left: 12px;
}

/* ========================================
   RESPONSIVE CONTROLES DE CANTIDAD
   ======================================== */
@media (max-width: 480px) {
  .cart__item {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
  }

  .cart__item img {
    width: 45px;
    height: 45px;
  }

  .cart__item-info h4 {
    font-size: 0.8rem;
  }

  .cart__item-quantity button {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .cart__item-price {
    font-size: 0.85rem;
    min-width: 55px;
  }
}

/* ========================================
   ANIMACIONES PARA EL CARRITO
   ======================================== */

/* Animación de pulso para la cantidad */
@keyframes qtyPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
    color: var(--color-primary);
  }
  100% {
    transform: scale(1);
  }
}

.qty-number.pulse {
  animation: qtyPulse 0.3s ease;
}

/* Animación de deslizamiento al eliminar */
@keyframes slideOut {
  0% {
    transform: translateX(0);
    opacity: 1;
    max-height: 100px;
  }
  100% {
    transform: translateX(100px);
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
  }
}

.cart__item.removing {
  animation: slideOut 0.4s ease forwards;
  overflow: hidden;
}

/* Animación de vibración para botones */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

.cart__item-remove:hover {
  animation: shake 0.3s ease;
}

/* Animación de entrada de productos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart__item {
  animation: fadeInUp 0.3s ease forwards;
}

/* Efecto hover en los botones de cantidad */
.cart__item-quantity button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cart__item-quantity button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.cart__item-quantity button:active::after {
  width: 100px;
  height: 100px;
}

/* Efecto de carga en botones */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ========================================
   MODAL DE CONFIRMACIÓN PERSONALIZADO
   ======================================== */
.confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.confirm-modal.active {
  opacity: 1;
  pointer-events: all;
}

.confirm-modal__content {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.confirm-modal.active .confirm-modal__content {
  transform: scale(1) translateY(0);
}

.confirm-modal__icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

.confirm-modal__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.confirm-modal__message {
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.confirm-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.confirm-modal__actions .btn {
  min-width: 100px;
  justify-content: center;
}

.btn-danger {
  background: #ff6b6b;
  color: white;
}

.btn-danger:hover {
  background: #e55a5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-cancel {
  background: var(--color-gray);
  color: var(--color-text);
}

.btn-cancel:hover {
  background: #d5c8c9;
  transform: translateY(-2px);
}

/* Animación de deslizamiento al eliminar */
@keyframes slideOut {
  0% {
    transform: translateX(0);
    opacity: 1;
    max-height: 100px;
  }
  100% {
    transform: translateX(100px);
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
  }
}

.cart__item.removing {
  animation: slideOut 0.4s ease forwards;
  overflow: hidden;
}

/* Animación de pulso para la cantidad */
@keyframes qtyPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
    color: var(--color-primary);
  }
  100% {
    transform: scale(1);
  }
}

.qty-number.pulse {
  animation: qtyPulse 0.3s ease;
}

/* Animación de badge */
@keyframes badgePop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.cart__badge.pop {
  animation: badgePop 0.3s ease;
}

/* Responsive del modal */
@media (max-width: 480px) {
  .confirm-modal__content {
    padding: 30px 24px;
  }

  .confirm-modal__title {
    font-size: 1.2rem;
  }

  .confirm-modal__actions {
    flex-direction: column;
  }

  .confirm-modal__actions .btn {
    width: 100%;
  }
}

/* ========================================
   CONTADOR DE CARRITO CON ANIMACIÓN
   ======================================== */
@keyframes badgePop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.cart__badge.pop {
  animation: badgePop 0.3s ease;
}

/* ========================================
   RESPONSIVE PARA MODAL
   ======================================== */
@media (max-width: 480px) {
  .confirm-modal__content {
    padding: 30px 24px;
  }

  .confirm-modal__title {
    font-size: 1.2rem;
  }

  .confirm-modal__actions {
    flex-direction: column;
  }

  .confirm-modal__actions .btn {
    width: 100%;
  }
}

/* ========================================
   CONTACTO - MAPA
   ======================================== */

/* Ajustar el contenedor de contacto */
.contact__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

/* Información de contacto */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact__item:hover {
  transform: translateX(8px);
  background: rgba(255, 182, 193, 0.1);
}

.contact__item i {
  font-size: 1.8rem;
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact__item h4 {
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--color-dark);
}

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

.contact__item .btn-small {
  padding: 6px 16px;
  font-size: 0.8rem;
  margin-top: 6px;
}

/* Contenedor del mapa */
.contact__map {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map__container {
  position: relative;
  width: 100%;
  padding-bottom: 70%; /* Aspect ratio 4:3 */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-gray);
}

.map__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Overlay del mapa */
.map__overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}

.map__pin {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-dark);
  animation: bouncePin 2s ease-in-out infinite;
}

.map__pin i {
  color: #ff6b6b;
  font-size: 1.5rem;
  animation: pulsePin 1.5s ease-in-out infinite;
}

@keyframes bouncePin {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulsePin {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Acciones del mapa */
.map__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map__actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

/* ========================================
   RESPONSIVE - MAPA
   ======================================== */

@media (max-width: 1024px) {
  .contact__content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map__container {
    padding-bottom: 60%;
  }

  .map__pin {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .map__pin i {
    font-size: 1.2rem;
  }

  .map__actions {
    flex-direction: column;
  }

  .map__actions .btn {
    width: 100%;
  }

  .contact__item {
    padding: 16px;
  }

  .contact__item i {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .map__container {
    padding-bottom: 70%;
  }

  .map__pin {
    padding: 8px 14px;
    font-size: 0.75rem;
    gap: 6px;
  }

  .map__pin i {
    font-size: 1rem;
  }
}

/* Botón pequeño */
.btn-small {
  padding: 6px 16px;
  font-size: 0.8rem;
}

/* Estilos para el botón secundario */
.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.whatsapp-float {
  background-color: #25d366 !important;
  color: #fff;
}

.whatsapp-float:hover {
  background-color: #1ebe5d !important;
}

.whatsapp-float {
  position: fixed;
  width: 60px !important;
  height: 60px !important;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px !important;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/* ========================================
   MODAL DE DETALLES DEL PRODUCTO
   ======================================== */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.product-modal.active {
  opacity: 1;
  pointer-events: all;
}

.product-modal__content {
  background: var(--color-white);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.product-modal.active .product-modal__content {
  transform: scale(1) translateY(0);
}

.product-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-text);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.product-modal__close:hover {
  transform: rotate(90deg);
  color: var(--color-primary);
}

.product-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.product-modal__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 300px;
}

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

.product-modal__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-modal__category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(255, 182, 193, 0.15);
  padding: 4px 14px;
  border-radius: 50px;
  align-self: flex-start;
}

.product-modal__info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.product-modal__info p {
  color: var(--color-text);
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Selector de tamaños */
.product-modal__sizes {
  margin: 8px 0;
}

.product-modal__sizes h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  flex: 1;
  min-width: 80px;
  padding: 12px 16px;
  border: 2px solid var(--color-gray);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-primary);
}

.size-btn:hover {
  border-color: var(--color-primary);
  background: rgba(255, 182, 193, 0.05);
}

.size-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.size-btn.active .size-price {
  color: var(--color-white);
}

.size-btn .size-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
}

.size-btn .size-price {
  display: block;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 4px;
}

.product-modal__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 2px solid var(--color-gray);
  border-bottom: 2px solid var(--color-gray);
  font-size: 1.2rem;
  font-weight: 700;
}

.product-modal__price span:last-child {
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* ========================================
   PAGINACIÓN
   ======================================== */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.pagination-btn {
  padding: 10px 24px;
  border: 2px solid var(--color-gray);
  border-radius: 50px;
  background: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.pagination-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.pagination-numbers .page-btn {
  min-width: 40px;
  height: 40px;
  border: 2px solid var(--color-gray);
  border-radius: 50%;
  background: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-numbers .page-btn:hover:not(.active) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination-numbers .page-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.pagination-numbers .page-dots {
  color: var(--color-text);
  opacity: 0.5;
  padding: 0 4px;
}

/* ========================================
   RESPONSIVE - PAGINACIÓN
   ======================================== */
@media (max-width: 768px) {
  .pagination-container {
    gap: 10px;
    padding: 16px 0;
  }

  .pagination-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .pagination-numbers .page-btn {
    min-width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .pagination-container {
    gap: 8px;
  }

  .pagination-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .pagination-btn span {
    display: none;
  }

  .pagination-numbers .page-btn {
    min-width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .product-modal__content {
    max-height: 95vh;
  }

  .product-modal__body {
    padding: 16px;
  }

  .product-modal__image {
    min-height: 150px;
  }

  .product-modal__image img {
    max-height: 200px;
  }
}

/* ========================================
   BOTONES DE TAMAÑO - RESPONSIVE
   ======================================== */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  flex: 1;
  min-width: 80px;
  max-width: 120px;
  padding: 12px 16px;
  border: 2px solid var(--color-gray);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-primary);
}

.size-btn:hover {
  border-color: var(--color-primary);
  background: rgba(255, 182, 193, 0.05);
}

.size-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.size-btn.active .size-price {
  color: var(--color-white);
}

/* Responsive para botones extra */
@media (max-width: 768px) {
  .size-btn {
    min-width: 60px;
    max-width: 100px;
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .size-btn {
    min-width: 50px;
    max-width: 80px;
    padding: 8px 10px;
    font-size: 0.75rem;
  }
}

/*
VIDEO 


.packages-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 50px;
}

.packages-video {
    flex: 1;
    position: sticky;
    top: 200px;
}

.packages-list {
    flex: 1;
}

.packages-video video {
    width: 80%;
    border-radius: 25px;
    box-shadow:
        0 20px 40px rgba(0,0,0,.15);
}

*/

/* Contenedor principal */
.packages-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Contenedor de videos */
.packages-video {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: center;
}

/* Tarjeta del video */
.video-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* Video */
.video-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
}

/* Título */
.video-item h4 {
  padding: 15px;
  text-align: center;
  color: #444;
  font-size: 18px;
}

/* Tablet */
@media (max-width: 992px) {
  .packages-video {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media (max-width: 768px) {
  .packages-video {
    grid-template-columns: 1fr;
  }
}
