/* BTP Donation Page — base structural styles.
   Colors, fonts, spacing set here are DEFAULT fallbacks only.
   Elementor's Style tab controls override these per-instance. */

.btp-don-wrapper * {
  box-sizing: border-box;
}

.btp-don-wrapper {
  width: 100%;
  background: #fdf9f2;
  font-family: 'Poppins', sans-serif;
  padding: 60px;
}

.btp-don-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
}

.btp-don-grid--single {
  grid-template-columns: 1fr;
}

.btp-don-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Entrance ---- */

.btp-don-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}

.btp-don-animate.btp-don-in-view {
  opacity: 1;
  transform: translateY(0);
}

.elementor-editor-active .btp-don-animate {
  opacity: 1 !important;
  transform: none !important;
}

.btp-don-card {
  position: relative;
  background: linear-gradient(135deg, #f3ecf7 0%, #ece3f2 100%);
  border: 1px solid #e3d3ee;
  border-radius: 18px;
  padding: 36px 30px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.btp-don-card:hover {
  box-shadow: 0 16px 34px rgba(61, 26, 91, 0.1);
}

.btp-don-card--form {
  background: #fdfaf3;
  border: 1px solid #eeddb8;
}

.btp-don-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: #3d1a5b;
  text-align: center;
  margin: 0 0 8px;
  position: relative;
  z-index: 2;
}

.btp-don-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100px;
  margin: 0 auto 26px;
  position: relative;
  z-index: 2;
}

.btp-don-divider .btp-don-line {
  flex: 1;
  height: 1px;
  background: #c99b3a;
}

.btp-don-divider svg {
  width: 12px;
  height: 12px;
  fill: #c99b3a;
  flex-shrink: 0;
}

/* ---- Decorative accent ---- */

.btp-don-accent {
  height: auto;
  opacity: 0.9;
}

/* ---- Icon list (Your Gift Helps Provide) ---- */

.btp-don-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.btp-don-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(201,155,58,0.25);
  transition: transform 0.25s ease;
}

.btp-don-list li:last-child {
  border-bottom: none;
}

.btp-don-list li:hover {
  transform: translateX(4px);
}

.btp-don-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ded0ee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btp-don-list li:hover .btp-don-icon {
  transform: scale(1.08);
}

.btp-don-icon i {
  font-size: 20px;
  color: #4a1f6b;
}

.btp-don-icon svg {
  width: 22px;
  height: 22px;
  fill: #4a1f6b;
}

.btp-don-list-text {
  font-size: 14.5px;
  color: #333;
  font-weight: 500;
}

.btp-don-thankyou {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: #4a1f6b;
  text-align: center;
  margin-top: 20px;
}

/* ---- Other Ways to Give ---- */

.btp-don-card-desc {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.65;
  color: #333;
  text-align: center;
  margin: 0 0 26px;
}

.btp-don-ways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.btp-don-way {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.25s ease;
}

.btp-don-way:hover {
  transform: translateX(4px);
}

.btp-don-way-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #c99b3a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btp-don-way-icon i {
  font-size: 22px;
  color: #c99b3a;
}

.btp-don-way-icon svg {
  width: 24px;
  height: 24px;
  fill: #c99b3a;
}

.btp-don-way-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #c1832f;
  margin-bottom: 4px;
}

.btp-don-way-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #333;
}

.btp-don-together {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: #4a1f6b;
  text-align: center;
  margin-top: 26px;
}

/* ---- Make a Donation form ---- */

.btp-don-card--form form {
  position: relative;
  z-index: 2;
}

.btp-don-form-desc {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 30px;
}

.btp-don-section-label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: #3d1a5b;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.btp-don-amounts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.btp-don-amount-btn {
  padding: 14px 8px;
  border: 2px solid #c99b3a;
  border-radius: 8px;
  background: #fff;
  color: #c1832f;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btp-don-amount-btn:hover {
  transform: translateY(-2px);
}

.btp-don-amount-btn.btp-don-selected {
  background: #3d1a5b;
  border-color: #3d1a5b;
  color: #fff;
}

.btp-don-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.btp-don-fields--full {
  grid-template-columns: 1fr;
}

.btp-don-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e3d3b8;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.btp-don-input:focus {
  outline: none;
  border-color: #c99b3a;
  box-shadow: 0 0 0 3px rgba(201,155,58,0.15);
}

.btp-don-radio-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.btp-don-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14.5px;
  color: #333;
  font-weight: 500;
}

.btp-don-radio input {
  width: 18px;
  height: 18px;
  accent-color: #c99b3a;
  cursor: pointer;
}

.btp-don-pay-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.btp-don-pay-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid #e3d3b8;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  flex-wrap: wrap;
}

.btp-don-pay-option:hover {
  background: #fbf5e8;
}

.btp-don-pay-option.btp-don-selected {
  border-color: #c99b3a;
  background: #fdf6e8;
}

.btp-don-pay-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: #333;
}

.btp-don-pay-left input {
  width: 18px;
  height: 18px;
  accent-color: #c99b3a;
}

.btp-don-card-logos {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.btp-don-card-logos span {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 4px;
  background: #eee;
  color: #444;
}

.btp-don-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 26px 0;
  position: relative;
  z-index: 2;
}

.btp-don-checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #c99b3a;
  cursor: pointer;
  flex-shrink: 0;
}

.btp-don-checkbox-row label {
  font-size: 13.5px;
  color: #333;
  line-height: 1.5;
}

.btp-don-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #c99b3a;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 2;
}

.btp-don-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}

.btp-don-submit svg {
  width: 20px;
  height: 20px;
}

.btp-don-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.btp-don-secure svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---- Responsive ---- */

@media (max-width: 1000px) {
  .btp-don-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .btp-don-wrapper {
    padding: 40px 20px;
  }
  .btp-don-card {
    padding: 28px 20px;
  }
  .btp-don-amounts {
    grid-template-columns: repeat(3, 1fr);
  }
  .btp-don-fields {
    grid-template-columns: 1fr;
  }
  .btp-don-radio-row {
    flex-direction: column;
    gap: 12px;
  }
  .btp-don-accent {
    width: 130px !important;
  }
}
