.brand-container {
    display: -webkit-box;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.brand-card {
    position: relative;
    width: 48%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(50,50,250,0.7), rgba(80,20,200,0.7));
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: transform 0.3s ease;
}

/*.brand-card:hover {*/
/*    transform: scale(1.05);*/
/*}*/

.brand-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.brand-content {
    position: relative;
    z-index: 2;
}

.brand-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: white;
    color: black;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* Product Slider Container */

.product-slider, .daily-deals-slider {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.slick-initialized {
    visibility: visible;
    opacity: 1;
}

.product-slider, .daily-deals-slider {
    width: 100%;
    margin: auto;
    padding: 20px 0;
}

.product-card {
    width: 220px; /* Adjust width as needed */
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    border: 1px solid #f0f0f0;
    margin: 10px;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 150px;
    background: #f8f8f8;
    border-radius: 10px;
}

.product-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0 5px;
    color: #333;
    text-align: start;
}

.product-content .brand-name {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.product-content .price {
    font-size: 16px;
    font-weight: bold;
    color: #6a32fb; /* Purple color */
}

.product-detail .brand_name {
    float: left;
}

.product-detail .price {
    float: right;
}

.mt-50 {
    margin-top: 50px;
}

.mt-30 {
    margin-top: 50px;
}

#brand-products.products-grid {
    display: flex;
}

#brand-products .product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

#brand-products .product-card:hover {
    transform: translateY(-5px);
}

#brand-products .product-image img {
    width: 100%;
    border-radius: 10px;
}

#brand-product-load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #5c67f2;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#brand-product-load-more:hover {
    background: #4a54e1;
}

.brand-banner {
    height: 250px !important;
    width: 100%;
}

.product-slide .shop-product-price,
.product-card .shop-product-price {
    color: #7A4ECC;
    font-weight: bold;
    margin-top: 4px;
}