/*BODY*/
body {
    background: var(--background-body);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: var(--font-family);
}
.wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.content-wrapper{
    flex-grow: 1;
}
h1 {
    color: var(--primary-color);
}

h2 {
    
    color: var(--primary-color);
}
.text-price{
    color: var(--tertiary-color);
}

.btn-store {
    font-weight: bold;
    text-align: center;
    display: block;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 0.25rem;
    border: none;
}

.btn-cart {
    width: 100%;
    font-size: 0.8rem;
    background-color: var(--secondary-color);
    padding: clamp(0.25rem, 1vw, 0.5rem) clamp(0.5rem, 2vw, 1rem) !important;
    font-weight: 600 !important;
}

.btn-store:hover {
    color: white;
    background-color: black;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}
.url-recovery{
    font-style: oblique;
    font-size: 0.9rem;
    color: #00c0ed;
    display: block;
    margin-bottom: 1rem;
}

/*NAVBAR*/
header {
    position: sticky;
    top: 0;
    z-index: 3;

}

.navbar {
    background-color: white !important;
    box-shadow: 3px 3px 6px #00000036;
}

.navbar-nav .nav-link {
    color: #efefef;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    border-radius: 0.7rem;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-weight: bold;
}

.menu-icon {
    color: var(--secondary-color);
}

.btn-login {
    background-color: #ffffff;
    color: var(--primary-color);
}

.btn-login:hover {
    background-color: var(--secondary-color);
    color: white;
}

.offcanvas {
    max-width: 300px;
    z-index: 9999;
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
    }
}

@media (min-width: 992px) {
    .btn-login {
        order: 1;
    }
}

/*FOOTER*/

.footer-bottom {
    color: rgb(185, 185, 185);
    text-align: center;
    background-color: #000000;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 0.8rem;
}

.footer-top {
    font-size: 0.9rem;
    background-color: #212529;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footer-top li,
.footer-top a {
    color: rgb(206, 206, 206);
    text-align: center;
}


.footer-top ul {
    justify-content: center;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    list-style: none;
}

.footer-content {
    justify-content: space-between;
}

.content-btn-whatsapp {
    position: fixed;
    bottom: 0.5rem;
    right: 0.5rem;
}

.btn-whatsapp {
    background-color: transparent;
    padding: 0;
    max-width: 50px;
    border: none;
    outline: none;
}

.btn-whatsapp img {
    width: 100%;
}
/*BTN CART*/
.contet-buttom-cart{
    z-index: 1;
    position: fixed;
    top: 30%;
    right: 0.8rem;
}

.btn-whatsapp:hover {}

@media(max-width:767px) {
    .footer-content {
        justify-content: center;

    }

    .offcanvas {
        max-width: 80%;
    }

    .footer-top ul {
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
}