/**
 * Payment Method Tabs Styling
 */

#add_payment_method #payment .payment-inner, .woocommerce-cart #payment .payment-inner, .woocommerce-checkout #payment .payment-inner {
	padding: 16px !important;
}

.papw-payment-tabs {
  margin-bottom: 20px;
}

.papw-tabs-nav {
  display: flex;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
  border-bottom: 1px solid #d3ced2;
}

.papw-tab {
  padding: 12px 18px;
  background-color: #f8f8f8;
  border: 1px solid #d3ced2;
  border-bottom: none;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  transition: all 0.2s ease;
  color: #444;
}

.papw-tab:hover {
  background-color: #f0f0f0;
  color: #000;
}

.papw-tab.active {
  background-color: #fff;
  color: #2c2d33;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.papw-tab.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #fff;
}

/* Style payment section when using tabs */
#payment.papw-tabs-processed {
  position: relative;
}

#payment.papw-tabs-processed .wc_payment_methods {
  padding-top: 0 !important;
}

/* Fix for payment methods visibility */
#payment.papw-tabs-processed ul.wc_payment_methods li.wc_payment_method {
  display: none !important;
}

#payment.papw-tabs-processed ul.wc_payment_methods li.wc_payment_method[style*="display: block"] {
  display: block !important;
}

/* Ensure visible payment methods stay visible */
.payment-method-visible {
  display: block !important;
}

/* Transition for payment methods */
#payment ul.payment_methods>li {
  transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
  .papw-tabs-nav {
    flex-wrap: wrap;
    border-bottom: none;
  }

  .papw-tab {
    flex-grow: 1;
    text-align: center;
    margin-bottom: 5px;
    border: 1px solid #d3ced2;
    border-radius: 5px;
  }

  .papw-tab.active {
    background-color: #f7f7f7;
    border-left: 3px solid #2c2d33;
  }

  .papw-tab.active:after {
    display: none;
  }
}

/* Adjust image size in payment methods */
.wc_payment_method label img {
  height: 14px;
  width: auto;
  vertical-align: middle;
  margin-left: 8px;
}

/* Animation for tab content */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#payment.papw-tabs-processed li.wc_payment_method {
  animation: fadeIn 0.3s ease;
}
/**
 * Payment Method Tabs Styling
 */
.papw-payment-tabs {
  margin-bottom: 20px;
}

.papw-tabs-nav {
  display: flex;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
  border-bottom: 1px solid #d3ced2;
}

.papw-tab {
  padding: 12px 18px;
  background-color: #f8f8f8;
  border: 1px solid #d3ced2;
  border-bottom: none;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  transition: all 0.2s ease;
  color: #444;
}

.papw-tab:hover {
  background-color: #f0f0f0;
  color: #000;
}

.papw-tab.active {
  background-color: #fff;
  color: #2c2d33;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.papw-tab.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #fff;
}

/* Style payment section when using tabs */
#payment.papw-tabs-processed {
  position: relative;
}

#payment.papw-tabs-processed .wc_payment_methods {
  padding-top: 0 !important;
}

/* Fix for payment methods visibility */
#payment.papw-tabs-processed ul.wc_payment_methods li.wc_payment_method {
  display: none;
  /* Hidden by default */
}

/* Ensure payment methods are visible when shown */
#payment.papw-tabs-processed ul.wc_payment_methods li.wc_payment_method[style*="display: block"],
#payment.papw-tabs-processed ul.wc_payment_methods li.wc_payment_method[style*="display:block"] {
  display: block !important;
}

/* Transition for payment methods */
#payment ul.payment_methods>li {
  transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
  .papw-tabs-nav {
    flex-wrap: wrap;
    border-bottom: none;
  }

  .papw-tab {
    flex-grow: 1;
    text-align: center;
    margin-bottom: 5px;
    border: 1px solid #d3ced2;
    border-radius: 5px;
  }

  .papw-tab.active {
    background-color: #f7f7f7;
    border-left: 3px solid #2c2d33;
  }

  .papw-tab.active:after {
    display: none;
  }
}

/* Adjust image size in payment methods */
.wc_payment_method label img {
  height: 14px;
  width: auto;
  vertical-align: middle;
  margin-left: 8px;
}

/* Animation for tab content */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#payment.papw-tabs-processed li.wc_payment_method {
  animation: fadeIn 0.3s ease;
}
