body {
    background: #f5f7fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.main {
    padding: 40px 0;
}
.page-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.breadcrumb a {
    color: #333;
    text-decoration: none;
}
.breadcrumb span {
    color: #666;
    margin: 0 5px;
}
.heading-2 {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}
.cart-items-scroll {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
}
.table-wishlist {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.table-wishlist th, .table-wishlist td {
    vertical-align: middle;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}
.table-wishlist .product-thumbnail img {
    max-width: 60px;
    border-radius: 8px;
}
.table-wishlist .text-brand {
    color: #fcee1f;
    font-weight: 600;
}
.quantity-control {
    display: flex;
    align-items: center;
    max-width: 120px;
    margin: 0 auto;
    border: 1px solid #ced4da;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}
.quantity-control .qty-btn {
    background: #fcee1f;
    color: #000;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}
.quantity-control .qty-btn:hover {
    background: #949623;
}
.quantity-control .qty-btn:active {
    transform: scale(0.95);
}
.quantity-control .qty-btn:disabled {
    background: #6c757d;
    opacity: 0.5;
    cursor: not-allowed;
}
.quantity-control .qty-display {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    padding: 5px 10px;
    color: #333;
    border-left: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    min-width: 40px;
}
.quantity-control .qty-hidden {
    display: none;
}
.cart-totals {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
}
.cart-totals .text-brand {
    color: #fcee1f;
}
.cart-totals table {
    width: 100%;
}
.cart-totals td {
    padding: 10px 0;
}
.cart-totals .cart_total_amount {
    text-align: right;
}
.btn {
    background:#fcee1f;
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 227, 184, 0.4);
}
.cart-action .btn {
        background: #fcee1f;
        color: #000;
}
.cart-action .btn:hover {
    background: #5a6268;
}
.text-muted {
    color: #6c757d !important;
}
.text-body {
    color: #333 !important;
}
@media (max-width: 767px) {
    .heading-2 {
        font-size: 1.5rem;
    }
    .cart-items-scroll {
        max-height: 300px;
        padding: 10px;
    }
    .table-wishlist th, .table-wishlist td {
        padding: 8px;
    }
    .quantity-control {
        max-width: 100px;
    }
    .quantity-control .qty-btn {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    .quantity-control .qty-display {
        font-size: 0.9rem;
        padding: 4px 8px;
        min-width: 30px;
    }
    .cart-totals {
        padding: 15px;
    }
    .btn {
        font-size: 1rem;
        padding: 10px;
    }
}