
    .shopify-style-cart-page {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }
    
    .cart-empty-message {
        text-align: center;
        padding: 60px 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .empty-cart-icon { margin-bottom: 20px; opacity: 0.3; }
    .cart-empty-message h2 { font-size: 24px; margin-bottom: 10px; color: #1B2A4A; }
    .cart-empty-message p { color: #6B7B8D; margin-bottom: 30px; }
    
    .continue-shopping-btn {
        display: inline-block;
        padding: 14px 30px;
        background: #E8593C;
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.2s ease;
        box-shadow: 0 4px 6px -1px rgba(232, 89, 60, 0.25);
    }
    
    .continue-shopping-btn:hover {
        background: #D14832;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(232, 89, 60, 0.3);
    }
    
    .cart-page-content {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 30px;
    }
    
    .cart-items-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #E4DFD8;
        color: #1B2A4A;
    }
    
    .cart-page-item {
        display: flex;
        gap: 20px;
        padding: 20px;
        background: #FFFFFF;
        
        border: 1px solid rgba(228, 223, 216, 0.6);
        border-radius: 16px;
        margin-bottom: 15px;
        transition: all 0.2s ease;
    }
    
    .cart-page-item:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    }
    
    .cart-page-item-image {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
        border-radius: 12px;
        overflow: hidden;
        background: #F0EEE9;
    }
    
    .cart-page-item-image img { width: 100%; height: 100%; object-fit: cover; }
    
    .cart-page-item-details { flex: 1; display: flex; justify-content: space-between; }
    .item-info { flex: 1; }
    
    .item-title {
        font-size: 18px;
        font-weight: 500;
        color: #1B2A4A;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
    }
    
    .item-title:hover { color: #2AAFD3; }
    .item-controls { display: flex; align-items: center; gap: 30px; }
    
    .cart-page-quantity {
        display: flex;
        align-items: center;
        background: #F0EEE9;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #E4DFD8;
    }
    
    .cart-qty-btn {
        width: 36px;
        height: 36px;
        border: none;
        background: transparent;
        cursor: pointer;
        font-size: 18px;
        color: #6B7B8D;
        transition: all 0.2s;
    }
    
    .cart-qty-btn:hover { background: #2AAFD3; color: white; }
    
    .qty-input {
        width: 50px;
        text-align: center;
        border: none;
        background: transparent;
        font-size: 16px;
        font-weight: 500;
        color: #1B2A4A;
    }
    
    .qty-fixed {
        display: inline-block;
        width: 50px;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #1B2A4A;
    }
    
    .item-price-desktop { min-width: 80px; text-align: right; color: #6B7B8D; }
    .item-total { min-width: 100px; text-align: right; font-size: 18px; font-weight: 600; color: #1B2A4A; }
    .item-price-mobile { display: none; }
    
    .remove-item-btn {
        background: none;
        border: none;
        color: #94a3b8;
        cursor: pointer;
        padding: 8px;
        transition: all 0.2s;
    }
    
    .remove-item-btn:hover { color: #6B7B8D; transform: scale(1.1); } /* Brand Slate — on-palette destructive hover */
    
    .continue-shopping-link {
        display: inline-block;
        margin-top: 20px;
        color: #2AAFD3;
        text-decoration: none;
        font-weight: 500;
    }
    
    .continue-shopping-link:hover { text-decoration: underline; }
    
    .cart-summary-card {
        background: #FFFFFF;
        
        border: 1px solid rgba(228, 223, 216, 0.6);
        border-radius: 16px;
        padding: 24px;
        position: sticky;
        top: 20px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    
    .cart-summary-card h3 {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #E4DFD8;
        color: #1B2A4A;
    }
    
    .cart-coupon-section {
        margin-bottom: 20px;
        padding: 15px;
        background: #F0EEE9;
        border-radius: 12px;
    }
    
    .coupon-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        color: #6B7B8D;
    }
    
    .coupon-toggle:hover { color: #2AAFD3; }
    .toggle-icon { transition: transform 0.3s; }
    .coupon-toggle.active .toggle-icon { transform: rotate(90deg); }
    .coupon-form { display: flex; gap: 8px; margin-top: 12px; }
    
    .coupon-form input {
        flex: 1;
        padding: 10px;
        border: 1px solid #E4DFD8;
        border-radius: 8px;
    }
    
    .coupon-form button {
        padding: 10px 20px;
        background: #E8593C;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
    }
    
    .coupon-form button:hover { background: #D14832; }
    
    .applied-coupons { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
    
    .coupon-tag {
        display: inline-flex;
        align-items: center;
        background: rgba(42, 175, 211, 0.08);
        border: 1px solid #2AAFD3;
        border-radius: 9999px;
        padding: 4px 12px;
        font-size: 13px;
        color: #1E8FAD;
    }
    
    .coupon-tag button {
        background: none;
        border: none;
        color: #6B7B8D;
        cursor: pointer;
        margin-left: 8px;
        font-size: 16px;
    }
    
    .summary-row {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        font-size: 15px;
        color: #1B2A4A;
    }
    
    .summary-row.discount { color: #2AAFD3; }
    
    .summary-total {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        margin-top: 10px;
        border-top: 2px solid #E4DFD8;
        font-size: 20px;
        font-weight: 600;
        color: #1B2A4A;
    }
    
    .checkout-btn {
        display: block;
        width: 100%;
        padding: 16px;
        background: #E8593C;
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        margin: 20px 0;
        transition: all 0.2s ease;
        box-shadow: 0 4px 6px -1px rgba(232, 89, 60, 0.25);
    }
    
    .checkout-btn:hover {
        background: #D14832;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(232, 89, 60, 0.3);
    }
    
    .cart-badges {
        display: flex;
        justify-content: space-around;
        padding-top: 15px;
        border-top: 1px solid #E4DFD8;
        font-size: 13px;
        color: #6B7B8D;
    }
    
    @media (max-width: 968px) {
        .cart-page-content { grid-template-columns: 1fr; }
        .cart-summary-section { order: -1; margin-bottom: 30px; }
        .cart-summary-card { position: relative; top: 0; }
    }
    
    @media (max-width: 640px) {
        .cart-page-item { flex-direction: column; }
        .cart-page-item-image { width: 100%; height: 200px; }
        .cart-page-item-details { flex-direction: column; gap: 15px; }
        .item-controls { flex-direction: column; align-items: flex-start; gap: 15px; }
        .item-price-desktop { display: none; }
        .item-price-mobile { display: block; font-size: 16px; color: #6B7B8D; margin-top: 8px; }
        .item-total { font-size: 20px; }
    }
    