body {
  padding-top: 64px;
}

#overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

#overlay.activo {
  display: block;
}

.container-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffcdc6;
  padding: 15px;
  height: 64px;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.navbar .btn-carrito {
  background-color: #ffcdc6;
  border: none;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin: auto;
}
.logo img {
  height: 100%;
  display: block;
}

.newCollection {
  position: relative;
  display: flex;
  justify-content: center;
}
.newCollection img {
  width: 100%;
  display: block;
}
.newCollection .btn {
  position: absolute;
  bottom: 140px;
  left: 55.5%;
  transform: translateX(-50%);
  background-color: #FF4646;
  color: white;
  font-size: 20px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  height: 50px;
  width: 300px;
  cursor: pointer;
}
.newCollection .btn:hover {
  background-color: white;
  color: #FF4646;
  border: 1px solid #FF4646;
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}
.popup .popup-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 900px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}
.popup .popup-content #closePopup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: black;
}
.popup .popup-content .popup-layout {
  display: flex;
}
.popup .popup-content .popup-layout .popup-gallery {
  flex: 1;
}
.popup .popup-content .popup-layout .popup-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.popup .popup-content .popup-layout .popup-formulario {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup .popup-content .popup-layout .popup-formulario h2 {
  color: #FF4646;
  margin-bottom: 20px;
}
.popup .popup-content .popup-layout .popup-formulario form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup .popup-content .popup-layout .popup-formulario form input[type=email] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.popup .popup-content .popup-layout .popup-formulario form .btn {
  background-color: #FF4646;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
.popup .popup-content .popup-layout .popup-formulario form .btn:hover {
  background-color: white;
  color: #FF4646;
  border: 1px solid #FF4646;
}
.popup .popup-content .popup-layout .popup-formulario form .legal {
  font-size: 12px;
  color: #666;
}
.popup .popup-content .popup-layout .popup-formulario form .legal a {
  color: #FF4646;
  text-decoration: none;
}

.envios-banner {
  width: 100%;
  background-color: #d9b2e3;
  overflow: hidden;
  white-space: nowrap;
}
.envios-banner .envios-texto {
  display: inline-block;
  animation: deslizar 30s linear infinite;
}
.envios-banner .envios-texto span {
  font-size: 1rem;
  display: inline-block;
}

@keyframes deslizar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.portada img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.content-section {
  background-color: #fce8e3;
  padding-top: 40px;
  justify-content: center;
}
.content-section .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  background-color: #fce8e3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
  align-items: start;
}
.content-section .products .product-card {
  background-color: #fce8e3;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.content-section .products .product-card:hover {
  transform: scale(1.05);
}
.content-section .products .product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}
.content-section .products .product-card .product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #d57093;
  text-align: center;
}
.content-section .products .product-card .price {
  color: black;
  font-size: 16px;
  margin-bottom: 10px;
}
.content-section .products .product-card .shop {
  background-color: #d9b2e3;
  color: #d57093;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}
.content-section .products .product-card .shop:hover {
  background-color: white;
  color: #d57093;
  border: 1px solid #d57093;
}

#tallaPopup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
#tallaPopup .popup-content {
  background: #fff;
  border-radius: 12px;
  position: relative;
  padding: 20px;
  width: 320px;
  max-width: 90%;
  margin: 10% auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
  position: relative;
}
#tallaPopup .popup-content h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #333;
}
#tallaPopup .popup-content .close {
  position: absolute;
  top: 10px;
  right: 70px;
  font-size: 24px;
  cursor: pointer;
  color: #d57093;
}
#tallaPopup .popup-content .close:hover {
  color: #FF4646;
}
#tallaPopup .popup-content .tallas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
#tallaPopup .popup-content .tallas .talla-btn {
  padding: 10px 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}
#tallaPopup .popup-content .tallas .talla-btn:hover {
  background: #d57093;
  color: #fff;
  border-color: #d57093;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.carrito-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  max-width: none;
  min-width: 600px;
  height: 100%;
  color: #d57093;
  background-color: #fce8e3;
  border-left: 2px solid #fce8e3;
  padding: 20px;
  overflow-y: auto;
  z-index: 1100;
  transition: right 0.3s ease;
}
.carrito-sidebar.activo {
  right: 0;
}

h2 {
  font-size: 10px;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  margin-bottom: 16px;
  color: #d57093;
  text-align: center;
}

.close {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 24px;
  cursor: pointer;
  color: #d57093;
}
.close:hover {
  color: #d57093;
}

#pedido-final table {
  background-color: #fff;
  width: auto;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  width: 550px;
}
#pedido-final th {
  background-color: #d57093;
  color: white;
  padding: 10px;
}
#pedido-final td {
  padding: 8px;
  text-align: center;
}
#pedido-final .carrito-vacio {
  color: #d57093;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}
#pedido-final .eliminar-item {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #d57093;
  transition: transform 0.2s ease;
}
#pedido-final .eliminar-item:hover {
  transform: scale(1.2);
  color: black;
}

.form-cliente {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fce8e3;
}
.form-cliente h3 {
  margin-bottom: 12px;
  color: #333;
}
.form-cliente .campo {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.form-cliente .campo label {
  font-weight: bold;
  margin-bottom: 4px;
}
.form-cliente .campo input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.form-cliente .btn-confirmar {
  background: #d57093;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.form-cliente .btn-confirmar:hover {
  background: rgb(201.4216216216, 72.5783783784, 117.227027027);
}

.btn-finalizar {
  background: #d57093;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.btn-finalizar:hover {
  background: rgb(201.4216216216, 72.5783783784, 117.227027027);
}

.popup-gracias {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.popup-gracias-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  margin: 15% auto;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
  position: relative;
}

.close-gracias {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #d57093;
}

.footer {
  background-color: #ffcdc6;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}
.footer .container-footer {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer .footer-columns .footer-column h4 {
  font-size: 1rem;
  color: #d57093;
  margin-bottom: 10px;
}
.footer .footer-columns .footer-column ul {
  list-style: none;
  padding: 0;
}
.footer .footer-columns .footer-column ul li {
  margin-bottom: 8px;
}
.footer .footer-columns .footer-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}
.footer .footer-columns .footer-column ul li a:hover {
  color: #d57093;
}
.footer .social-icons a {
  margin-right: 10px;
}
.footer .social-icons img {
  width: 24px;
  height: 24px;
}
.footer .footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

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