/* Copy Animation */

.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #ffffff;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #002550;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

/* select two */
.selection {
  display: block;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #e5e5e5 !important;
  height: 50px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 50px !important;
}


.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2-container:has(.select2-selection--single) {
  width: 100% !important;
}

.form-select.form--control.select2-auto-tokenize {
  display: none;
}

.form-select.form--control.select2-hidden-accessible {
  display: none;
}

label.required:after {
  content: '*';
  color: #dc3545 !important;
  margin-left: 2px;
}

.instructionIcon {
  font-size: 0.8rem !important;
}

/* ========================================
   MODERN CARD UI STYLES
   ======================================== */

/* Virtual Card Component */
.v--card {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 240px;
  border-radius: 16px;
  padding: 24px;
  background: var(--card-background, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
  background-size: cover;
  background-position: center;
  color: var(--color-code, #ffffff);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.v--card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  border-radius: 16px;
  pointer-events: none;
}

.v--card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.v--card.placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #6c757d;
  border: 2px dashed #dee2e6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v--card.placeholder:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  border-color: #adb5bd;
  transform: translateY(-4px);
}

.v--card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.v--card__brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.v--card__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.v--card__info {
  margin-bottom: 16px;
}

.v--card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v--card__security {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.v--card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.v--card__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.v--card__icon {
  margin-bottom: 16px;
}

.v--card__icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.v--card__expiry,
.v--card__cvc,
.v--card__pin {
  font-size: 12px;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.v--card__number {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.v--card__reveal {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--color-code, #ffffff);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.v--card__reveal:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.v--card__status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.v--card__status--active {
  background: rgba(40, 167, 69, 0.9);
  color: #ffffff;
}

.v--card__status--inactive {
  background: rgba(220, 53, 69, 0.9);
  color: #ffffff;
}

/* Card List Views */
.credit-card-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.credit-card-wrapper__title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.credit-card-wrapper__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.preview-btn-group {
  display: flex;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}

.preview-style-btn {
  padding: 8px 12px;
  border-radius: 8px;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.preview-style-btn:hover {
  color: #495057;
  background: #ffffff;
  text-decoration: none;
}

.preview-style-btn.active {
  background: hsl(var(--main));
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Card Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.card-grid .v--card {
  max-width: none;
  width: 100%;
}

.card-item {
  transition: all 0.3s ease;
}

.card-item:hover {
  transform: translateY(-4px);
}

/* Card Avatar */
.card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(var(--main)) 0%, hsl(var(--main)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-avatar__icon {
  color: #ffffff;
  font-size: 20px;
}

/* Status Badge */
.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge--active {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.status-badge--inactive {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Card Number and Expiry */
.card-number {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: #495057;
}

.expiry-date {
  font-weight: 500;
  color: #6c757d;
}

/* Empty State */
.empty-state {
  padding: 40px 20px;
}

.empty-state__icon {
  opacity: 0.5;
}

.empty-state__title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.empty-state__text {
  font-size: 14px;
  margin-bottom: 0;
}

/* Card List Table */
.card-list-table {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}

.card-list-table .table {
  margin: 0;
  border: none;
}

.card-list-table .table thead th {
  background: #f8f9fa;
  border: none;
  padding: 16px 20px;
  font-weight: 600;
  color: #495057;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-list-table .table tbody td {
  border: none;
  padding: 20px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f3f4;
}

.card-list-table .table tbody tr:hover {
  background: #f8f9fa;
}

/* Card Details Section */
.card-details-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.v-card-details {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

/* Card Statistics Grid */
.card-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.stat-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: hsl(var(--main));
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.stat-card--balance .stat-card__icon {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.stat-card--limit .stat-card__icon {
  background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
}

.stat-card--spent .stat-card__icon {
  background: linear-gradient(135deg, #fd7e14 0%, #e83e8c 100%);
}

.stat-card--status .stat-card__icon {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.stat-card__content {
  flex: 1;
}

.stat-card__value {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 4px 0;
}

.stat-card__label {
  font-size: 12px;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Card Information Sections */
.card-info-section {
  margin-bottom: 24px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f3f4;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: #e9ecef;
}

.info-label {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

/* Address Card */
.address-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e9ecef;
}

.address-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #495057;
}

.address-item:last-child {
  margin-bottom: 0;
}

.address-item i {
  width: 16px;
  color: #6c757d;
  flex-shrink: 0;
}

/* Card Issue Form */
.card-issue-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.form-section {
  margin-bottom: 32px;
}

.form-section__title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f3f4;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  font-size: 14px;
}

.form--control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form--control:focus {
  outline: none;
  border-color: hsl(var(--main));
  box-shadow: 0 0 0 3px rgba(var(--main-rgb), 0.1);
}

.form--control:invalid {
  border-color: #dc3545;
}

/* Recipient Tabs */
.recipient-tabs {
  margin-bottom: 24px;
}

.tab-buttons {
  display: flex;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 20px;
}

.tab-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: #6c757d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-btn:hover {
  color: #495057;
  background: #ffffff;
}

.tab-btn.active {
  background: hsl(var(--main));
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

/* Payment Options */
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.payment-option {
  position: relative;
}

.payment-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}

.payment-label:hover {
  border-color: hsl(var(--main));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.payment-radio:checked + .payment-label {
  border-color: hsl(var(--main));
  background: rgba(var(--main-rgb), 0.05);
}

.payment-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(var(--main)) 0%, hsl(var(--main)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  flex-shrink: 0;
}

.payment-info {
  flex: 1;
}

.payment-info h6 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 4px 0;
}

.payment-info p {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 8px 0;
}

.payment-info small {
  font-size: 12px;
  color: #28a745;
  font-weight: 600;
}

/* Gateway Selection */
.gateway-selection {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.gateway-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
}

/* Payment Method Selection */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.payment-item {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  position: relative;
}

.payment-item:hover {
  border-color: hsl(var(--main));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.payment-item__radio:checked + .payment-item {
  border-color: hsl(var(--main));
  background: rgba(var(--main-rgb), 0.05);
}

.payment-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.payment-item__name {
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.payment-item__thumb {
  margin-left: auto;
}

.payment-item__thumb-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

/* Form Actions */
.form-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e9ecef;
}

.form-text {
  display: block;
  font-size: 12px;
  color: #6c757d;
  margin-top: 4px;
}

.country-select {
  min-width: 80px;
  flex-shrink: 0;
}

/* Fee Information */
.fee-info {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e9ecef;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.fee-item:last-child {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px solid #dee2e6;
  font-weight: 600;
}

.fee-label {
  font-size: 14px;
  color: #6c757d;
}

.fee-value {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

.fee-item:last-child .fee-value {
  color: hsl(var(--main));
  font-size: 16px;
}

/* Card Summary Sidebar */
.card-summary {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  overflow: hidden;
  position: sticky;
  top: 20px;
}

.summary-header {
  background: linear-gradient(135deg, hsl(var(--main)), hsl(var(--main)) 100%);
  color: white;
  padding: 20px;
}

.summary-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.summary-content {
  padding: 24px;
}

.card-preview {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.fee-breakdown {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e9ecef;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.fee-item:last-child {
  margin-bottom: 0;
}

.fee-divider {
  height: 1px;
  background: #dee2e6;
  margin: 16px 0;
}

.fee-total {
  padding-top: 12px;
  border-top: 2px solid #dee2e6;
  font-weight: 600;
}

.fee-total .fee-value {
  color: hsl(var(--main));
  font-size: 18px;
  font-weight: 700;
}

.payment-summary {
  margin-top: 20px;
  padding: 16px;
  background: #e8f5e8;
  border-radius: 12px;
  border: 1px solid #c3e6c3;
}

.payment-method-display {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #2d5a2d;
  margin-bottom: 8px;
}

.wallet-balance {
  font-size: 14px;
}

/* Form Section Improvements */
.form-section {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}

.form-section__title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 2px solid #f8f9fa;
}

/* Tab Improvements */
.recipient-tabs {
  margin-bottom: 0;
}

.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: #f8f9fa;
  padding: 4px;
  border-radius: 12px;
}

.tab-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 500;
  color: #6c757d;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-btn.active {
  background: #fff;
  color: hsl(var(--main));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
  color: #495057;
}

.tab-content {
  min-height: 200px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form Row Improvements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form--label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

.form--control {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
}

.form--control:focus {
  border-color: hsl(var(--main));
  box-shadow: 0 0 0 3px rgba(var(--main-rgb), 0.1);
  outline: none;
}

.form-text {
  font-size: 12px;
  color: #6c757d;
  margin-top: 4px;
}

/* Input Group Improvements */
.input-group {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.input-group:focus-within {
  border-color: hsl(var(--main));
  box-shadow: 0 0 0 3px rgba(var(--main-rgb), 0.1);
}

.input-group .form--control {
  border: none;
  border-radius: 0;
  flex: 1;
}

.input-group-text {
  background: #f8f9fa;
  border: none;
  padding: 12px 16px;
  font-weight: 600;
  color: #6c757d;
  white-space: nowrap;
}

/* Payment Options Improvements */
.payment-options {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.payment-option {
  position: relative;
}

.payment-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-label {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.payment-radio:checked + .payment-label {
  border-color: hsl(var(--main));
  background: rgba(var(--main-rgb), 0.05);
  box-shadow: 0 0 0 3px rgba(var(--main-rgb), 0.1);
}

.payment-label:hover {
  border-color: #dee2e6;
  background: #f8f9fa;
}

.payment-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(var(--main)), hsl(var(--main)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 16px;
  flex-shrink: 0;
}

.payment-info h6 {
  margin: 0 0 4px 0;
  font-weight: 600;
  color: #2c3e50;
}

.payment-info p {
  margin: 0 0 4px 0;
  color: #6c757d;
  font-size: 14px;
}

.payment-info small {
  font-size: 12px;
}

/* Gateway Selection */
.gateway-selection {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.gateway-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
}

.payment-methods {
  display: grid;
  gap: 12px;
}

.payment-item {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.payment-item:hover {
  border-color: #dee2e6;
  background: #f8f9fa;
}

.payment-item__radio:checked + .payment-item {
  border-color: hsl(var(--main));
  background: rgba(var(--main-rgb), 0.05);
}

.payment-item__header {
  display: flex;
  align-items: center;
  flex: 1;
}

.payment-item__icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: hsl(var(--main));
}

.payment-item__name {
  font-weight: 500;
  color: #2c3e50;
}

.payment-item__thumb {
  width: 40px;
  height: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.payment-item__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form Actions */
.form-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .tab-buttons {
    flex-direction: column;
    gap: 4px;
  }
  
  .tab-btn {
    padding: 10px 12px;
  }
  
  .card-summary {
    position: static;
    margin-top: 24px;
  }
  
  .form-section {
    padding: 20px;
  }
  
  .summary-content {
    padding: 20px;
  }
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .card-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }
  
  .payment-options {
    grid-template-columns: 1fr;
  }
  
  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Tablets */
@media (max-width: 768px) {
  .v--card {
    height: 200px;
    padding: 20px;
    max-width: 100%;
  }
  
  .credit-card-wrapper {
    padding: 16px;
  }
  
  .credit-card-wrapper__right {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .card-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-card__icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .stat-card__value {
    font-size: 18px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
  }
  
  .card-issue-form {
    padding: 20px;
  }
  
  .tab-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .tab-btn {
    padding: 10px 12px;
  }
  
  .payment-label {
    padding: 16px;
  }
  
  .payment-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .address-card {
    padding: 16px;
  }
  
  .card-list-table .table thead th {
    padding: 12px 16px;
    font-size: 12px;
  }
  
  .card-list-table .table tbody td {
    padding: 16px;
  }
  
  .card-avatar {
    width: 40px;
    height: 40px;
  }
  
  .card-avatar__icon {
    font-size: 16px;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .v--card {
    height: 180px;
    padding: 16px;
  }
  
  .v--card__number {
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .v--card__brand {
    font-size: 16px;
  }
  
  .v--card__name {
    font-size: 14px;
  }
  
  .v--card__expiry,
  .v--card__cvc,
  .v--card__pin {
    font-size: 11px;
  }
  
  .credit-card-wrapper {
    padding: 12px;
  }
  
  .credit-card-wrapper__title {
    font-size: 20px;
  }
  
  .card-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-card {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .stat-card__icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .stat-card__value {
    font-size: 16px;
  }
  
  .stat-card__label {
    font-size: 11px;
  }
  
  .card-issue-form {
    padding: 16px;
  }
  
  .form-section__title {
    font-size: 16px;
  }
  
  .form--control {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .form--label {
    font-size: 13px;
  }
  
  .payment-label {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .payment-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .payment-info h6 {
    font-size: 14px;
  }
  
  .payment-info p {
    font-size: 12px;
  }
  
  .gateway-selection {
    padding: 16px;
  }
  
  .gateway-title {
    font-size: 14px;
  }
  
  .payment-item {
    padding: 16px;
  }
  
  .payment-item__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .payment-item__thumb {
    margin-left: 0;
    margin-top: 8px;
  }
  
  .payment-item__thumb-img {
    width: 32px;
    height: 32px;
  }
  
  .info-item {
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .info-label {
    font-size: 11px;
  }
  
  .info-value {
    font-size: 13px;
  }
  
  .address-card {
    padding: 12px;
  }
  
  .address-item {
    font-size: 13px;
  }
  
  .address-item i {
    width: 14px;
  }
  
  .card-list-table .table thead th {
    padding: 10px 12px;
    font-size: 11px;
  }
  
  .card-list-table .table tbody td {
    padding: 12px;
  }
  
  .card-avatar {
    width: 36px;
    height: 36px;
  }
  
  .card-avatar__icon {
    font-size: 14px;
  }
  
  .status-badge {
    padding: 3px 8px;
    font-size: 10px;
  }
  
  .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .btn--sm {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  .empty-state {
    padding: 20px 16px;
  }
  
  .empty-state__icon {
    margin-bottom: 16px;
  }
  
  .empty-state__title {
    font-size: 18px;
  }
  
  .empty-state__text {
    font-size: 13px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .v--card {
    height: 160px;
    padding: 12px;
  }
  
  .v--card__number {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  
  .v--card__brand {
    font-size: 14px;
  }
  
  .v--card__name {
    font-size: 13px;
  }
  
  .credit-card-wrapper {
    padding: 8px;
  }
  
  .credit-card-wrapper__title {
    font-size: 18px;
  }
  
  .card-issue-form {
    padding: 12px;
  }
  
  .form--control {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .payment-label {
    padding: 10px;
  }
  
  .payment-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .stat-card {
    padding: 10px;
  }
  
  .stat-card__icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .stat-card__value {
    font-size: 14px;
  }
  
  .info-item {
    padding: 8px 10px;
  }
  
  .address-card {
    padding: 10px;
  }
  
  .card-list-table .table thead th {
    padding: 8px 10px;
    font-size: 10px;
  }
  
  .card-list-table .table tbody td {
    padding: 10px;
  }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .v--card {
    height: 160px;
    padding: 16px;
  }
  
  .card-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .stat-card {
    padding: 12px;
  }
  
  .stat-card__value {
    font-size: 16px;
  }
  
  .stat-card__label {
    font-size: 10px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .v--card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .stat-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .payment-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .v--card:hover {
    transform: none;
  }
  
  .stat-card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-up {
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left {
  animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right {
  animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in {
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Enhanced Card Animations */
.v--card {
  animation: cardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered Animation for Card Lists */
.card-item:nth-child(1) { animation-delay: 0.1s; }
.card-item:nth-child(2) { animation-delay: 0.2s; }
.card-item:nth-child(3) { animation-delay: 0.3s; }
.card-item:nth-child(4) { animation-delay: 0.4s; }
.card-item:nth-child(5) { animation-delay: 0.5s; }
.card-item:nth-child(6) { animation-delay: 0.6s; }

/* Hover Animations */
.stat-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
  transform: translateX(8px);
  background: #e9ecef;
}

/* Button Animations */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Form Field Animations */
.form--control {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form--control:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tab Animation */
.tab-pane {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Payment Option Animations */
.payment-option {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-option:hover {
  transform: translateY(-4px);
}

/* Status Badge Animation */
.status-badge {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-badge:hover {
  transform: scale(1.05);
}

/* Card Avatar Animation */
.card-avatar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-avatar:hover {
  transform: rotate(5deg) scale(1.1);
}

/* Pulse Animation for Loading States */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Shake Animation for Errors */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Loading States */
.card-loading {
  position: relative;
  overflow: hidden;
}

.card-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}