@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-size: 16px;
}

h1, h2, h4, h6, p {
  color: #222;
}

h1 {
  font-size: 50px;
  line-height: 64px;
}

h2 {
  font-size: 46px;
  line-height: 54px;
}

h4 {
  font-size: 20px;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px;
}

.section-p1 {
  padding: 20px 30px;
}

/*Configuracion de los Botones General*/
button {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
  border: none;
  outline: none;
}

button.normal {
  color: #070707;
  background-color: #ffffff;
}

button.white {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

section {
  display: block;
}

/* Header Styles */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #fffffffc;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

#navbar {
  display: flex;
  align-items: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #070707;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

/* Hero Section */
#hero {
  background-image: url("img/hero4.png");
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#hero h4 {
  padding-bottom: 15px;
}

#hero h1 {
  color: #088178;
}

#hero button {
  background-image: url("img/button.svg");
  background-color: transparent;
  color: #088178;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  font-weight: 700;
  font-size: 12px;
}

/* Estilos Generales para Productos */
#product1 {
  text-align: center;
  padding: 20px;
}

#product1 .pro-container {
  display: flex;
  justify-content: center; /* Centra los productos dentro del contenedor */
  flex-wrap: wrap; /* Permite que los productos se envuelvan en múltiples líneas */
  gap: 30px; /* Espacio entre productos */
  max-width: 1500px; /* Ajusta el ancho máximo para acomodar productos más grandes */
}

#product1 .pro {
  width: 300px; /* Aumenta el ancho de cada producto */
  padding: 7px;
  border: 5px solid #ffffff; /* Borde ligero alrededor del producto */
  border-radius: 10px; /* Bordes redondeados para un diseño más suave */
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidad */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Transiciones suaves */
  background-color: #fbfbfb; /* Fondo blanco para los productos */
}

#product1 .pro:hover {
  transform: translateY(-5px); /* Efecto de elevación al pasar el ratón */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada al pasar el ratón */
}

#product1 .pro img {
  width: 100%; /* Asegura que la imagen ocupe todo el ancho del contenedor */
  border-radius: 8px; /* Bordes redondeados para las imágenes */
  margin-bottom: 10px; /* Espacio inferior para separar la imagen del texto */
  background-color: #ffffff;
  border: 2px solid #919090;
}

#product1 .pro .des {
  text-align: left; /* Centra el texto dentro del producto */
  padding-left: 10px;
}

#product1 .pro .des span {
  color: #606063; /* Color gris para el texto secundario */
  font-size: 18px; /* Tamaño de fuente pequeño para el texto secundario */
}

#product1 .pro .des h5 {
  color: #9a0869; /* Color negro para el título del producto */
  font-size: 20px; /* Tamaño de fuente para el título del producto */
  margin: 5px 0; /* Espacio superior e inferior para el título */
}

#product1 .pro .des h4 {
  font-size: 17px; /* Tamaño de fuente para el precio */
  font-weight: 700; /* Negrita para resaltar el precio */
  color: #000000; /* Color verde para el precio */
  margin: 5px 0; /* Espacio superior e inferior para el precio */
}

/* Banner Section */
#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("img/Baner/B1.png");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: #fcf2f2;
  font-size: 25px;
}

#banner h2 {
  color: #fff833;
  font-size: 50px;
  padding: 10px 0;
}

#banner h2 span {
  color: #0ee6cc;
}

#banner button:hover {
  background: #088178;
  color: #fcf2f2;
}

/* Small Banner Section */
#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("img/Baner/B2.png");
  min-width: 700px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#sm-banner .banner-box2 {
  background-image: url("img/Baner/B3.png");
}

#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #961d80;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background: #088178;
  border: 1px solid #088178;
}

/* Banner 3 Section */
#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 40px;
}

#banner3 .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("img/Baner/B4.png");
  min-width: 30%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
}

#banner3 .banner-box2 {
  background-image: url(img/Baner/B5.png);
}

#banner3 .banner-box3 {
  background-image: url(img/Baner/B6.png);
}

#banner3 h2 {
  color: #ffffff;
  font-weight: 800;
  font-size: 23px;
}

#banner3 h3 {
  color: #f23e3e;
  font-weight: 800;
  font-size: 16px;
}

/* Cart Page */
#cart table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#cart table thead {
  background-color: #088178;
  color: #fff;
}

#cart table thead th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

#cart table tbody tr {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s;
}

#cart table tbody tr:hover {
  background-color: #f1f1f1;
}

#cart table tbody td {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

#cart table tbody td img {
  width: 50px;
  height: auto;
  border-radius: 4px;
}

#cart table tbody td button {
  background-color: #f44336;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#cart table tbody td button:hover {
  background-color: #d32f2f;
}

#cart table tfoot {
  background-color: #f9f9f9;
}

#cart table tfoot td {
  padding: 15px;
  font-weight: 600;
  font-size: 16px;
  color: #088178;
}

/* Checkout Form */
#checkout-form {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
}

#checkout-form h3 {
  margin-bottom: 20px;
  color: #088178;
  text-align: center;
}

#checkout-form form {
  display: flex;
  flex-direction: column;
}

#checkout-form form div {
  margin-bottom: 15px;
}

#checkout-form label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

#checkout-form input[type="text"],
#checkout-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

#checkout-form input[type="text"]:focus,
#checkout-form select:focus {
  border-color: #088178;
}

#checkout-form button[type="submit"] {
  background-color: #088178;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#checkout-form button[type="submit"]:hover {
  background-color: #066f5b;
}





#size-search h2 {
  color: #088178;
  margin-bottom: 10px; /* Reduce el margen inferior */
  font-size: 30px; /* Reduce el tamaño de fuente */
}

#size-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#back-to-store {
  margin-bottom: 10px 10px; /* Center the button with a small margin */
}

#back-to-store button {
  background-color: #088178;
  color: #fff;
  padding: 20px 10px; /* Adjust padding for a compact button */
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#back-to-store button:hover {
  background-color: #066f5b;
}

#size-search h2 {
  text-align: center; /* Centra el texto horizontalmente */
  margin: auto; /* Asegura que el margen sea uniforme */
}

#size-selector {
  width: 50%; /* Reduce el ancho */
  padding: 10px; /* Reduce el padding */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px; /* Reduce el tamaño de fuente */
  margin-bottom: 10px; /* Reduce el margen inferior */
  transition: border-color 0.3s;
}

#size-selector:focus {
  border-color: #088178;
}

#size-form button[type="submit"] {
  background-color: #088178;
  color: #fff;
  padding: 10px 16px; /* Reduce el padding */
  border: none;
  border-radius: 4px;
  font-size: 14px; /* Reduce el tamaño de fuente */
  cursor: pointer;
  transition: background-color 0.3s;
}

#size-form button[type="submit"]:hover {
  background-color: #066f5b;
}

/* Contenedor de detalles del producto y texto */
.single-pro-details{
  flex: 1;
  max-width: 500px;
  margin-top: -580px; /* Ajuste de posición vertical */
  margin-left: 920px; /* Ajuste de posición horizontal */
}

/* Estilos para encabezados y párrafos dentro de los detalles del producto */
.single-pro-details h6,
.single-pro-details h4,
.single-pro-details h3,
.single-pro-details p,
.single-pro-details h2 {
  margin: 20px 20px 10px 30px; /* Márgenes para separación */
  margin-top: 20px; /* Espacio superior adicional */
}

/* Estilo específico para h2 */
.single-pro-details h2 {
  font-size: 19px; /* Tamaño de fuente */
  margin: 0px 0px 310px 30px; /* Márgenes específicos */
}

/* Imagen principal del producto */
#MainImg {
  width: 70vh; /* Ancho de la imagen */
  border: 1px solid #ffffff; /* Borde blanco */
  border-radius: 4px; /* Bordes redondeados */
  margin-left: 130px; /* Espacio a la izquierda */
}

/* Contenedor de imagen del producto y detalles */
.single-pro-image {
  display: flex; /* Alineación horizontal de elementos hijos */
  padding: 30px; /* Espaciado interno */
  max-width: 1000px; /* Ancho máximo del contenedor */
  margin: 30px auto; /* Centrado horizontal */
  background-color: #ffffff; /* Color de fondo */
  border-radius: 8px; /* Bordes redondeados */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Sombra del contenedor */
}

/* Grupo de imágenes pequeñas */
.small-img-group {
  display: flex;
  flex-direction: column; /* Alineación vertical de imágenes */
  gap: 30px; /* Espacio entre imágenes */
  align-self: flex-start; /* Alineación superior */
  background-color: #ffffff; /* Color de fondo */
  border-radius: 8px; /* Bordes redondeados */
  margin-top: 1px; /* Ajuste de posición vertical */
  margin-left: -680px; /* Ajuste de posición horizontal */
}

/* Estilo de las imágenes pequeñas */
.small-img-group img {
  width: 110px; /* Ancho de la imagen */
  height: 110px; /* Altura de la imagen */
  border: 1px solid #000000; /* Borde de la imagen */
  border-radius: 4px; /* Bordes redondeados */
  cursor: pointer; /* Cambia el cursor al pasar sobre la imagen */
  transition: transform 0.2s; /* Transición suave al escalar */
}
.small-img-group img:hover {
  transform: scale(1.1); /* Escala la imagen al pasar el ratón */
}

/* Posicionamiento del botón adicional */
.button-pro {
  position: relative;
  top: -300px; /* Ajuste de posición vertical */
  right: -990px; /* Ajuste de posición horizontal */
}

/* Estilo del botón adicional */
.normal3 {
  background-color: #000000; /* Color de fondo */
  color: #e0e0e0; /* Color de texto */
  padding: 15px 30px; /* Espaciado interno */
  border: none; /* Sin borde */
  border-radius: 4px; /* Bordes redondeados */
  cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
  transition: background-color 0.3s; /* Transición suave de color */
  width: 190px; /* Ancho del botón */
  height: 50px; /* Altura del botón */
}

#compra-completada{
  display: flex; /* Alineación horizontal de elementos hijos */
  padding: 30px; /* Espaciado interno */
  max-width: 1000px; /* Ancho máximo del contenedor */
  margin: 30px auto; /* Centrado horizontal */
  background-color: #ffffff; /* Color de fondo */
  border-radius: 8px; /* Bordes redondeados */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Sombra del contenedor */
}

#oso img{
  width: 100%;
}

/* Estilo del botón adicional */
#confirm-button {
  background-color: #000000; /* Color de fondo */
  color: #e0e0e0; /* Color de texto */
  padding: 15px 30px; /* Espaciado interno */
  border: none; /* Sin borde */
  border-radius: 4px; /* Bordes redondeados */
  cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
  transition: background-color 0.3s; /* Transición suave de color */
  width: 205px; /* Ancho del botón */
  height: 50px; /* Altura del botón */
}

#confirm-button:hover {
  background-color: #a5a4a4; /* Color de fondo al pasar el ratón */
}

.normal3:hover {
  background-color: #a5a4a4; /* Color de fondo al pasar el ratón */
}

