:root {
  --bg-cream: #fdfbf7;
  --accent-gold: #d48a37;
  --accent-gold-hover: #b8752c;
  --text-dark: #2c3e50;
  --text-light: #5c6b7a;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --primary-font: "Inter", sans-serif;
  --heading-font: "Playfair Display", serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: var(--heading-font);
  color: var(--text-dark);
}

p {
  color: var(--text-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1.05rem;
  font-family: var(--primary-font);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 138, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 138, 55, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--white);
}

/* Nav */
nav {
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}

.logo span {
  color: var(--accent-gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: 
    linear-gradient(rgba(253, 251, 247, 0.6), rgba(253, 251, 247, 0.75)),
    url("hero_bg.png") center/cover no-repeat;
  min-height: 70vh;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(3px); /* subtle, professional blur */
  transform: scale(1.05); /* scale up slightly to hide blurred edges */
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero h2 {
  font-size: 1.6rem;
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero p {
  max-width: 650px;
  font-size: 1.15rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Dogs Section */
.dogs-section {
  padding: 6rem 5%;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  padding: 12px 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--primary-font);
  color: var(--text-light);
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-gold);
  color: var(--white);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 15px rgba(212, 138, 55, 0.25);
}

/* Grid */
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.dog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.dog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.photo-slot {
  width: 100%;
  height: 280px;
  background-color: #f8f9fa;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  color: #a0aab5;
  transition: var(--transition);
}

.dog-card:hover .photo-slot {
  border-color: var(--accent-gold);
  background-color: #fff9f2;
  color: var(--accent-gold);
}

.photo-slot svg {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  fill: currentColor;
}

/* Image styling for when real images are added */
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  border-radius: 6px;
}

/* Show image if src is not empty - JS will handle this if needed, or CSS */
.photo-slot img[src]:not([src=""]) {
  display: block;
  z-index: 5;
}

.deposit-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #27ae60;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
  z-index: 10;
  letter-spacing: 0.5px;
}

.dog-info {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dog-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gender-badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--primary-font);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gender-m {
  background: #edf5ff;
  color: #3498db;
}
.gender-f {
  background: #fff0f5;
  color: #e84393;
}

.dog-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
  background: #fdfbf7;
  padding: 15px;
  border-radius: 8px;
}

.dog-details span {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #eee;
  padding-bottom: 6px;
}

.dog-details span:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.dog-card .btn {
  width: 100%;
  margin-top: auto;
}

/* How it works */
.steps-section {
  padding: 6rem 5%;
  background-color: var(--white);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step-card {
  padding: 2.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(212, 138, 55, 0.15);
  color: var(--accent-gold);
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Order Form */
.order-section {
  padding: 6rem 5%;
  background-color: #f8f6f0;
}

.form-container {
  max-width: 850px;
  margin: 0 auto;
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.8rem;
}
.form-row {
  display: flex;
  gap: 2rem;
}
.form-row > * {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--primary-font);
  font-size: 1rem;
  background: #fdfdfd;
  transition: var(--transition);
  color: var(--text-dark);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 138, 55, 0.1);
}

.radio-group {
  display: flex;
  gap: 2.5rem;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
}

input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-gold);
}

.calc-box {
  background: rgba(212, 138, 55, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem 0;
  text-align: center;
  border: 2px dashed rgba(212, 138, 55, 0.3);
}

.calc-amount {
  font-size: 3rem;
  color: var(--accent-gold);
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 0.5rem 0;
}

/* Delivery */
.delivery-section {
  padding: 6rem 5%;
  background: var(--white);
  text-align: center;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.badge-card {
  background: var(--bg-cream);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 1.1rem;
}

.badge-card svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
}

/* Payment */
.payment-section {
  padding: 6rem 5%;
  background: #f8f6f0;
  text-align: center;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.pay-card {
  background: var(--white);
  padding: 1.2rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  transition: var(--transition);
}

.pay-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.pay-card span {
  font-size: 1.5rem;
}

.pay-card {
  cursor: pointer;
  position: relative;
}

.pay-card.selected {
  border-color: var(--accent-gold);
  background-color: #fefcf5;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pay-card.selected::after {
  content: "✓";
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-gold);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.payment-message {
  margin: 2rem auto 0;
  max-width: 600px;
  padding: 1rem 1.5rem;
  background-color: #fdfbf7;
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

/* Health Guarantee */
.health-section {
  padding: 5rem 5%;
  background-color: var(--bg-cream);
  text-align: center;
}
.health-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent-gold);
}
.health-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.health-container h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.health-container p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 5%;
  background-color: var(--bg-cream);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-card h4 {
  color: var(--text-dark);
  font-weight: 600;
}

/* FAQ */
.faq-section {
  padding: 6rem 5%;
  background-color: var(--white);
  text-align: center;
}
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
}
.faq-item {
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fdfbf7;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #f4f0e6;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 300px;
  border-top: 1px solid #eaeaea;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 5rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  color: #fff;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-grid p {
  color: #aaa;
  margin-top: 1rem;
  line-height: 1.8;
}

.footer-links h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-family: var(--primary-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.social a:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
  font-size: 0.9rem;
}

/* About Us */
.about-section {
  padding: 6rem 5%;
  background-color: var(--white);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.about-image {
  flex: 1;
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-text {
  flex: 1;
}
.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  nav {
    padding: 1rem 5%;
  }
  .form-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  .about-container {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  .about-text h2 {
    text-align: center !important;
  }
  .form-container {
    padding: 2.5rem 1.5rem;
  }
  
  /* Mobile Menu Sidebar Overlay */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 2rem;
    text-align: left;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.1rem;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.8rem;
  }
  .hamburger {
    display: block;
    z-index: 1000;
    transition: var(--transition);
  }
  .hamburger:hover {
    color: var(--accent-gold);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 6rem 5% 5rem;
    min-height: 60vh;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .dogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .dog-card {
    padding: 8px;
    border-radius: 8px;
  }
  .photo-slot {
    height: 140px;
    margin-bottom: 8px;
    border-radius: 6px;
  }
  .photo-slot img {
    border-radius: 4px;
  }
  .deposit-badge {
    top: -8px;
    right: -8px;
    padding: 4px 10px;
    font-size: 0.7rem;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.25);
  }
  .dog-info {
    padding: 0 2px;
  }
  .dog-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .gender-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
  }
  .dog-details {
    padding: 8px;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 0.75rem;
  }
  .dog-details span {
    padding-bottom: 3px;
  }
  .price {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  .dog-card .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 30px;
  }
  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }
  .payment-grid {
    grid-template-columns: 1fr;
  }
  .confirm-grid {
    flex-direction: column;
  }
  .step-card {
    padding: 1.8rem 1.2rem;
  }
  .badge-card {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  .pay-card {
    width: 100%;
    justify-content: center;
  }
  .health-container {
    padding: 1.8rem 1.2rem;
  }
  .testimonial-card {
    padding: 1.8rem 1.2rem;
  }
  .wa-widget-container {
    bottom: 15px;
    right: 15px;
  }
  .wa-message-popup {
    width: 280px;
  }
}

/* WhatsApp Widget */
.wa-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
.wa-float-btn {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.wa-float-btn svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}
.wa-message-popup {
  background: white;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
}
.wa-message-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-message-header {
  background: #075e54;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wa-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-avatar {
  width: 40px;
  height: 40px;
  background: #e5ddd5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.wa-agent strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--primary-font);
}
.wa-agent span {
  font-size: 0.8rem;
  color: #e0e0e0;
}
.wa-message-header button {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
}
.wa-message-header button:hover {
  opacity: 1;
}
.wa-message-body {
  padding: 20px 15px;
  font-size: 0.95rem;
  color: #444;
  background: #fdfbf7;
  line-height: 1.5;
  position: relative;
}

/* intl-tel-input fix */
.iti {
  width: 100%;
}

/* Tom Select Theme Overrides */
.ts-control {
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 15px 18px !important;
  background-color: #fdfdfd !important;
  box-shadow: none !important;
  font-family: var(--primary-font) !important;
  font-size: 1rem !important;
  box-sizing: border-box !important;
  color: var(--text-dark) !important;
  transition: var(--transition) !important;
}
.ts-control.focus {
  border-color: var(--accent-gold) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 4px rgba(212, 138, 55, 0.1) !important;
}
.ts-control input {
  width: auto !important;
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
}
.ts-dropdown {
  border-radius: 8px !important;
  border: 1px solid var(--accent-gold) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  font-family: var(--primary-font) !important;
}
.ts-dropdown .active {
  background-color: var(--accent-gold) !important;
  color: white !important;
}

/* Order Form Options */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  background: transparent !important;
  padding: 0 !important;
}
.confirm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  background: transparent !important;
  padding: 0 !important;
}
.method-card {
  background: #fdfdfd;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: var(--transition);
  flex: 1;
  cursor: pointer;
}
.method-card:hover {
  border-color: var(--accent-gold);
  background: var(--white);
}
.btn-whatsapp {
  width: 100%;
  font-size: 1.2rem;
  padding: 18px;
  border-radius: 8px;
  background-color: #25d366;
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--primary-font);
  font-weight: 600;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Search Focus Styles */
#puppySearch:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 12px rgba(184, 150, 87, 0.15) !important;
}

/* Shimmer Pulse Skeletons */
.skeleton-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.skeleton-photo {
  width: 100%;
  height: 280px;
  background: linear-gradient(90deg, #f3f3f3 25%, #fafafa 50%, #f3f3f3 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.skeleton-line {
  height: 18px;
  background: linear-gradient(90deg, #f3f3f3 25%, #fafafa 50%, #f3f3f3 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.skeleton-line.first { width: 70%; }
.skeleton-line.second { width: 45%; }
.skeleton-line.third { width: 100%; height: 48px; border-radius: 50px; margin-top: auto; }

@keyframes loading-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Premium Micro-Interactions & Scroll Alignment */
section[id] {
  scroll-margin-top: 90px;
}

.photo-slot img {
  transition: transform 0.5s ease-out !important;
}

.dog-card:hover .photo-slot img {
  transform: scale(1.05) !important;
}

.btn {
  transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.btn:active {
  transform: scale(0.96) !important;
}

/* Search Bar Interactions */
#puppySearch:focus + .search-icon-svg {
  stroke: var(--accent-gold) !important;
}
