/* Page container */
.product-page {
    max-width: 1200px;
    margin-top: 12%;
}
@media (max-width: 991px) {
    .product-page {
        margin-top: 35%;
    }
}
a#toggle-brands {
    text-decoration: underline;
}
a#toggle-brands:hover {
    color: #43b6d6;
    cursor: pointer;
}
card-body-product {
    text-align: center;
}
/* Filter section */
.product-page-filter {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    border-radius: 0%;
}

/* Brand filter buttons */
.brand-option {
    display: inline-block;
    color: black;
    font-weight: 500;
    font-size: 12px;
    padding: 7px 7px;
    margin: 3px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F4F4F4;
    border: 1px solid #DCDCDC;
}
.brand-option:hover {
    background: linear-gradient(90deg, #43B6D6, #048CC8);
    color: #fff;
}
.brand-option.active {
   background: linear-gradient(90deg, #43B6D6, #048CC8);
    color: #fff;
}


.card .btn{
    border-radius: 4px !important;
}


/* Product card */
.product-page-card {
    border-radius: 0px;
    border: 1px solid #ddd;
    transition: box-shadow 0.3s ease;
    padding: 20px;
}
.product-page-card img {
    max-width: 150px;
}
.product-page-card:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.product-page-filter label.form-check-label:hover {
 
    background: none !important;
}
@media only screen 
  and (width: 820px)
  and (height: 1180px)
  and (orientation: portrait) {
  /* iPad Air Portrait CSS */
      .product-page {
        margin-top: 20% !important;
    }
  
}


