/*TITLE*/
h2 {
    border-bottom: 1px dotted var(--primary-color);
}
h3 {
   
    font-size: clamp(0.8rem, 3vw, 1rem);
    text-align: center;
    color: #000000;
}


.product-description h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*NAVBAR*/
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    visibility: visible;
    box-shadow: 3px 3px 6px #00000036;
}

.navbar-show {
    visibility: visible;
}

/*SLIDER*/
.front-page {
    background-image: var(--cover-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-height: 450px;
    height: clamp(130px, 15vw, 300px);
}

.profile {
    margin-top: -100px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: clamp(0.5rem, 3vw, 1rem);
    flex-wrap: wrap;
    align-items: end;
}

.profile-photo {
    width: clamp(150px, 10vw, 200px);
    height: clamp(150px, 10vw, 200px);
    padding: 5px;
    border-radius: 100%;
    aspect-ratio: 1/1;
    background-color: #ffffff;
}

.profile-photo img {
    padding: 0.5rem;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    object-fit: contain;
}

/*MODALS*/
.store-information{
    font-size: 0.9rem;
    color: #000000;
}
.store-information a {
    padding: 0.25rem;
    background-color: aliceblue;
    text-decoration: none;
    font-size: 0.9rem;
    color: #000000;
}

.list-information {
    padding: 0;
    list-style: none;
}
.list-information i{
    width: 1rem;
}
.truncate {
    width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*SEARCH*/
.content-search {
    border-radius: 0.5rem;
    background-color: #cfcfcf;
    padding: 0.5rem;
}

.search-input {
    background-position-y: center;
    background-size: 30px;
    background-position-x: 98%;
    background-repeat: no-repeat;
    background-image: url(../images/icons8-search-50.png);
    border-color: #e4e4e4;
    padding: 0.7rem;

    padding: 0.7rem;
}

.search-input::placeholder {
    color: rgb(211, 211, 211);
}


/*NEWS*/
.news {
    margin-top: 2rem;
}

.product {
    background-color: white;
    min-width: clamp(140px, 15vw, 15rem);
    max-width: clamp(200px, 15vw, 300px);
    padding: 0.5rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.125);
    border-radius: 0.5rem;
}
.product-description{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.product-image {
    max-width: clamp(200px, 15vw, 300px);
}

.product-image img {
    width: 100%;
    height: clamp(100px, 15vw, 200px);
    max-height: 250px;
    object-fit: fill;
}

.text-category {
    text-align: center;
    color: #979797;
    font-style: italic;
}

.text-price {
    text-align: center;
    font-size: clamp(0.8rem,2vw,1rem);
    font-weight: bold;
    font-family: sans-serif;
}

/*PRODUCTS*/
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(45%, 15rem), 1fr));
    gap: 0.5rem;
}

#btn-more {
    display: flex;
    justify-content: center;
    align-items: center;
}