.cart-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.cart-breadcrumb a {
    color: var(--pbmit-global-color);
    text-decoration: none;
}

.cart-breadcrumb a:hover {
    text-decoration: underline;
}

.cart-breadcrumb span {
    color: #999;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.cart-items-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-items-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

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

.item-image {
    width: 100px;
    height: 100px;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
     border:1px solid #c3cfe2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.item-details {
    flex: 1;
}

.item-brand {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.item-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.item-size {
    font-size: 14px;
    color: #666;
}

.item-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.item-quantity {
    display: flex;
    justify-content: center;
}

.qty-selector-cart {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn-cart {
    background: #f0f0f0;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.qty-btn-cart:hover {
    background: #e0e0e0;
}

.qty-input-cart {
    width: 50px;
    text-align: center;
    border: none;
    padding: 8px 5px;
    font-size: 14px;
}

.item-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--pbmit-global-color);
    text-align: center;
}

.item-remove {
    text-align: center;
}

.btn-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    transition: color 0.3s;
}

.btn-remove:hover {
    color: #e74c3c;
}

.cart-summary {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    padding-top: 15px;
    border-top: 2px solid #e0e0e0;
    margin-top: 15px;
}

.summary-row .label {
    color: #666;
}

.summary-row .value {
    color: #333;
    font-weight: 600;
}

.summary-row.total .value {
    color: #e74c3c;
}

.btn-checkout {
    width: 100%;
    background: var(--pbmit-global-color);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.btn-checkout:hover {
    background: #c0392b;
}

.btn-continue-shopping {
    width: 100%;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-continue-shopping:hover {
    background: #f8f9fa;
}

.empty-cart {
    text-align: center;
    padding: 0px 20px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.empty-cart i {
    font-size: 80px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.empty-cart p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.empty-cart .btn-shop-tires {
    display: inline-block;
    background: var(--pbmit-global-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.empty-cart .btn-shop-tires:hover {
    background: #c0392b;
}

.stock-warning {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
    
    .cart-items-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .item-product {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-quantity,
    .item-total,
    .item-remove {
        text-align: left;
    }
}