


/* PRODUCTS */
.product {
    position: relative;
    overflow: hidden;
    margin: 10px 0px 10px 0px;
    width: 90%;
    margin: auto;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.product-category {
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    width: 100%;
    margin: auto;
    background-color: hsl(0, 0%, 15%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.product-container {
    /* padding: 0 10vw; */
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    background-color:hsl(0, 0%, 15%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.product-container::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 auto;
    width: 300px;
    margin: 5px;
    height: 100%;
    background-color:hsl(0, 0%, 15%);
    /* border-right: 3px solid rgba(240, 240, 240, 1); */
    /* border-radius: 5px; */
    text-decoration: none;
    
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
   
}

.pro-thumb{
     width: 100%;
  height: 140px; /* Fixed height for image area keeps image baselines standard */
  display: flex;
  align-items: center;
  justify-content: center;
}


.product-thumb {
    /* width: auto; */
    /* margin: auto; */
    /* width: 280px;
    height: 300px;
    object-fit: scale-down; */

      max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1; /* Pre-reserves layout space while lazy-loading */
  object-fit: contain;
}

.product-info {
    padding: 5px 5px 5px 5px;
    font-size: 14px;
    color: white;
}





.product-brand {
    text-transform: capitalize;
    font-size: 14px;
    text-decoration: none;
    color: rgb(235, 227, 227);
    margin: 2px 2px 2px 2px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    font-family: myFirstNato;
}

.pre-btn,
.nxt-btn {
    border: none;
    width: 30px;
    height: 30px;
    position: absolute;
    margin-top: 120px;
    top: 0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0%, rgba(247, 242, 242, .01) 100%); */
    cursor: pointer;
    z-index: 8;
    background-color: rgba(52, 154, 255, 0.342);

    /* opacity: .5; */
}

.pre-btn {
    left: 0;
    transform: rotate(180deg);
}

.nxt-btn {
    right: 0;
}



.pre-btn img,
.nxt-btn img {
    opacity: 0.2;
    filter: drop-shadow(1px 1px 1px grey);
}

.pre-btn:hover img,
.nxt-btn:hover img {
    opacity: 1;
}




.brand-grid {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color:hsl(0, 0%, 15%);
    width: 95%;
    margin: auto;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.home-brand-button {
    border-color: rgba(52, 154, 255, 0.5);
    border-radius: 4px;
    /* padding: 16px 32px; */
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 100px;
    font-weight: bold;
    background-color: hsl(0, 0%, 15%);
    height: 50px;
}

.home-brand-button:hover {
    background-color: rgba(52, 154, 255, 0.8);
    color: white;
}



