/* Credit Page Styles with 3D Effects */

.credit-hero {
    position: relative;
    overflow: hidden;
}

.credit-hero-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 5rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.credit-form-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

.credit-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.credit-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.credit-form-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.credit-form-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

/* Form 3D Container */
.credit-form-3d {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.credit-form-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    border-radius: 30px 30px 0 0;
}

.credit-form-3d:hover {
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.25);
    transform: translateY(-5px);
}

/* Form Sections */
.form-section-3d {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(5, 150, 105, 0.03));
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s;
}

.form-section-3d:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
    transform: translateX(5px);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.section-label i {
    font-size: 1.5rem;
    color: #10b981;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Form Groups */
.form-group-3d {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group-3d.full-width {
    grid-column: 1 / -1;
}

.form-group-3d label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group-3d label i {
    color: #10b981;
    font-size: 1.1rem;
}

.required {
    color: #ef4444;
}

.form-group-3d input,
.form-group-3d select,
.form-group-3d textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: var(--text-color);
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group-3d input:focus,
.form-group-3d select:focus,
.form-group-3d textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1), 0 4px 12px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

.form-group-3d input:valid:not(:placeholder-shown),
.form-group-3d select:valid,
.form-group-3d textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
}

.form-group-3d input:invalid:not(:placeholder-shown):not(:focus),
.form-group-3d select:invalid:not(:focus),
.form-group-3d textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #ef4444;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.input-hint {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Application Type Buttons */
.application-type-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.type-button-3d {
    position: relative;
    cursor: pointer;
}

.type-button-3d input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.type-button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.type-button-content i {
    font-size: 3rem;
    color: #6b7280;
    transition: all 0.3s;
}

.type-button-content span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.3s;
}

.type-button-3d input[type="radio"]:checked + .type-button-content {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25), 0 0 0 3px rgba(16, 185, 129, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.type-button-3d input[type="radio"]:checked + .type-button-content i {
    color: #10b981;
    transform: scale(1.2);
    animation: iconPulse 2s ease-in-out infinite;
}

.type-button-3d input[type="radio"]:checked + .type-button-content span {
    color: #047857;
}

.type-button-3d:hover .type-button-content {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Checkbox 3D */
.checkbox-3d {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.checkbox-3d:hover {
    background: rgba(16, 185, 129, 0.05);
}

.checkbox-3d input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
    background: white;
}

.checkbox-3d input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(16, 185, 129, 0.3);
}

.checkbox-3d input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    animation: checkMark 0.3s ease-out;
}

@keyframes checkMark {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.checkbox-label {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.consent-section {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.05));
    border-color: rgba(239, 68, 68, 0.2);
}

/* Submit Button */
.form-submit-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.credit-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3), 0 0 0 0 rgba(16, 185, 129, 0.5);
    position: relative;
    overflow: hidden;
}

.credit-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.credit-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.credit-submit-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4), 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.credit-submit-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.credit-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.credit-submit-btn i {
    font-size: 1.5rem;
}

/* Success Modal */
.credit-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s;
}

.credit-success-modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.success-modal-content {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.success-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 4rem;
    color: white;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    animation: successIconPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successIconPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-modal-content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.success-modal-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.success-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Product Selection Styles */
.selected-products-summary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.summary-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #047857;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.summary-header h3 i {
    color: #10b981;
}

.clear-selection-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.clear-selection-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

.selected-products-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.selected-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.selected-product-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.selected-product-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
}

.selected-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-product-details {
    flex: 1;
}

.selected-product-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.selected-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
}

.remove-product-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.remove-product-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.selected-products-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.total-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.total-amount {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Products Grid */
.credit-products-section {
    margin-top: 2rem;
}

.credit-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.credit-product-card {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.credit-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.credit-product-card:hover::before {
    transform: scaleX(1);
}

.credit-product-card:hover {
    transform: translateY(-8px) rotateY(3deg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.3);
}

.credit-product-card.selected {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3), 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.credit-product-card.selected::before {
    transform: scaleX(1);
}

.credit-product-image {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    margin-bottom: 1rem;
    position: relative;
}

.credit-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.credit-product-card:hover .credit-product-image img {
    transform: scale(1.1);
}

.selected-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: badgePop 0.3s ease-out;
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.credit-product-info {
    margin-bottom: 1rem;
}

.credit-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.credit-product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.credit-product-category {
    font-size: 0.8rem;
    color: #6b7280;
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    border-radius: 6px;
}

.credit-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
}

.credit-product-toggle-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.credit-product-toggle-btn.add {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.credit-product-toggle-btn.add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
}

.credit-product-toggle-btn.remove {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.credit-product-toggle-btn.remove:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

.products-loading,
.products-empty {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.products-loading i,
.products-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #10b981;
    opacity: 0.5;
}

/* Credit Products Info */
.credit-products-info {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credit-product-count {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

/* Credit Pagination */
.credit-pagination-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.credit-pagination {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.credit-pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.credit-pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.credit-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.credit-pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credit-pagination-number {
    min-width: 44px;
    height: 44px;
    padding: 0.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-pagination-number:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.credit-pagination-number.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.credit-pagination-dots {
    padding: 0 0.5rem;
    color: #6b7280;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .credit-form-section {
        padding: 2rem 0 !important;
    }

    .credit-form-wrapper {
        padding: 0 1rem;
    }

    .credit-form-3d {
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
    }

    .credit-form-header h2 {
        font-size: 2rem !important;
    }

    .form-section-3d {
        padding: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    .section-label {
        font-size: 1.1rem !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .application-type-buttons {
        grid-template-columns: 1fr !important;
    }

    .type-button-content {
        padding: 1.5rem !important;
    }

    .credit-submit-btn {
        padding: 1.25rem 2.5rem !important;
        font-size: 1.1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .success-modal-content {
        padding: 2rem 1.5rem !important;
        margin: 1rem !important;
    }

    .success-icon {
        width: 100px !important;
        height: 100px !important;
        font-size: 3rem !important;
    }

    .credit-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
        gap: 1rem !important;
    }

    .credit-product-card {
        padding: 0.75rem !important;
    }

    .credit-product-image {
        height: 120px !important;
    }

    .credit-product-name {
        font-size: 0.85rem !important;
    }

    .credit-product-price {
        font-size: 1rem !important;
    }

    .selected-products-list {
        max-height: 250px !important;
    }

    .selected-product-item {
        padding: 0.75rem !important;
    }

    .selected-product-image {
        width: 50px !important;
        height: 50px !important;
    }

    .total-amount {
        font-size: 1.5rem !important;
    }

    .credit-products-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }

    .credit-pagination {
        gap: 0.5rem !important;
    }

    .credit-pagination-btn {
        padding: 0.625rem 1rem !important;
        font-size: 0.9rem !important;
    }

    .credit-pagination-number {
        min-width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem !important;
    }
}

