.breadcrumb-option {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Cart Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.cart-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.cart-count {
    font-size: 0.875rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.cart-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
}

.cart-item-details {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr auto auto auto auto;
    gap: 1rem;
    align-items: center;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0;
}

.cart-item-name a {
    color: #111827;
    text-decoration: none;
}

.cart-item-name a:hover {
    color: #1f2937;
}

.cart-item-rating {
    font-size: 0.75rem;
    color: #fbbf24;
}

.cart-item-price,
.cart-item-quantity,
.cart-item-total {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
}

.price-label,
.total-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.price-value,
.total-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background-color: #f9fafb;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background-color: #f3f4f6;
}

.qty-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    font-size: 0.875rem;
    font-weight: 500;
}

.cart-item-remove {
    display: flex;
    align-items: center;
}

.remove-btn {
    color: #6b7280;
    font-size: 1.125rem;
    padding: 0.5rem;
}

.remove-btn:hover {
    color: #ef4444;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn-continue,
.btn-update {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-continue {
    background-color: #ffffff;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.btn-continue:hover {
    background-color: #f9fafb;
}

.btn-update {
    background-color: #111827;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.btn-update:hover {
    background-color: #1f2937;
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 2rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.cart-summary h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: #111827;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.summary-row span:first-child {
    color: #6b7280;
}

.summary-row span:last-child {
    color: #111827;
    font-weight: 500;
}

.summary-row.subtotal,
.summary-row.shipping {
    padding-bottom: 0.75rem;
}

.summary-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 1rem 0;
}

.summary-row.total {
    font-size: 1.125rem;
    margin-top: 1rem;
}

.summary-row.total span {
    font-weight: 600;
    color: #111827;
}

/* Checkout Buttons */
.checkout-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-checkout,
.btn-checkout-momo {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-checkout {
    background-color: #111827;
    color: #ffffff;
}

.btn-checkout:hover {
    background-color: #1f2937;
}

.btn-checkout-momo {
    background-color: #d62976;
    color: #ffffff;
}

.btn-checkout-momo:hover {
    background-color: #b02461;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Empty Cart Section */
.empty-cart-section {
    padding: 6rem 0;
    min-height: 500px;
}

.empty-cart-content {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

a:hover {
    color: #ffffffff;
    /* text-decoration: underline; */
}

.empty-cart-icon {
    font-size: 5rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.empty-cart-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.empty-cart-content p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.empty-cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-shop-now,
.btn-home {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
}

.btn-shop-now {
    background-color: #111827;
    color: #ffffff;
}

.btn-shop-now:hover {
    background-color: #1f2937;
}

.btn-home {
    background-color: #ffffff;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.btn-home:hover {
    background-color: #f9fafb;
}

/* Responsive */
@media (max-width: 991px) {
    .cart-item {
        flex-direction: column;
    }

    .cart-item-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total {
        text-align: left;
        flex-direction: row;
        justify-content: space-between;
    }

    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .cart-item-image {
        width: 100px;
        height: 100px;
    }

    .empty-cart-actions {
        flex-direction: column;
    }
}