/* 🎨 Paleta de colores del logo */
:root {
    --fondo: #EDEEDC;
    --verde: #398F52;
    --amarillo: #FFFF69;
    --naranja: #d4710d;
    --marron: #333300;
}



/* Imagen principal */
img.img-fluid {
    border-radius: 12px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.3s ease !important;
}
img.img-fluid:hover {
    transform: scale(1.03) !important;
}

/* Título principal */
h1 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--marron) !important;
    margin-bottom: 1rem !important;
}

/* Subtítulo */
h3 {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: var(--marron) !important;
    margin-bottom: 1rem !important;
    border-bottom: 3px solid var(--verde) !important;
    display: inline-block !important;
    padding-bottom: 0.3rem !important;
}

/* Texto general */
p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: var(--marron) !important;
    margin-bottom: 0.6rem !important;
}

/* Precio */
p strong {
    color: var(--naranja) !important;
}
p strong + span,
p:has(strong:contains("Precio")) {
    font-weight: 600 !important;
    color: var(--naranja) !important;
}

/* ====== BOTONES ====== */
.btn {
    border-radius: 8px !important;
    padding: 0.75rem 1.25rem !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    transition: all 0.2s ease !important;
    border: none !important;
}


/* Botón WhatsApp */
.btn-success {
    background-color: var(--naranja) !important;
    color: #fff !important;
}
.btn-success:hover {
    background-color: #e67f22 !important;
}
.forma-entrega, .forma-pago {
    background-color: #c2e4ee !important;
    color: #2e88ff !important;
    font-size: 16px !important;
}
.forma-entrega:hover, .forma-pago:hover{
    cursor: pointer;
    background-color: #9fc4cf !important;
}
/* Botón "Ver más" */
.btn-link {
    color: var(--verde) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}
.btn-link:hover {
    text-decoration: underline !important;
    color: var(--marron) !important;
}

/* ====== DESCRIPCIÓN ====== */
#textoDescripcion {
    max-height: 140px !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease !important;
}
#textoDescripcion.expandida {
    max-height: 1000px !important;
}

/* ====== SEPARADOR VISUAL ====== */

.modal-backdrop.show{
    display: none;
}
.back-icon{
    color: #ff9f1c;
}
.back-icon:hover{
    color: #ff7f00 !important;
}
hr{
    color: #ff7f00 !important;
    size: 3px !important;
    border-top: 1px solid !important;
    opacity: 1 !important;
}
#textoDescripcion {
  max-height: 100px; /* Lo que quieras mostrar inicialmente */
  overflow: hidden;
}

#textoDescripcion.expandida {
  max-height: none;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .container {
        padding: 1rem !important;
    }
    h1 {
        font-size: 1.6rem !important;
    }
    h3 {
        font-size: 1.2rem !important;
    }
    img.img-fluid {
        margin-bottom: 1rem !important;
    }
}
