/* ZEO Cashback - Frontend Styles */

/* Floating Wallet Button - Styles managed inline in class-zeo-frontend.php */

/* My Wallet Page */
.zeo-my-wallet {
  max-width: 1000px;
  margin: 0 auto;
}

.zeo-wallet-balance-section {
  margin: 30px 0;
}

.zeo-balance-card {
  background: #534dfa;
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.zeo-balance-card h3 {
  margin: 0;
  font-size: 22px;
  opacity: 0.9;
  font-weight: 500;
}

.zeo-balance-amount {
  font-size: 48px;
  font-weight: 700;
  margin: 0px 0;
}

.zeo-balance-info {
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
}

.zeo-wallet-transactions {
  margin-top: 40px;
}

.zeo-wallet-transactions h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.zeo-no-transactions {
  text-align: center;
  padding: 40px;
  color: #7f8c8d;
  font-size: 16px;
}

.zeo-transactions-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.zeo-transactions-table thead th {
  background: #f8f9fa;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #2c3e50;
  border: none;
}

.zeo-transactions-table tbody tr {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.zeo-transactions-table tbody tr:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.zeo-transactions-table tbody td {
  padding: 15px;
  border: none;
  vertical-align: top;
}

.zeo-type-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.zeo-type-positive {
  background: #d4edda;
  color: #155724;
}

.zeo-type-negative {
  background: #f8d7da;
  color: #721c24;
}

.zeo-amount-column,
.zeo-balance-column {
  text-align: right;
  font-weight: 600;
}

.zeo-amount-positive {
  color: #27ae60;
  font-size: 16px;
}

.zeo-amount-negative {
  color: #c0392b;
  font-size: 16px;
}

/* Order Cashback Display */
.zeo-order-cashback,
.zeo-order-payment-info {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #667eea;
}

.zeo-order-cashback h2,
.zeo-order-payment-info h2 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 20px;
}

.zeo-order-cashback table,
.zeo-order-payment-info table {
  width: 100%;
  margin-top: 15px;
}

.zeo-order-cashback th,
.zeo-order-payment-info th {
  text-align: left;
  padding: 10px;
  background: #fff;
  font-weight: 600;
  width: 40%;
}

.zeo-order-cashback td,
.zeo-order-payment-info td {
  padding: 10px;
  background: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .zeo-floating-wallet {
    bottom: 20px;
    right: 15px;
  }

  .zeo-wallet-button {
    padding: 10px 15px;
  }

  .zeo-wallet-icon {
    font-size: 20px;
    margin-right: 8px;
  }

  .zeo-wallet-label {
    font-size: 10px;
  }

  .zeo-wallet-amount {
    font-size: 14px;
  }

  .zeo-balance-card {
    padding: 25px;
  }

  .zeo-balance-amount {
    font-size: 36px;
  }

  .zeo-transactions-table {
    border: none;
  }

  .zeo-transactions-table thead {
    display: none;
  }

  .zeo-transactions-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
  }

  .zeo-transactions-table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left !important;
  }

  .zeo-transactions-table tbody td:last-child {
    border-bottom: none;
  }

  .zeo-transactions-table tbody td:before {
    content: attr(data-title);
    font-weight: 600;
    color: #2c3e50;
  }

  .zeo-amount-column,
  .zeo-balance-column {
    text-align: right !important;
  }
}

@media (max-width: 480px) {
  .zeo-wallet-text {
    display: none;
  }

  .zeo-wallet-button {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .zeo-wallet-icon {
    margin: 0;
  }
}
