.h-140px {
    object-fit: fill;
    height: 140px !important;
}

.h-180px {
    object-fit: fill;
    height: 180px !important;
}

.product-thumb.h-250px {
    height: 250px;
}

.product-thumb {
    position: relative;
    overflow: hidden;
}

#cart_view_load img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.sales-products-slider .owl-nav div {
    margin-top: -25px !important;
}

.bg-themes {
    background: linear-gradient(35deg, #f2fcfe, #0080c6);
}

.features_category img {
    margin: auto;
    width: 100px;
    height: 100px;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgb(212 212 212 / 50%);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.features_category img:hover {
    transform: scale(1.05);
}

.product-badge.bg-secondary.out-of-stock.border-default.text-body {
    color: white !important;
    background-color: #f26622 !important;
}

.product-card .product-badge {
    background-color: #f26622 !important;
}

.product-gallery .product-badge {
    background-color: #f26622 !important;

}

/* ==============================
   CART TABLE
============================== */
.shopping-cart {
    background: transparent;
}

.shopping-cart table {
    border-collapse: separate;
    border-spacing: 0 12px;
    width: 100%;
}

.shopping-cart thead th {
    background: #f8fafc;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    padding: 12px 10px;
}

.shopping-cart tbody tr {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.shopping-cart tbody td {
    border: none;
    vertical-align: middle;
    padding: 12px 10px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 12px;
}


.product-info {
    max-width: 260px;
}

.product-title a {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.product-title a:hover {
    color: #0d6efd;
}

.product-info span {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.text-lg {
    font-weight: 600;
    color: #0f172a;
}

/* Quantity Selector */
.qtySelector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 4px 10px;
    background: #f8fafc;
}

.qtySelector span {
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0f172a;
    transition: all 0.2s;
}

.qtySelector .form-control:not(textarea) {
    height: 20px !important;
}

.qtySelector span:hover {
    background: #e5edff;
}

.qtySelector input {
    width: 60px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
}

/* Remove item */
.remove-from-cart {
    color: #ef4444;
    font-size: 18px;
    transition: all 0.2s;
}

.remove-from-cart:hover {
    color: #dc2626;
}

/* Footer total */
.shopping-cart tfoot td {
    border: none;
    padding-top: 16px;
    font-size: 16px;
}

.shopping-cart tfoot strong {
    font-size: 18px;
}

/* ==============================
   COUPON FORM
============================== */
.coupon-form input {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    flex-grow: 1;
}

.coupon-form button {
    border-radius: 8px;
    padding: 6px 16px;
}

/* ==============================
   DELIVERY CARDS
============================== */
.checkout-card {
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    background: #fff;
}

.checkout-card:hover,
.checkout-card:focus {
    border-color: #0d6efd;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.15);
    text-decoration: none;
}

.checkout-title {
    font-weight: 600;
    font-size: 16px;
}

.checkout-desc {
    font-size: 14px;
    color: #6b7280;
}

.delivery-badge {
    background-color: #0d6efd;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 12px;
}

/* ==============================
   STICKY ORDER SUMMARY
============================== */
.sticky-summary {
    position: sticky;
    top: 90px;
}

.sticky-summary .card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sticky-summary .btn {
    margin-top: 1rem;
    padding: 0.5rem 0;
}

.sticky-summary hr {
    border-color: #e5e7eb;
}

/* Hover shadow helper */
.hover-shadow {
    transition: all 0.2s ease;
}

.hover-shadow:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}