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

.woocommerce-cart .woocommerce-info,
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop,
.woocommerce-cart .wc-backward {
    display: none !important;
}

.biodiv-empty-cart-banner {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 30px;
    margin: 0 0 40px 0;
    width: 100%;
}

.biodiv-empty-cart-banner h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

.biodiv-empty-cart-banner .button {
    margin: 0;
    display: inline-block;
}

.biodiv-cart-header {
    margin-bottom: 40px;
}

.biodiv-cart-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.biodiv-cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.biodiv-cart-products-section {
    min-width: 0;
}

.biodiv-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.biodiv-cart-table thead {
    background: transparent;
    border-bottom: 2px solid #e0e0e0;
}

.biodiv-cart-table thead th {
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    border: none;
}

.biodiv-cart-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.biodiv-cart-table tbody tr:hover {
    background: #fafafa;
}

.biodiv-cart-table tbody tr:last-child {
    border-bottom: none;
}

.biodiv-cart-table td {
    padding: 20px 10px;
    vertical-align: middle;
    border: none;
}

.biodiv-cart-table .product-name {
    font-weight: 500;
    color: #333;
    width: 45%;
}

.biodiv-cart-table .product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.biodiv-cart-table .product-name a:hover {
    color: #00719B;
}

.biodiv-cart-item-description {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.biodiv-cart-table .product-total {
    width: 20%;
}

.biodiv-cart-original-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-bottom: 5px;
}

.biodiv-cart-sale-price {
    display: block;
    color: #00719B;
    font-weight: 600;
    font-size: 16px;
}

.biodiv-cart-regular-total {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.biodiv-cart-table .product-quantity {
    width: 20%;
}

.biodiv-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.biodiv-quantity-minus,
.biodiv-quantity-plus {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.biodiv-quantity-minus:hover,
.biodiv-quantity-plus:hover {
    background: #00719B;
    color: #fff;
    border-color: #00719B;
}

.biodiv-quantity-minus:disabled,
.biodiv-quantity-plus:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5 !important;
    color: #999 !important;
    border-color: #ddd !important;
}

.biodiv-cart-table tbody tr.updating,
.biodiv-cart-table tbody tr.removing {
    opacity: 0.6;
    pointer-events: none;
}

.biodiv-quantity-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    background: #f5f5f5;
    pointer-events: none;
}

.biodiv-cart-table .product-remove {
    width: 15%;
    text-align: center;
}

.biodiv-cart-remove-item {
    color: #dc3545 !important;
    font-size: 16px;
    cursor: pointer;
    transition: none !important;
    opacity: 1 !important;
    text-decoration: none !important;
}

.biodiv-cart-remove-item:hover,
.biodiv-cart-remove-item:focus,
.biodiv-cart-remove-item:active {
    color: #dc3545 !important;
    background: none !important;
    opacity: 1 !important;
    text-decoration: none !important;
}

.biodiv-cart-remove-item i {
    color: #dc3545 !important;
    pointer-events: none;
}

.biodiv-cart-remove-item:hover i,
.biodiv-cart-remove-item:focus i,
.biodiv-cart-remove-item:active i {
    color: #dc3545 !important;
}

.biodiv-cart-totals-section {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.biodiv-cart-branch-info {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
}

.biodiv-cart-branch-info h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.biodiv-cart-branch-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.cart-totals {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
}

.biodiv-cart-totals-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.biodiv-cart-total-row {
    margin-bottom: 15px;
}

.biodiv-cart-original-total {
    text-align: right;
}

.biodiv-cart-total-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.biodiv-cart-final-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    margin: 15px 0;
}

.biodiv-cart-total-label {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.biodiv-cart-total-amount {
    font-size: 28px;
    font-weight: 700;
    color: #00719B;
}

.biodiv-cart-tax-notice {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: -10px;
    margin-bottom: 15px;
}

.biodiv-cart-savings-notice {
    background: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.biodiv-cart-savings-notice i {
    color: #28a745;
}

@media (max-width: 1024px) {
    .biodiv-cart-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .biodiv-cart-totals-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .biodiv-cart-table {
        display: block;
        border: none;
    }

    .biodiv-cart-table thead {
        display: none;
    }

    .biodiv-cart-table tbody,
    .biodiv-cart-table tr,
    .biodiv-cart-table td {
        display: block;
        width: 100%;
    }

    .biodiv-cart-table tr {
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 15px;
    }

    .biodiv-cart-table td {
        padding: 10px 0;
        border: none;
        text-align: left;
    }

    .biodiv-cart-table td::before {
        content: attr(data-title);
        font-weight: 600;
        display: inline-block;
        margin-right: 10px;
        color: #666;
    }

    .biodiv-cart-table .product-name,
    .biodiv-cart-table .product-total,
    .biodiv-cart-table .product-quantity {
        width: 100%;
    }

    .biodiv-cart-table .product-remove {
        text-align: left;
    }
}

