.dog-container {
  color: #fff;
  max-width: 900px;
  margin: auto;
}

.dog-header {
  text-align: center;
  margin-bottom: 30px;
}

.dog-header h1 {
    color: #fff!important;
    font-family: "Cormorant Garamond", Sans-serif;
    font-size: 80px;
    font-weight: 700;
    text-shadow: 3px 3px 11px rgba(0, 0, 0, 0.3);
}

.dog-row,
.dog-footer {
  display: flex;
  justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.dog-bar {
  width: 100%;
  height: 54px;
  background: var(--dog-bar-bg, #f1c40f);
  margin: 15px 0;
}

.dog-progress {
  height: 100%;
  background: var(--dog-progress-color, #e74c3c);
  width: var(--dog-progress-width, 0%);
}

.dog-buttons {
  text-align: center;
  margin-top: 30px;
}

.dog-buttons button,
.dog-see-more {
  margin: 10px;
  padding: 12px 24px;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
}

.dog-modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dog-modal.active {
  display: flex;
  opacity: 1;
}

.dog-modal-content {
  position: relative;
  max-width: 650px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}

.dog-modal.active .dog-modal-content {
  transform: scale(1);
  opacity: 1;
}

.dog-close {
  position: absolute!important;
  top: 12px!important;
  right: 16px!important;
  font-size: 22px!important;
  line-height: 1!important;
  color: #666!important;
  cursor: pointer!important;
  border: 0!important;
  background: transparent!important;
}

.dog-close:hover {
  color: #000;
}

.dog-modal-content .wpforms-field,
.dog-modal-content .wpforms-field-container {
  width: 100% !important;
}

.dog-modal-content .wpforms-field input,
.dog-modal-content .wpforms-field textarea,
.dog-modal-content .wpforms-field select {
  font-family: inherit;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  outline: none;
}

.dog-modal-content input:focus,
.dog-modal-content textarea:focus,
.dog-modal-content select:focus {
  border-color: #2d6cdf;
  box-shadow: 0 0 0 2px rgba(45, 108, 223, 0.1);
  outline: none;
}

.dog-modal-content .wpforms-field-checkbox li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dog-modal-content .wpforms-submit {
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
}

.dog-donor-wrapper {
  margin-top: 40px;
  text-align: center;
}

.dog-donor-list {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dog-donor-item {
  text-align: left;
}

.dog-donor-title {
  font-size: 22px;
  font-weight: 700;
  color: #2f4f5f;
  margin-bottom: 6px;
}

.dog-donor-desc {
  font-size: 16px;
  color: #5f7a86;
  font-style: italic;
  line-height: 1.5;
}

.dog-see-more {
  background: #8fa3ad;
  color: #fff;
  font-size: 16px;
  transition: 0.2s ease;
}

.dog-see-more:hover {
  background: #6f8792;
}

.dog-see-more-wrap {
  margin-top: 50px;
}

.dog-donor-modal-content {
  max-height: 60vh;
}

.dog-modal-title {
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  margin-bottom: 30px;
  color: #2f4f5f;
}

.dog-empty {
  color: #5f7a86;
  text-align: center;
}

@media (max-width: 767px) {
	.dog-header h1 {
		font-size: 48px!important
	}	
}