/*LETRA PARA LA PAGINA Y MIN-WIDTH*/
body,header,nav,main,footer {
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    min-width: 200px;
}

main {
    min-height: 60vh;
}

/*BOTON REUTILIZABLE EN ORO*/

.btn:hover{
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);

}
.btn-oro {
  background: #D4AF37;
  color: #000;
  border-radius: 5px;
  padding: 8px 12px;
  width: 10%;
  margin: auto;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
 
}


.btn-oro:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  background-color: #b58f1c;
  color:black;
}
@media (min-width: 991px) {
    header {
  width: 80%;
    }
}
@media (max-width: 576px) {
   .btn-oro{
        width: 80%;
   }
    }

/*BOTON REUTILIZABLE EN NEGRO*/

.btn-negro {
  background: #000;
  color: #fff;
  border-radius: 5px;
  padding: 8px 12px;
  width: 10%;
  margin: auto;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-negro:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  background-color: #3c3c3c; 
  color:white;
}
/*HEADER*/
header {
    background: linear-gradient(to bottom, #b68d07, #fff);
    height: 13em;
}

@media (min-width: 991px) {
    header {
        height: 10em;
    }

}
.parteArriba {
    height: 10em;
}

.navbar a,
#logado,
#cart-icon {
    font-size: 22px;
}

.navbar a {
    font-size: 19px;
}


/*CARRITO*/
.cart-container {
    position: relative;
    display: inline-block;
    z-index: 10000;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10001;
    background-color: #F5F5F5;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
}

.cart-container:hover .cart-dropdown {
    display: block;
}

.dropdown-item.smaller-text {
    font-size: 0.85rem;
}

.cart-dropdown h4,
#clear-cart,
#checkout-button {
    color: #D4AF37;
}

#cart-items li {
    border-bottom: 2px solid #D4AF37;
    padding: 8px 0;
}

#cart-total {
    font-weight: bold;
}

#cart-items {
    margin-bottom: 20px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/*BARRA DE NAVEGACION*/
.navbar-brand img {
    max-height: 230px;
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        max-height: 250px;
    }

}

.imagen-producto {
    max-width: 150em;
    height: auto;
}

.navbar {
    height: 3em;
}

.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.navbar-nav .nav-item {
    flex: 1;
    text-align: center;
}


@media (max-width: 576px) {
    nav.navbar h1 {
        font-size: 1.8em;
        margin-top: 0;
    }

    nav.navbar p {
        font-size: 1.2em;
        padding: 0 1rem;
    }

    .cajaproductosdestacados {
        margin-top: 10px;
    }

    .botonAñadir {
        font-size: 0.8em;
    }

    .version-movil {
        display: block;
    }
}


/* CONTACTO */
.localizacion {
    font-family: Georgia, serif;
}


/* SUBMENU */
.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 30%;
    margin-left: 0.1rem;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* SLIDER */
.slider-container {
    position: relative;
    z-index: 1;
}

/*LOGO*/
@media (max-width: 768px) {
    .logo-responsive {
        max-height: 180px;
    }
}

/* UTILIDADES */
.container {
    padding-inline: 10px;
}

.section {
    padding-block: var(--section-padding);
}

.has-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.version-movil {
    display: none;
}


/*ADMINISTRADOR*/

@media (max-width: 576px) {
    .responsive-btn {
        font-size: 1.1rem;
        padding: 0.75rem 1.25rem;
        width: 100%;
    }

    .btn-sm {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

}

/*PEDIDOS CLIENTE*/
#main-content {
    flex: 1;
    padding: 20px;
}

h2 {
    color: #000;
    padding-bottom: 20px;
}

.pedido {
    border: 2px solid #000;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(212, 175, 55, 0.5);
}

.pedido strong {
    color: #D4AF37;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

.alert-danger {
    border: 2px solid #000;
    background-color: #FDECEA;
    color: #A94442;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: bold;
}

/*SOBRENOSOTROS*/


.icon-container {
    display: flex;
    align-items: center;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.info {
    display: none;
}

.show-info .info {
    display: block;
}

.accordion-button:not(.collapsed),
.accordion-button.collapsed {
    background-color: transparent;
    color: #000;
    border-color: transparent;
}

.accordion-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/*FOOTER*/

footer {
    background: linear-gradient(to bottom, #fff, #b68d07);
}

.social-icons {
    font-size: 30px;
}

.social-icons-contacto a {
    font-size: 30px;
    color: black;
    text-decoration: none;
    margin-top: 10px;
}

.social-icons a,
.privacidad a {
    color: black;
    margin-right: 10px;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .social-icons {
        font-size: 20px;
    }

    .titulosFooter {
        font-size: 18px;
        color: #000;
    }

    .list-unstyled a {
        font-size: 14px;
    }
}


/*FOOTER MOVIL*/
@media (max-width: 767px) {
    footer .row {
        display: none;
    }

    footer .footer-mapa-movil {
        display: block;
        padding: 1rem 0.8rem;
        text-align: center;
    }

    footer .footer-mapa-movil .social-icons {
        margin-bottom: 0.8rem;
    }

    footer .footer-mapa-movil .social-icons a {

        font-size: 1.4rem;
        margin: 0 0.5rem;
    }

    footer .footer-mapa-movil .social-icons a:hover {
        color: #D4AF37;
    }

    footer .footer-mapa-movil h5 {
        font-weight: 700;
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    footer .footer-mapa-movil ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 280px;
    }

    footer .footer-mapa-movil ul li {
        margin: 0.3rem 0;
    }

    footer .footer-mapa-movil ul li a {
        color: black;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.25s ease;
    }

    footer .footer-mapa-movil ul li a:hover {
        text-decoration: underline;
        color: #D4AF37;
    }
}


@media (min-width: 768px) {
    footer .footer-mapa-movil {
        display: none;
    }
}