/**
 * Cart Page Design - Matching Site Design
 * 
 * Modern B2B cart page design consistent with site design
 *
 * @package     RalphWhite_B2B
 * @subpackage  Assets
 * @since       2.0.0
 */

/* ==========================================================================
   Cart Page Container
   ========================================================================== */

.cart-page-wrapper {
    background: var(--bg-tertiary);
    padding: 4rem 0;
    min-height: 70vh;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
    width: 100%;
}

.cart-page-wrapper .container-fluid {
    padding: 0;
}

.cart-page-wrapper .container {
    max-width: 1200px;
}

/* ==========================================================================
   Cart Page Header
   ========================================================================== */

.cart-page-header {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.cart-page-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cart-page-header .section-title .highlight {
    color: var(--color-accent-orange);
}

.cart-page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   Empty Cart State
   ========================================================================== */

.cart-empty-state {
    text-align: center;
    padding: 5rem 3rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
}

.cart-empty-icon {
    color: #d1d5db;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
}

.cart-empty-icon svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.cart-empty-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cart-empty-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-cart-empty {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent-orange);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(245, 130, 32, 0.2);
}

.btn-cart-empty:hover {
    background: var(--color-accent-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 130, 32, 0.3);
    color: #ffffff;
}

.btn-cart-empty svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Cart Items Card
   ========================================================================== */

.cart-items-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow var(--transition-base);
}

.cart-items-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Cart Table
   ========================================================================== */

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

.cart-table-modern thead {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 0.5rem 0.5rem 0 0;
}

.cart-table-modern thead th {
    padding: 1.25rem 1rem;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e5e7eb;
    border-top: none;
}

.cart-table-modern tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: all var(--transition-base);
    position: relative;
}

.cart-table-modern tbody tr:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.cart-table-modern tbody td {
    padding: 1.75rem 1rem;
    vertical-align: middle;
    border: none;
}

/* ==========================================================================
   Cart Product Thumbnail
   ========================================================================== */

.product-thumbnail {
    width: 100px;
}

.product-thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.625rem;
    border: 2px solid #e5e7eb;
    background: #f9fafb;
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-thumbnail-link {
    display: block;
    transition: transform var(--transition-base);
    position: relative;
}

.product-thumbnail-link:hover {
    transform: scale(1.08);
}

.product-thumbnail-link:hover img {
    border-color: var(--color-accent-orange);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.2);
}

/* ==========================================================================
   Cart Product Info
   ========================================================================== */

.cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding-left: 0.5rem;
}

.cart-product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.cart-product-title:hover {
    color: var(--color-accent-orange);
}

.cart-product-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cart-product-meta dl {
    margin: 0;
}

.cart-product-meta dt {
    font-weight: 600;
    display: inline;
}

.cart-product-meta dd {
    display: inline;
    margin-left: 0.25rem;
}

.cart-product-meta dd::after {
    content: ", ";
}

.cart-product-meta dd:last-child::after {
    content: "";
}

.backorder_notification {
    font-size: 0.875rem;
    color: var(--color-warning);
    margin: 0.5rem 0 0;
}

/* ==========================================================================
   Cart Product Price
   ========================================================================== */

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-price .amount {
    color: var(--color-accent-orange);
    font-size: 1.25rem;
}

.product-subtotal {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-subtotal .amount {
    color: var(--color-accent-orange);
    font-size: 1.375rem;
}

/* ==========================================================================
   Cart Quantity Input
   ========================================================================== */

.product-quantity .quantity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Hide quantity label */
.product-quantity .quantity label,
.cart-table-modern .quantity label {
    display: none !important;
}

.product-quantity .quantity input[type="number"] {
    width: 90px;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    background: #ffffff;
    -moz-appearance: textfield;
    appearance: textfield;
    transition: all var(--transition-base);
}

.product-quantity .quantity input[type="number"]::-webkit-inner-spin-button,
.product-quantity .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-quantity .quantity input[type="number"]:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
}

/* ==========================================================================
   Remove Item Button
   ========================================================================== */

.btn-cart-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fee2e2;
    color: #991b1b;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-cart-remove:hover {
    background: #fecaca;
    color: #7f1d1d;
    transform: scale(1.15);
    border-color: #fca5a5;
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.2);
}

.btn-cart-remove svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Cart Actions
   ========================================================================== */

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.coupon-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.coupon-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
    margin: 0;
}

.coupon-input-group {
    display: flex;
    gap: 0.75rem;
}

.coupon-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: #ffffff;
    transition: all var(--transition-base);
}

.coupon-input:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
    background: #ffffff;
}

.btn-coupon {
    padding: 0.875rem 2rem;
    background: var(--bg-dark);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-coupon:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-update-cart {
    padding: 1rem 2rem;
    background: var(--bg-dark);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-update-cart:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

/* ==========================================================================
   Cart Totals Card
   ========================================================================== */

.cart-totals-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 120px;
    height: fit-content;
    transition: box-shadow var(--transition-base);
}

.cart-totals-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 6px 15px rgba(0, 0, 0, 0.08);
}

.cart_totals h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    /* margin-bottom: 2rem; */
    padding-bottom: 1.25rem;
    border-bottom: 3px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.125rem;
}

.shop_table.cart_totals {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: separate;
    border-spacing: 0;
}

.shop_table.cart_totals th,
.shop_table.cart_totals td {
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.shop_table.cart_totals th {
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    width: 50%;
    font-size: 0.9375rem;
}

.shop_table.cart_totals td {
    text-align: right;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.shop_table.cart_totals .order-total {
    background: #f9fafb;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.shop_table.cart_totals .order-total th,
.shop_table.cart_totals .order-total td {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: none;
    padding: 1.25rem 1rem;
    background: transparent;
}

.shop_table.cart_totals .order-total .amount {
    color: var(--color-accent-orange);
    font-size: 1.5rem;
}

.wc-proceed-to-checkout {
    /* margin-top: 2rem; */
    /* padding-top: 2rem; */
    border-top: 2px solid #e5e7eb;
}

.wc-proceed-to-checkout .checkout-button {
    display: flex!important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-accent-orange);
    color: #ffffff;
    border: none;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0!important;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: var(--color-accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4);
    color: #ffffff;
}

.wc-proceed-to-checkout .checkout-button:active {
    transform: translateY(0);
}

/* ==========================================================================
   WooCommerce Notifications on Cart Page
   ========================================================================== */

/* ==========================================================================
   WooCommerce Messages Container
   ========================================================================== */

.woocommerce-messages-container {
    margin-bottom: 2rem;
}
.cart-totals-card .shop_table.shop_table_responsive {
    width: 100%!important;
}
.cart-totals-card .shop_table.shop_table_responsive td[data-title] {
    text-align: right;
}
.cart-totals-card .shop_table.shop_table_responsive td,
.cart-totals-card .shop_table.shop_table_responsive th{
    padding: 1rem 0;
}
.woocommerce-messages-container .woocommerce-message,
.woocommerce-messages-container .woocommerce-info,
.woocommerce-messages-container .woocommerce-error,
.woocommerce-messages-container ul.woocommerce-error,
.woocommerce-messages-container ul.woocommerce-message {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-left: 4px solid var(--color-accent-orange);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    list-style: none;
    margin-left: 0;
}

.woocommerce-messages-container .woocommerce-message,
.woocommerce-messages-container ul.woocommerce-message {
    border-left-color: #10b981;
    background: #f0fdf4;
    color: #065f46;
}

.woocommerce-messages-container .woocommerce-info {
    border-left-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

.woocommerce-messages-container .woocommerce-error,
.woocommerce-messages-container ul.woocommerce-error {
    border-left-color: #ef4444;
    background: #fef2f2;
    color: #991b1b;
}

.woocommerce-messages-container .woocommerce-message::before,
.woocommerce-messages-container .woocommerce-info::before,
.woocommerce-messages-container .woocommerce-error::before {
    display: none;
}

.woocommerce-messages-container .woocommerce-message li,
.woocommerce-messages-container .woocommerce-info li,
.woocommerce-messages-container .woocommerce-error li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-messages-container .woocommerce-message a,
.woocommerce-messages-container .woocommerce-info a,
.woocommerce-messages-container .woocommerce-error a {
    color: var(--color-accent-orange);
    text-decoration: underline;
    font-weight: 600;
}

.woocommerce-messages-container .woocommerce-message a:hover,
.woocommerce-messages-container .woocommerce-info a:hover,
.woocommerce-messages-container .woocommerce-error a:hover {
    color: var(--color-accent-orange-dark);
    text-decoration: none;
}

/* Hide "View cart" links in notifications */
.woocommerce-messages-container .woocommerce-message a.wc-forward,
.woocommerce-messages-container .woocommerce-info a.wc-forward,
.woocommerce-messages-container .woocommerce-error a.wc-forward,
.woocommerce-messages-container a[href*="cart"] {
    display: none !important;
}

/* Success message icon */
.woocommerce-messages-container .woocommerce-message::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Error message icon */
.woocommerce-messages-container .woocommerce-error::before,
.woocommerce-messages-container ul.woocommerce-error::before {
    content: "✕";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Info message icon */
.woocommerce-messages-container .woocommerce-info::before {
    content: "ℹ";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Legacy support for cart page */
.woocommerce-cart-page .woocommerce-message,
.woocommerce-cart-page .woocommerce-info,
.woocommerce-cart-page .woocommerce-error {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-left: 4px solid var(--color-accent-orange);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.woocommerce-cart-page .woocommerce-message {
    border-left-color: #10b981;
    background: #f0fdf4;
    color: #065f46;
}

.woocommerce-cart-page .woocommerce-info {
    border-left-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

.woocommerce-cart-page .woocommerce-error {
    border-left-color: #ef4444;
    background: #fef2f2;
    color: #991b1b;
}

.woocommerce-cart-page .woocommerce-message::before,
.woocommerce-cart-page .woocommerce-info::before,
.woocommerce-cart-page .woocommerce-error::before {
    display: none;
}

.woocommerce-cart-page .woocommerce-message a,
.woocommerce-cart-page .woocommerce-info a,
.woocommerce-cart-page .woocommerce-error a {
    color: var(--color-accent-orange);
    text-decoration: underline;
    font-weight: 600;
}

.woocommerce-cart-page .woocommerce-message a:hover,
.woocommerce-cart-page .woocommerce-info a:hover,
.woocommerce-cart-page .woocommerce-error a:hover {
    color: var(--color-accent-orange-dark);
}

.woocommerce-cart-page .woocommerce-message a.wc-forward,
.woocommerce-cart-page .woocommerce-info a.wc-forward,
.woocommerce-cart-page .woocommerce-error a.wc-forward {
    display: none !important;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 1199.98px) {
    .cart-totals-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .cart-page-wrapper {
        padding: 3rem 0;
    }
    
    .cart-page-header {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .cart-page-header .section-title {
        font-size: 2rem;
    }
    
    .cart-items-card {
        padding: 1.5rem;
    }
    
    /* Convert table to card layout on mobile */
    .cart-table-modern {
        border: none;
        display: block;
    }
    
    .cart-table-modern thead {
        display: none;
    }
    
    .cart-table-modern tbody {
        display: block;
    }
    
    .cart-table-modern tbody tr {
        display: block;
        background: #ffffff;
        border-radius: 0.75rem;
        padding: 1.5rem;
        padding-top: 3.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
        position: relative;
    }
    
    .cart-table-modern tbody tr:hover {
        transform: none;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }
    
    .cart-table-modern tbody td {
        display: flex;
        padding: 0.75rem 0;
        text-align: left !important;
        border-bottom: 1px solid #e5e7eb;
        justify-content: space-between;
        align-items: center;
    }
    
    .cart-table-modern tbody td:last-child {
        border-bottom: none;
    }
    
    .cart-table-modern tbody td:before {
        content: attr(data-title) ": ";
        font-weight: 700;
        color: var(--text-primary);
        display: inline-block;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    /* Product Remove - Position at top right of card */
    .cart-table-modern tbody td.product-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0;
        border: none;
        width: auto;
        z-index: 10;
    }
    
    .cart-table-modern tbody td.product-remove:before {
        display: none;
    }
    
    .btn-cart-remove {
        position: static;
        width: 36px;
        height: 36px;
    }
    
    /* Product Thumbnail */
    .cart-table-modern tbody td.product-thumbnail {
        justify-content: flex-start;
        padding-bottom: 1rem;
        padding-top: 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .cart-table-modern tbody td.product-thumbnail:before {
        display: none;
    }
    
    .product-thumbnail {
        width: 100%;
        margin-bottom: 0;
    }
    
    .product-thumbnail img {
        width: 120px;
        height: 120px;
    }
    
    /* Product Name */
    .cart-table-modern tbody td.product-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-right: 2.5rem;
    }
    
    .cart-table-modern tbody td.product-name:before {
        display: none;
    }
    
    .cart-product-info {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .cart-product-title {
        padding-right: 0;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    /* Product Price */
    .cart-table-modern tbody td.product-price {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    /* Product Quantity - Right align on mobile */
    .cart-table-modern tbody td.product-quantity {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .product-quantity .quantity {
        justify-content: flex-end;
        margin-left: auto;
    }
    
    /* Product Subtotal */
    .cart-table-modern tbody td.product-subtotal {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        font-weight: 700;
    }
    
    .cart-empty-state {
        padding: 4rem 2rem;
    }
    
    .cart-empty-icon svg {
        width: 100px;
        height: 100px;
    }
    
    .cart-empty-title {
        font-size: 1.75rem;
    }
    
    .coupon-input-group {
        flex-direction: column;
    }
    
    .btn-coupon {
        width: 100%;
    }
    
    .cart-totals-card {
        padding: 2rem;
    }
    
    .cart_totals h2 {
        font-size: 1rem;
    }
}
