.blog-sidebar-sticky {
    position: sticky;
    top: 110px; /* header height + spacing */
}

/* Disable sticky on mobile */
@media (max-width: 991px) {
    .blog-sidebar-sticky {
        position: static;
    }
}

/* Fix parent overflow issue */
.blog-details-sec,
.blog-details-sec .container,
.blog-details-sec .row {
    overflow: visible !important;
}
.sidebar-banner-widget {
    margin-top: 30px;
}


/*Cart layout*/

/* ===================== CART RESPONSIVE ===================== */

@media (max-width: 991px) {

    .cart-table table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table th,
    .cart-table td,
    .cart-table tr {
        display: block;
        width: 100%;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        border: 1px solid #e5e5e5;
        margin-bottom: 16px;
        padding: 12px;
        border-radius: 6px;
        background: #fff;
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border: none;
    }

    /* Label before value */
    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 14px;
        color: #333;
    }

    /* Product row special handling */
    .cart-table td[data-label="Product"] {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-table td[data-label="Product"]::before {
        display: none;
    }

    .product-thumb-item {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .product-thumbnail img {
        width: 70px;
    }

    /* Quantity */
    .quantity-input {
        display: flex;
        gap: 6px;
        align-items: center;
    }

    .quantity-input button {
        width: 34px;
        height: 34px;
    }

    /* Remove button */
    .btn-danger {
        width: auto;
        padding: 6px 14px;
    }

    /* Cart summary spacing */
    .cart-sidebar-area {
        margin-top: 30px;
    }

    .checkout-btn {
        width: 100%;
    }
}

.icon-wrapper {
    position: relative;
    display: inline-block;
}

.icon-wrapper i {
    font-size: 22px;
}

.count-badge {
    position: absolute;
    top: -16px;
    right: -12px;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}

