/* Estilos Generales */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f2f2f2;
}

header {
    background-color: #00695c;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 40px;
}

.logo {
    font-size: 24px;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

.hero {
    background: #b2ebf2;
    padding: 50px;
    text-align: center;
}

/* Nuevo encabezado */
.titulo-playeras {
    background-color: #e0f7fa;
    padding: 30px 20px;
    text-align: center;
}

.titulo-playeras h2 {
    font-size: 28px;
    color: #004d40;
    margin: 0;
}

/* Productos */
.productos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.producto {
    background: white;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.producto:hover {
    transform: scale(1.03);
}

.producto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Botones */
button {
    background-color: #00695c;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #004d40;
}

/* Carrusel (Botones de cambiar imagen) */
.carrusel {
    position: relative;
}

.carrusel button.prev,
.carrusel button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00695c;
    border: none;
    color: white;
    padding: 8px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.carrusel button.prev {
    left: 5px;
}

.carrusel button.next {
    right: 5px;
}

/* Formulario */
.form-container {
    text-align: center;
    margin: 50px;
}

/* Footer */
footer {
    background-color: #00695c;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

/* Estilo para Toast Notification */
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 12px;
    position: fixed;
    z-index: 1000;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
}

#toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from { bottom: 0; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
    from { bottom: 30px; opacity: 1; }
    to { bottom: 0; opacity: 0; }
}

#pagar {
    background-color: crimson;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    background-color: #00695c;
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
}
