/* ============================================
   GMS Payment Styles
   ============================================ */

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
  border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-message {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ============================================
   Subscription Plans
 ============================================ */

.subscription-plans-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.plans-header {
    text-align: center;
    margin-bottom: 3rem;
}

.plans-header h1 {
 font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.plans-header .subtitle {
    font-size: 1.2rem;
 color: #6b7280;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* ============================================
   Plan Card
   ============================================ */

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border: 2px solid #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.plan-type-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%) !important;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
}

/* Eğer hem featured hem de plan-type varsa, düzen ayarı */
.plan-card.featured .plan-type-badge {
    left: 20px; /* Featured badge sağda olacağı için sol tarafa koy */
}

/* İçindeki h4 elementine de açıkça renk ver */
.plan-type-badge h4,
.plan-type-badge * {
    color: white !important;
    margin: 0;
    padding: 0;
}

.plan-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.plan-description {
color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.plan-pricing {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e7e7e9 100%);
    border-radius: 12px;
}

.plan-pricing .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.plan-pricing .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
}

.plan-pricing .currency {
    font-size: 1.25rem;
    color: #6b7280;
}

.plan-pricing .duration {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.plan-features {
    margin: 2rem 0;
}

.plan-features .feature {
    display: flex;
    align-items: center;
 gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.plan-features .feature:last-child {
    border-bottom: none;
}

.plan-features .icon {
 font-size: 1.25rem;
 display: inline-flex;
 align-items: center;
 justify-content: center;
}

.plan-features .icon i {
 color: #667eea;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-plan:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-plan:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-featured {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* ============================================
   Payment Checkout
   ============================================ */

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.order-summary {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.plan-info h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.features-list {
  margin: 1.5rem 0;
}

.features-list .feature {
    padding: 0.5rem 0;
    color: #374151;
    display: flex;
  align-items: center;
    gap: 0.5rem;
}

.features-list .feature i {
    color: #667eea;
    font-size: 1.1rem;
}

.price-breakdown {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: #374151;
}

.price-row.total {
    border-top: 2px solid #e5e7eb;
margin-top: 0.5rem;
 padding-top: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1f2937;
}

.price-row .price {
    font-weight: 600;
    color: #667eea;
}

.payment-form {
    background: white;
border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
 font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.installment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.installment-option {
    display: block;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
 cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.installment-option:hover {
    border-color: #667eea;
    background: #f8fafc;
}

.installment-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.installment-option input[type="radio"] {
    display: none;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.installment-price {
font-size: 0.85rem;
    color: #6b7280;
}

.form-actions {
    display: flex;
    gap: 1rem;
 margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

/* ============================================
   Payment Result Pages
   ============================================ */

.payment-result-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
 justify-content: center;
  padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.payment-result-container.success-bg {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
}

.payment-success-card,
.payment-failed-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.icon-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.success-icon,
.error-icon {
    width: 100px;
    height: 100px;
}

.success-icon {
    color: #10b981;
    animation: bounce 0.6s;
}

.error-icon {
    color: #ef4444;
    animation: shake 0.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.result-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.result-title.success {
    color: #059669;
}

.result-title.error-title {
    color: #dc2626;
}

.success-details {
    margin: 2rem 0;
}

.success-message {
    font-size: 1.2rem;
    color: #065f46;
margin-bottom: 1.5rem;
}

.payment-info-box {
    background: #d1fae5;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.payment-id {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #047857;
    margin-top: 0.5rem;
}

.next-steps-box {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: left;
}

.next-steps-box h3 {
    color: #065f46;
  margin-bottom: 1rem;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: #047857;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li i {
    color: #10b981;
    font-size: 1.1rem;
}

.error-details {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: 8px;
 margin: 2rem 0;
    text-align: left;
}

.error-message {
  font-size: 1.1rem;
    color: #991b1b;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.technical-details {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #fbbf24;
}

.technical-details summary {
    font-weight: 600;
    color: #92400e;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem;
    list-style: none;
}

.technical-details summary::-webkit-details-marker {
    display: none;
}

.technical-details[open] summary {
    margin-bottom: 1rem;
    border-bottom: 1px solid #fbbf24;
    padding-bottom: 0.5rem;
}

.tech-info {
    padding: 1rem;
}

.tech-info p {
margin: 0.75rem 0;
    font-size: 0.9rem;
    color: #78350f;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.help-box {
    background: #fffbeb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border: 1px solid #fbbf24;
}

.help-box h4 {
    color: #92400e;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.help-box ul {
    margin: 0;
    padding-left: 1.5rem;
  color: #78350f;
}

.help-box li {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #dc2626;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   Error Box
   ============================================ */

.error-box {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-plans {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.empty-icon {
  width: 80px;
    height: 80px;
    color: #9ca3af;
    margin-bottom: 1rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
 }

  .order-summary {
        position: relative;
    top: 0;
    }
}

@media (max-width: 768px) {
    .plans-grid {
      grid-template-columns: 1fr;
    }

    .payment-success-card,
    .payment-failed-card {
        padding: 2rem 1.5rem;
    }

    .result-title {
        font-size: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
 }

    .btn {
        width: 100%;
    }

    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .installment-options {
        grid-template-columns: 1fr;
    }

    .plans-header h1 {
        font-size: 1.75rem;
    }

 .plan-pricing .amount {
        font-size: 2.25rem;
    }
}

/* ============================================
   Utilities
   ============================================ */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
 SMS Package Styles
   ============================================ */

.sms-packages-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.packages-header {
    text-align: center;
    margin-bottom: 3rem;
}

.packages-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.packages-header .subtitle {
    font-size: 1.2rem;
    color: #6b7280;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* SMS Package Card */
.sms-package-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.sms-package-card:hover {
  transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sms-package-card.best-value {
    border: 2px solid #10b981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.best-value-badge {
    position: absolute;
 top: -12px;
    right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.package-description {
    color: #6b7280;
    font-size: 0.9rem;
}

.package-pricing {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e7e7e9 100%);
    border-radius: 12px;
}

.package-pricing .sms-count {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.package-pricing .count {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.package-pricing .label {
 font-size: 1rem;
    color: #6b7280;
}

.package-pricing .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.package-pricing .amount {
font-size: 2rem;
 font-weight: 700;
    color: #1f2937;
}

.package-pricing .currency {
    font-size: 1.1rem;
    color: #6b7280;
}

.package-pricing .price-per-sms {
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.85rem;
}

.package-features {
    margin: 2rem 0;
}

.package-features .feature {
    display: flex;
  align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.package-features .feature:last-child {
    border-bottom: none;
}

.btn-package {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
  border: none;
 cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-package:hover:not(:disabled) {
    transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-best-value {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Purchase SMS Package Page */
.purchase-sms-package-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.purchase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.purchase-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.purchase-header .subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.package-summary-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.selected-package {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.package-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
 font-size: 2.5rem;
}

.package-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-item .label {
    color: #6b7280;
  font-size: 0.95rem;
}

.detail-item .value {
    color: #1f2937;
    font-weight: 600;
}

.price-summary {
    margin: 2rem 0;
}

.price-summary .price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.price-summary .subtotal {
    color: #6b7280;
}

.price-summary .tax {
    color: #6b7280;
}

.price-summary .total {
    border-top: 2px solid #e5e7eb;
margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
  font-size: 1.5rem;
    color: #1f2937;
}

.security-info {
    text-align: center;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f0fdf4;
    border-radius: 8px;
    color: #065f46;
}

.payment-form-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.form-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.payment-info-note {
    margin-top: 1.5rem;
}

/* SMS Package Success Page */
.sms-package-success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.success-content {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    max-width: 700px;
width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s;
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.success-info {
    margin: 2rem 0;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
  border-radius: 12px;
    margin-bottom: 1rem;
    text-align: left;
}

.info-card i {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-card h5 {
    font-size: 1.1rem;
font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.info-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.info-section {
    margin-bottom: 2rem;
}

.info-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.info-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.usage-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.usage-info h4 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.usage-step {
  display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #f8fafc;
    margin-bottom: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
display: flex;
    align-items: center;
    justify-content: center;
 font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
 color: #6b7280;
    margin: 0;
}

.access-denied-box,
.no-package-box,
.no-packages {
    text-align: center;
    padding: 3rem;
    background: white;
  border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.access-denied-box i,
.no-package-box i,
.no-packages svg {
    font-size: 4rem;
    color: #f59e0b;
 margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
 .packages-grid {
        grid-template-columns: 1fr;
    }

    .purchase-header h1,
    .packages-header h1 {
        font-size: 1.75rem;
    }

    .package-pricing .count {
     font-size: 2rem;
    }

    .success-content {
        padding: 2rem 1.5rem;
    }

    .success-title {
   font-size: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
  }
}
