/* ===================================================================
   FOOTER PAYMENT MODULE
   ================================================================= */

/* Payment section base styling */
.meloopets-footer .footer-payment {
  background: #1a3a0f;
  padding: 40px 0;
  border-top: 1px solid rgba(244, 190, 12, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

/* Decorative gradient at top */
.meloopets-footer .footer-payment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f26722 0%, #F4BE0C 50%, #4A7356 100%);
  opacity: 0.7;
}

/* Payment grid layout */
.meloopets-footer .payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section headings */
.meloopets-footer .payment-section h5,
.meloopets-footer .shipping-section h5 {
  color: #F4BE0C;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}

/* Decorative line under headings */
.meloopets-footer .payment-section h5::after,
.meloopets-footer .shipping-section h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #f26722, #F4BE0C);
}

/* Icons containers */
.meloopets-footer .payment-icons,
.meloopets-footer .shipping-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

/* Payment icon styling */
.meloopets-footer .payment-icon {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  color: #2c3e50;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(244, 190, 12, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meloopets-footer .payment-icon:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: #F4BE0C;
}

.meloopets-footer .shipping-icon {
  background: linear-gradient(135deg, #3a6b1e, #4a7c2a);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.meloopets-footer .shipping-icon:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4a7c2a, #3a6b1e);
  box-shadow: 
    0 6px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}