.pgf-header {
  margin-bottom: 18px;
}
.pgf-days h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin: 8px 0 18px 0;
}

.pgf-title {
  margin: 0 0 10px 0 !important;
  font-size: 42px !important;
  line-height: 1.1 !important;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pgf-subtitle {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.5;
  color: #4b5563;
}
.pgf-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(24, 39, 75, 0.06);
}
.pgf-header h2,
.pgf-days h3,
.pgf-recurring-builder h3 {
  margin-top: 0;
}
.pgf-notice,
.pgf-recurring-box,
.pgf-confirm-box,
.pgf-recurring-builder {
  background: #f6f9fc;
  border: 1px solid #dde7f0;
  border-radius: 14px;
  padding: 16px;
  margin: 18px 0;
}
.pgf-grid {
  display: grid;
  gap: 16px;
}
.pgf-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pgf-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pgf-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.pgf-field input,
.pgf-field select,
.pgf-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd9e3;
  border-radius: 10px;
  background: #fff;
  min-height: 46px;
  box-sizing: border-box;
}
.pgf-field textarea {
  min-height: 120px;
}
.pgf-day-card {
  border: 1px solid #e0e7ef;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
  background: #fff;
}
.pgf-day-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.pgf-day-top input[type="checkbox"],
.pgf-recurring-box input[type="checkbox"],
.pgf-confirm-box input[type="checkbox"] {
  transform: scale(1.15);
}
.pgf-day-products {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #dbe4ee;
}
.pgf-primary-btn,
.pgf-secondary-btn {
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 700;
  cursor: pointer;
}
.pgf-primary-btn {
  background: #0b5fff;
  color: #fff;
}
.pgf-secondary-btn {
  background: #eaf1ff;
  color: #0b5fff;
}
.pgf-help {
  margin-top: 0;
  color: #526170;
}
.pgf-form-response {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  display: none;
}
.pgf-form-response.success,
.pgf-form-response.error {
  display: block;
}
.pgf-form-response.success {
  background: #ebf9ef;
  color: #19673b;
  border: 1px solid #b9e3c5;
}
.pgf-form-response.error {
  background: #fff1f1;
  color: #8e1f1f;
  border: 1px solid #f2c1c1;
}
@media (max-width: 900px) {
  .pgf-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .pgf-wrapper {
    padding: 16px;
  }
  .pgf-title {
    font-size: 30px !important;
  }
  .pgf-subtitle {
    font-size: 17px;
  }
  .pgf-grid-2,
  .pgf-grid-4 {
    grid-template-columns: 1fr;
  }
  .pgf-days h3 {
    font-size: 22px;
  }
}
