/* ====== Estilos generales ====== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #fdfcf7;
    color: #333;
}

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

header h1 {
    margin: 0;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

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

main {
    padding: 20px;
}

h2 {
    color: #3b7a57;
}

.seccion-navidad {
  background-image: url('./img/fondonavidad.jpg'); /* Ajusta la ruta según tu estructura */
  background-size: auto
  background-position: center;
  background-repeat:repeat
  padding: 50px 0;
  min-height: 100vh;
}

.seccion-ramos {
  background-image: url('img/fondoramos.jpg');
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  padding: 50px 0;
  min-height: 100vh;
}

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

.producto {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.producto img {
    max-width: 100%;
    border-radius: 8px;
}

.producto h3 {
    margin: 10px 0;
}

.producto p {
    font-size: 18px;
    color: #3b7a57;
    font-weight: bold;
}

button {
    background-color: #3b7a57;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #2d5a40;
}

/* ====== Carrito ====== */
#lista-carrito {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

#lista-carrito div {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

#total {
    color: #3b7a57;
}

/* ====== Footer ====== */
footer {
    background-color: #3b7a57;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

.redes a {
    color: white;
    margin: 0 8px;
    text-decoration: none;
}

.redes a:hover {
    text-decoration: underline;
}

#finalizar-compra {
    background-color: #28a745; /* Verde */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

#finalizar-compra:hover {
    background-color: #218838;
}

