:root{
  --bg:#ECE6D8;           /* soft beige background */
  --paper:#F6F1E6;        /* card/bevel beige */
  --ink:#3E4C3E;          /* deep sage text */
  --muted:#6E7A6C;        /* muted sage */
  --accent:#C9B48F;       /* khaki button base */
  --accent-ink:#2F3C2F;
  --accent-dark:#A69168;  /* button hover */
  --ring:#D9CDB2;         /* borders */
  --success:#3E5D46;      /* dark green for CTAs */
  --success-dark:#344C3A;
  --radius:18px;
  --shadow:0 8px 24px rgba(30, 40, 30, .08);
  --max:1120px;
}
html,body{margin:0;background:var(--bg);color:var(--ink);font-family:var(--gh-font-body, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif);} 
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.brand{display:flex;flex-direction:column;align-items:center;gap:.5rem;padding:22px 0}
.brand img{width:92px;height:92px;object-fit:contain}
.brand .phone{font-weight:600;font-size:.98rem;color:var(--muted)}
.tagline{font-size:.95rem;color:var(--muted);letter-spacing:.02em}
/* Original Nav */
.nav-wrap{position:sticky;top:0;z-index:40;background:rgba(246,241,230,.9);backdrop-filter:saturate(160%) blur(6px);border-top:1px solid var(--ring);border-bottom:1px solid var(--ring)}
nav{display:flex;align-items:center;justify-content:center;gap:12px;padding:10px 0}
.nav-links{display:flex;gap:18px;flex-wrap:wrap; justify-content:center;}
.nav-links a{padding:8px 10px;border-radius:999px;font-size:.96rem}
.nav-links a:hover{background:rgba(62,76,62,.06)}
.cta{background:var(--success);color:#fff;border:1px solid rgba(0,0,0,.05);padding:10px 16px;border-radius:999px;font-weight:600;box-shadow:var(--shadow)}
.cta:hover{background:var(--success-dark)}
/* Hero */
.hero{
    padding: 120px 20px;
  background-image: url('http://atlantadoodlesandpoodles.com/wp-content/uploads/2018/03/our_process.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero .panel{background:rgba(246, 241, 230, 0.95);border:1px solid var(--ring);border-radius:var(--radius);box-shadow:var(--shadow);padding:48px 26px;text-align:center}
h1{font-family:var(--gh-font-heading, "Cormorant Garamond"), serif;font-weight:700;margin:0 0 12px;font-size:clamp(36px,5.2vw,60px);line-height:1.05;letter-spacing:.01em;color:var(--success)}
.hero p{margin:0 auto 22px;max-width:700px;font-size:1.08rem;color:var(--ink)}
.hero .actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:4px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border-radius:999px;padding:12px 24px;font-weight:600;border:1px solid var(--ring);background:linear-gradient(#ffffff, #F2EBDD);box-shadow:var(--shadow);min-width:180px; text-align:center;}
.btn:hover{filter:saturate(105%) brightness(1.02)}
.btn.primary{background:var(--accent);color:var(--accent-ink);border-color:rgba(0,0,0,.06)}
.btn.primary:hover{background:var(--accent-dark)}
.ghost{background:transparent;border:1px solid var(--ring)}
.ghost:hover{background:#efe9da}
/* Sections */
section{scroll-margin-top:88px}
.section{padding:48px 20px}
.section h2{font-family:var(--gh-font-heading, "Cormorant Garamond"), serif;font-size:clamp(28px,4vw,42px);margin:0 0 12px 0;color:var(--success); text-align:center;}
.section .lead{color:var(--muted);max-width:760px; text-align:center; margin: 0 auto 24px;}
/* Puppies grid */
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:24px}
.card{grid-column:span 4;background:var(--paper);border:1px solid var(--ring);border-radius:22px;overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column}
.card .thumb{aspect-ratio:4/3;background:#ddd;object-fit:cover;width:100%;}
.card .body{padding:16px 16px 18px; display: flex; flex-direction: column; flex-grow: 1;}
.card .body > p { flex-grow: 1; }
.price{font-weight:700;margin-top:6px}
.pill{display:inline-block;background:#e8e2d2;border:1px solid var(--ring);padding:4px 10px;border-radius:999px;font-size:.9rem;color:var(--muted)}
.card .actions{padding:16px;border-top:1px solid var(--ring);margin-top:auto;display:flex;justify-content:flex-end}
/* Split features */
.split{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:center;text-align:center;}
.split > div { display:flex; flex-direction:column; align-items:center; justify-content:center; }
.split .lead { text-align:center; }
.callout{background:#E1D8C5; color: var(--ink); font-weight: 500; border:1px solid var(--ring);padding:18px;border-radius:16px; margin-top:1rem; font-size: .95rem;}
/* Testimonials */
.testi{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.quote{background:var(--paper);border:1px solid var(--ring);border-radius:18px;padding:24px}
.quote p{margin:0 0 14px}
.quote .name{font-weight:600;color:var(--success)}
/* New Adoption Process Section */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
  align-items: center;
}
.process-step {
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gh-font-heading, "Cormorant Garamond"), serif;
  font-size: 1.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.process-step h3 {
  font-family: var(--gh-font-heading, 'Cormorant Garamond'), serif;
  margin: 0 0 8px;
  font-size: 1.8rem;
  color: var(--ink);
}
.process-step p {
    margin: 0 0 16px;
}
.process-step .btn, .process-step .pill {
    margin-top: auto;
}
/* FAQ */
.faq-container { max-width: 800px; margin: 24px auto 0; }
details{background:var(--paper);border:1px solid var(--ring);border-radius:14px;padding:14px 16px;text-align:left;}
details+details{margin-top:12px}
summary{cursor:pointer;font-weight:600}
/* Footer */
footer{background:#2f3c2f;color:#e9e6dc;margin-top:48px;padding:48px 20px;text-align:center;}
footer a{color:#f4f0e6;transition: color 0.2s;}
footer a:hover { color: var(--accent); }
.foot-wrap{display:flex; flex-direction:column; align-items:center; gap:28px;}
.foot-nav{display:flex; gap:20px;flex-wrap:wrap; justify-content:center;}
.social-icons { display: flex; gap: 24px; margin-top:8px; }
.social-icons a svg { width: 24px; height: 24px; fill: #f4f0e6; transition: fill 0.2s; }
.social-icons a:hover svg { fill: var(--accent); }
.small{font-size:.95rem;color:#8a8372}
/* --- DESKTOP HEADER STYLES --- */
.desktop-header-container {
  background: var(--bg);
  padding: 12px 0;
}
.desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left, .header-right {
  flex: 1 0 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.header-right {
  justify-content: flex-end;
}
.desktop-header .brand {
  padding: 0;
 }
.header-left .btn.ghost {
  padding: 8px 16px;
  min-width: auto;
}
/* --- MOBILE NAVIGATION STYLES --- */
.mobile-nav-wrapper { display: none; }
.mobile-nav-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: rgba(246, 241, 230, .95);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--ring);
    height: 64px;
}
.nav-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    z-index: 2;
}
.nav-icon-btn svg { width: 28px; height: 28px; }
.mobile-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.mobile-logo img { height: 48px; width: auto; }
.mobile-apply-bar {
    background: var(--bg);
    text-align: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ring);
}
.mobile-apply-bar .cta {
    display: inline-block;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--paper);
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 15px rgba(0,0,0,0.1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--ring);
  font-family: var(--gh-font-heading, "Cormorant Garamond"), serif;
    font-size: 1.5rem;
    color: var(--success);
    height: 64px;
    box-sizing: border-box;
}
.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    flex-grow: 1;
    overflow-y: auto;
}
.mobile-menu .nav-links a {
    padding: 14px 24px;
    font-size: 1.1rem;
    border-radius: 0;
}
.mobile-menu .nav-links a:hover {
    background: rgba(62,76,62,.04);
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 60, 47, 0.6);
    z-index: 110;
    display: none;
    place-items: center;
    backdrop-filter: blur(4px);
}
.popup-content {
    background: var(--paper);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 90%;
    max-width: 340px;
}
.popup-content h3 {
    margin: 0 0 8px;
  font-family: var(--gh-font-heading, "Cormorant Garamond"), serif;
    font-size: 1.8rem;
}
.popup-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--muted);
    padding: 6px;
}
.popup-close-btn svg { width: 24px; height: 24px; }
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 60, 47, 0.4);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
/* Responsive */
@media (min-width: 980px) {
    .process-steps {
        flex-direction: row;
        align-items: stretch; /* Make steps equal height */
        justify-content: center;
    }
    .process-step {
        max-width: 340px;
        flex-grow: 1;
    }
}
@media (max-width: 980px){
  .desktop-only { display: none !important; }
  .mobile-nav-wrapper { display: block; }
  section { scroll-margin-top: 130px; }
  .card{grid-column:span 6}
  .split{grid-template-columns:1fr; text-align:center;}
  .split .lead { text-align:center; }
  .testi{grid-template-columns:1fr 1fr}
}
@media (max-width: 768px){
  .gallery-grid .card {
    grid-column: span 6;
  }
}
@media (max-width: 640px){
  .card{grid-column:span 12}
  .testi{grid-template-columns:1fr}
  .foot-wrap{grid-template-columns:1fr}
  .gallery-grid .card {
    grid-column: span 12;
  }
}
/* Ghost Editor Card Styles */
.kg-width-wide {
    grid-column: 2 / span 10;
}

.kg-width-full {
    grid-column: 1 / -1;
}

/* Enhanced Puppy Cards */
.puppy-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.new-listing-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e23b3b;
  color: #fff;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.puppy-name {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--success);
}

.puppy-description {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
  flex-grow: 1;
}

.puppy-pricing {
  margin: 0 0 20px;
  padding: 12px;
  background: rgba(62, 93, 70, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--success);
}

.price-info, .deposit-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4px 0;
}

.type-pricing {
  margin-bottom: 8px;
}

.price-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4px 0;
  padding: 2px 0;
}

.price-label, .deposit-label, .type-label {
  font-weight: 600;
  color: var(--ink);
}

/* Starting At Pricing (for cards) */
.price-starting, .deposit-starting {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 8px;
  border-left: 4px solid var(--success);
  margin-bottom: 8px;
}

.price-starting:last-child, .deposit-starting:last-child {
  margin-bottom: 0;
}

.price-starting .price-label, .deposit-starting .deposit-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.price-starting .price-amount, .deposit-starting .deposit-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--success);
}

.price-amount, .deposit-amount, .type-amount {
  font-weight: 700;
  color: var(--success);
  font-size: 1.1rem;
}

/* Deposit Button Styling */
.deposit-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--success);
  color: white !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.deposit-button:hover {
  background: #45a049;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(62, 93, 70, 0.3);
}

.deposit-button:active {
  transform: translateY(0);
}

.deposit-section {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(62, 93, 70, 0.2);
}

.deposit-button-container {
  margin-top: 12px;
  text-align: center;
}

.puppy-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 2px solid var(--ring);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.btn-outline:hover {
  border-color: var(--success);
  background: rgba(62, 93, 70, 0.05);
  color: var(--success);
}

.btn-deposit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--success);
  color: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.btn-deposit:hover {
  background: var(--success-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(30, 40, 30, .12);
}

@media (max-width: 640px) {
  .puppy-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .btn-outline, .btn-deposit {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

/* Puppy Configurator Styles */
.puppy-configurator {
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin: 32px 0;
  box-shadow: var(--shadow);
}

.puppy-configurator h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--success);
  margin: 0 0 8px 0;
  text-align: center;
}

.configurator-intro {
  color: var(--muted);
  text-align: center;
  margin: 0 0 24px 0;
  font-size: 1.1rem;
}

.type-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.puppy-type-btn {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-ink);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  min-width: 120px;
}

.puppy-type-btn:hover {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.puppy-type-btn.selected {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

.details-container {
  text-align: center;
  margin-top: 24px;
}

.pricing-breakdown {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.total-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 8px;
}

.deposit-info,
.remaining-balance {
  font-size: 1rem;
  color: var(--ink);
  margin: 4px 0;
}

.deposit-info {
  font-weight: 600;
}

.remaining-balance {
  color: var(--muted);
  font-style: italic;
}

.apply-button-container {
  margin-top: 20px;
}

.apply-button {
  background: var(--success);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.apply-button:hover {
  background: var(--success-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(62, 93, 70, 0.2);
}

/* Modal Styles */
.puppy-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

/* Wufoo Form Container - Match Modal Theme */
#wufoo-embed-container {
  background: var(--paper) !important;
  border-radius: var(--radius);
  padding: 0;
  margin: 0;
  box-shadow: none;
  overflow: hidden;
}

/* Form loading state */
.form-loading {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--muted);
  background: var(--paper);
  border-radius: var(--radius);
}

.form-loading p {
  margin: 0.5rem 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

/* Wufoo Form Customization - Full Theme Integration */
#wufoo-ztdqci30b84a3f {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
  background: var(--paper) !important;
}

/* Main form container - match modal background */
#wufoo-embed-container .wufoo-form,
#wufoo-ztdqci30b84a3f form,
#wufoo-ztdqci30b84a3f .wufoo-form,
#wufoo-ztdqci30b84a3f div[id*="public"] {
  border: none !important;
  box-shadow: none !important;
  background: var(--paper) !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: inherit !important;
}

/* Force background on all Wufoo containers */
#wufoo-ztdqci30b84a3f,
#wufoo-ztdqci30b84a3f *:not(input):not(textarea):not(select):not(button) {
  background: var(--paper) !important;
}

/* Hide Wufoo branding and unwanted elements */
#wufoo-ztdqci30b84a3f .powered,
#wufoo-ztdqci30b84a3f .btTxt,
#wufoo-ztdqci30b84a3f .info h2,
#wufoo-ztdqci30b84a3f .info .description,
#wufoo-ztdqci30b84a3f .header,
#wufoo-embed-container .wufoo-form .info h2,
#wufoo-embed-container .wufoo-form .info .description {
  display: none !important;
}

#wufoo-embed-container .wufoo-form .info,
#wufoo-ztdqci30b84a3f .info {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* Style Wufoo input fields to match site theme */
#wufoo-embed-container input[type="text"],
#wufoo-embed-container input[type="email"],
#wufoo-embed-container input[type="tel"],
#wufoo-embed-container input[type="number"],
#wufoo-embed-container textarea,
#wufoo-embed-container select,
#wufoo-ztdqci30b84a3f input[type="text"],
#wufoo-ztdqci30b84a3f input[type="email"], 
#wufoo-ztdqci30b84a3f input[type="tel"],
#wufoo-ztdqci30b84a3f input[type="number"],
#wufoo-ztdqci30b84a3f textarea,
#wufoo-ztdqci30b84a3f select {
  border: 1px solid var(--ring) !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-size: 1rem !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
  background: #fff !important;
  color: var(--ink) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 2px 4px rgba(30, 40, 30, 0.04) !important;
}

#wufoo-embed-container input:focus,
#wufoo-embed-container textarea:focus,
#wufoo-embed-container select:focus,
#wufoo-ztdqci30b84a3f input:focus,
#wufoo-ztdqci30b84a3f textarea:focus,
#wufoo-ztdqci30b84a3f select:focus {
  border-color: var(--success) !important;
  box-shadow: 0 0 0 2px rgba(62, 93, 70, 0.1), 0 2px 8px rgba(30, 40, 30, 0.08) !important;
  outline: none !important;
  background: #fff !important;
}

/* Style Wufoo submit button to match site CTA buttons */
#wufoo-embed-container input[type="submit"],
#wufoo-ztdqci30b84a3f input[type="submit"] {
  background: var(--success) !important;
  color: white !important;
  border: 1px solid rgba(0,0,0,.05) !important;
  padding: 12px 24px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: var(--shadow) !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
  margin-top: 1.5rem !important;
  min-width: 180px !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#wufoo-embed-container input[type="submit"]:hover,
#wufoo-ztdqci30b84a3f input[type="submit"]:hover {
  background: var(--success-dark) !important;
  filter: saturate(105%) brightness(1.02) !important;
  transform: none !important;
}

/* Additional Wufoo branding removal */
#wufoo-embed-container .wufoo-form .info .powered,
#wufoo-embed-container .wufoo-form .buttons .btTxt {
  display: none !important;
}

/* Style labels to match site theme */
#wufoo-embed-container label,
#wufoo-ztdqci30b84a3f label {
  color: var(--ink) !important;
  font-weight: 500 !important;
  font-size: 0.96rem !important;
  margin-bottom: 8px !important;
  display: block !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
  letter-spacing: 0.01em !important;
}

/* Required field markers - match site's accent color */
#wufoo-embed-container .req,
#wufoo-ztdqci30b84a3f .req {
  color: var(--success) !important;
  font-weight: 600 !important;
}

/* Error styling */
#wufoo-ztdqci30b84a3f .error {
  color: #dc3545 !important;
  font-size: 0.875rem !important;
  margin-top: 4px !important;
  font-family: inherit !important;
}

/* Field layout improvements - better spacing */
#wufoo-ztdqci30b84a3f .section {
  margin-bottom: 2rem !important;
  background: var(--paper) !important;
}

#wufoo-ztdqci30b84a3f .field {
  margin-bottom: 1.2rem !important;
  background: var(--paper) !important;
}

/* Form sections styling */
#wufoo-ztdqci30b84a3f li {
  background: var(--paper) !important;
  margin-bottom: 1.2rem !important;
  list-style: none !important;
}

#wufoo-ztdqci30b84a3f ul {
  background: var(--paper) !important;
  margin: 0 !important;
  padding: 20px !important;
}

/* Radio and checkbox styling */
#wufoo-ztdqci30b84a3f input[type="radio"],
#wufoo-ztdqci30b84a3f input[type="checkbox"] {
  width: auto !important;
  margin-right: 8px !important;
  background: white !important;
}

.modal-content {
  background-color: var(--paper);
  margin: 2% auto;
  padding: 0;
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--ring);
  display: flex;
  justify-content: flex-end;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--ink);
  background: var(--ring);
}

.modal-body {
  padding: 20px;
}

.application-header {
  text-align: center;
  margin-bottom: 20px;
}

.application-header h3 {
  font-family: var(--gh-font-heading, "Cormorant Garamond"), serif;
  color: var(--success);
  margin: 0 0 8px 0;
  font-size: 1.8rem;
}

.application-header p {
  color: var(--muted);
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .puppy-configurator {
    padding: 20px 16px;
    margin: 20px 0;
  }
  
  .puppy-configurator h3 {
    font-size: 1.6rem;
  }
  
  .configurator-intro {
    font-size: 1rem;
  }
  
  .type-selector {
    flex-direction: column;
    align-items: center;
  }
  
  .puppy-type-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .pricing-breakdown {
    padding: 16px;
  }
  
  .total-price {
    font-size: 1.2rem;
  }
  
  .apply-button {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
  }
  
  .modal-content {
    width: 95%;
    margin: 5% auto;
  }
}