/* ===== Custom Single Product Design ===== */

.custom-single-product {
    background: #f8f9fa;
}

.product-image-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-image-wrapper .onsale {
    position: absolute;
    top: 15px !important;
    left: 15px !important;
    background: #dc3545;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 50px;
}

.product-image-wrapper .woocommerce-product-gallery__image:nth-child(1) {
    text-align: center;
}

.add-to-cart-wrapper-product form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-details-wrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.product-card .product-title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: #222;
}
.products-carousel-1 .product-card img {
    width: 70% !important;
    margin: auto;
    object-fit: contain;
    height: auto;
    max-height:100px;
}
.product-price {
    font-size: 26px;
    font-weight: 600;
    color: #0d6efd;
}

.product-short-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.add-to-cart-wrapper .single_add_to_cart_button {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}

.add-to-cart-wrapper .single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-meta {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

/* Tabs Styling */
.custom-tabs-wrapper .woocommerce-tabs {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    list-style: none;
    padding-left: 0px;
}

.woocommerce-tabs ul.tabs li a {
    border-radius: 50px !important;
    padding: 8px 20px !important;
}

.woocommerce-tabs ul.tabs li a {
    background: #e9ecef !important;
    color: #333 !important;
    text-decoration: none;
}

.woocommerce-tabs ul.tabs li.active a {
    background: #0d6efd !important;
    color: #fff !important;
    text-decoration: none;
}

.related.products {
    margin-top: 50px;
}

.woocommerce p.stars a {
    color: #eb9310;
}


.bsm-cart-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.bsm-empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.bsm-empty-cart i {
    font-size: 70px;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.bsm-cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.bsm-cart-item {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bsm-cart-image img {
    width: 100px;
    border-radius: 8px;
}

.bsm-cart-details {
    flex: 1;
}

.bsm-cart-subtotal {
    font-weight: 600;
    align-self: center;
}

.bsm-cart-summary {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.bsm-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.bsm-summary-total {
    font-size: 18px;
    font-weight: 600;
}

.bsm-btn-primary {
    display: block;
    text-align: center;
    padding: 14px;
    background: linear-gradient(45deg, #8b5cf6, #6d28d9);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

.bsm-btn-secondary {
    padding: 10px 20px;
    border-radius: 6px;
    background: #eee;
    border: none;
    cursor: pointer;
}

@media(max-width:768px) {
    .bsm-cart-grid {
        grid-template-columns: 1fr;
    }

    .bsm-cart-item {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 16px;
    }

    .product-details-wrapper {
        padding: 20px;
    }
}