
    .cart-section {
        padding: 30px 0 40px;
        background: #fff;
    }
    .cart-table-wrapper {
        overflow-x: auto;
    }
    .cart-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;
        background: #fff;
    }
    .cart-table thead {
        background: #f8f9fa;
    }
    .cart-table thead th {
        padding: 15px 12px;
        text-align: left;
        font-weight: 600;
        font-size: 14px;
        color: #083A5E;
        border-bottom: 2px solid #e0e0e0;
        white-space: nowrap;
    }
    .cart-table tbody td {
        padding: 20px 12px;
        border-bottom: 1px solid #e0e0e0;
        vertical-align: top;
    }
    .cart-table tbody tr:hover {
        background: #f8f9fa;
    }
    .cart-item-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }
    .cart-item-name {
        font-weight: 600;
        color: #083A5E;
        font-size: 15px;
        margin-bottom: 5px;
    }
    .cart-item-details {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
    }
    .cart-item-details strong {
        color: #083A5E;
        font-weight: 600;
    }
    .cart-actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
    .cart-action-btn {
        padding: 6px 12px;
        border: 1px solid #e0e0e0;
        background: #fff;
        color: #083A5E;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
    }
    .cart-action-btn:hover {
        background: #693D97;
        color: #fff;
        border-color: #693D97;
        text-decoration: none;
    }
    .cart-action-btn.edit {
        background: #f0f7ff;
        border-color: #667eea;
        color: #667eea;
    }
    .cart-action-btn.edit:hover {
        background: #667eea;
        color: #fff;
    }
    .cart-action-btn.duplicate {
        background: #f0fff4;
        border-color: #28a745;
        color: #28a745;
    }
    .cart-action-btn.duplicate:hover {
        background: #28a745;
        color: #fff;
    }
    .cart-action-btn.delete {
        background: #fff5f5;
        border-color: #dc3545;
        color: #dc3545;
    }
    .cart-action-btn.delete:hover {
        background: #dc3545;
        color: #fff;
    }
    .cart-action-btn i {
        font-size: 11px;
    }
    .price-amount {
        font-weight: 600;
        color: #083A5E;
        font-size: 15px;
    }
    .cart-totals-section {
        margin-top: 40px;
    }
    .cart-totals-wrapper {
        max-width: 600px;
        margin-left: auto;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 25px;
    }
    .cart-totals-title {
        font-size: 22px;
        font-weight: 600;
        color: #083A5E;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
    }
    .totals-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }
    .totals-table tr {
        border-bottom: 1px solid #f0f0f0;
    }
    .totals-table th {
        padding: 12px 0;
        text-align: left;
        font-weight: 500;
        color: #666;
        font-size: 14px;
    }
    .totals-table td {
        padding: 12px 0;
        text-align: right;
        font-weight: 500;
        color: #083A5E;
        font-size: 14px;
    }
    .totals-table .total-row th,
    .totals-table .total-row td {
        padding-top: 15px;
        padding-bottom: 15px;
        border-top: 2px solid #e0e0e0;
        font-weight: 700;
        font-size: 18px;
        color: #693D97;
    }
    .totals-table .total-words {
        font-size: 12px;
        color: #666;
        font-weight: 400;
        font-style: italic;
        margin-top: 5px;
    }
    .gk-points-section {
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 15px;
        margin: 20px 0;
    }
    .gk-points-section h4 {
        font-size: 14px;
        font-weight: 600;
        color: #083A5E;
        margin-bottom: 10px;
    }
    .gk-points-input {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .gk-points-input input {
        flex: 1;
        padding: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 14px;
    }
    .gk-points-login {
        text-align: center;
        padding: 10px;
        background: #fff;
        border: 1px dashed #e0e0e0;
        border-radius: 6px;
        color: #666;
        font-size: 13px;
    }
    .gk-points-login a {
        color: #693D97;
        font-weight: 600;
        text-decoration: none;
    }
    .cart-buttons {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .btn {
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        flex: 1;
        justify-content: center;
    }
    .btn-primary {
        background: #693D97;
        color: #fff;
    }
    .btn-primary:hover {
        background: #5a3378;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(105, 61, 151, 0.3);
    }
    .btn-secondary {
        background: #f0f0f0;
        color: #083A5E;
        border: 1px solid #e0e0e0;
    }
    .btn-secondary:hover {
        background: #e0e0e0;
        color: #083A5E;
    }
    .empty-cart {
        text-align: center;
        padding: 60px 20px;
    }
    .empty-cart-icon {
        font-size: 64px;
        color: #e0e0e0;
        margin-bottom: 20px;
    }
    .empty-cart-title {
        font-size: 24px;
        font-weight: 600;
        color: #083A5E;
        margin-bottom: 10px;
    }
    .empty-cart-text {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
    }
    
    @media (max-width: 991px) {
        .cart-table {
            font-size: 13px;
        }
        .cart-table thead th,
        .cart-table tbody td {
            padding: 12px 8px;
        }
        .cart-item-image {
            width: 60px;
            height: 60px;
        }
        .cart-actions {
            flex-direction: column;
        }
        .cart-action-btn {
            width: 100%;
            justify-content: center;
        }
        .cart-totals-wrapper {
            max-width: 100%;
        }
    }
    @media (max-width: 767px) {
        .cart-table thead {
            display: none;
        }
        .cart-table tbody td {
            display: block;
            padding: 10px;
            border-bottom: none;
        }
        .cart-table tbody td:before {
            content: attr(data-label);
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
            color: #083A5E;
        }
        .cart-table tbody tr {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
            display: block;
            padding: 15px;
        }
    }
