@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #fdf8f3;
  --cream-dark: #f0e6d3;
  --brown: #6b4f3a;
  --brown-light: #c8986e;
  --brown-pale: #e8d5c0;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --shadow: 0 4px 24px rgba(107, 79, 58, 0.10);
  --shadow-hover: 0 8px 40px rgba(107, 79, 58, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── NAV ─────────────────────────────────────── */
nav {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(107,79,58,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.3px;
}

.logo-text span {
  color: var(--brown-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--brown);
  background: var(--cream-dark);
}

.nav-cta {
  background: var(--brown) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
}

.nav-cta:hover {
  background: #5a4030 !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #3d2a1e 0%, #6b4f3a 50%, #9a7050 100%);
  color: var(--white);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: italic;
  color: var(--brown-pale);
}

.hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--white);
  color: var(--brown);
}

.btn-primary:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-brown {
  background: var(--brown);
  color: var(--white);
}

.btn-brown:hover {
  background: #5a4030;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn-phone {
  background: var(--cream-dark);
  color: var(--brown);
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
}

.btn-phone:hover {
  background: var(--brown-pale);
  transform: translateY(-2px);
}

/* ── STATS ───────────────────────────────────── */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 0;
}

.stat-item {
  padding: 20px;
  border-right: 1px solid var(--cream-dark);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

/* ── SECTION TITLES ──────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--brown);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-header p {
  color: var(--gray);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── LISTING CARDS ───────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Kart: fotoğraf her zaman solda, bilgi her zaman sağda */
.card {
  display: flex;
  flex-direction: row;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(107,79,58,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  background: var(--white);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(107,79,58,0.15);
}

/* ── Sol: Fotoğraf ── */
.card-img {
  width: 130px;
  min-width: 130px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-dark), var(--brown-pale));
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-img img { transform: scale(1.06); }

.card-no-img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  opacity: 0.4;
}

.card-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(20,10,4,0.65);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  line-height: 1.3;
}

.card-badge.pomeranian { background: rgba(110,50,140,0.70); }

.card-new {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e74c3c;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ── Sağ: Bilgi ── */
.card-body {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  min-width: 0;
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.meta-chip {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.meta-chip svg { flex-shrink: 0; }
.meta-dot { display: none; }

.card-location {
  font-size: 11px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 3px;
}

.card-location span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  margin-top: 2px;
}

.card-contact-btn:hover { background: var(--whatsapp-dark); }

/* ── BREEDS SECTION ──────────────────────────── */
.breeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.breed-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.breed-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.breed-card:hover img { transform: scale(1.06); }

.breed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,8,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.breed-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.breed-desc {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
}

.breed-count {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

/* ── HOW IT WORKS ────────────────────────────── */
.how-bg {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 2px;
  background: var(--cream-dark);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  border: 4px solid var(--cream);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ── FILTERS ─────────────────────────────────── */
.filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.filters-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-select {
  appearance: none;
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b4f3a' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  padding: 10px 36px 10px 14px;
  font-size: 14px;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  min-width: 140px;
  transition: border-color 0.2s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--brown-light);
}

.search-input {
  flex: 1;
  min-width: 200px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  padding: 10px 14px 10px 40px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
}

.search-input:focus {
  outline: none;
  border-color: var(--brown-light);
}

.results-count {
  margin-left: auto;
  font-size: 14px;
  color: var(--gray);
  white-space: nowrap;
}

/* ── FORM ────────────────────────────────────── */
.form-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.form-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-page .subtitle {
  color: var(--gray);
  margin-bottom: 48px;
  font-size: 16px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--brown);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group label span {
  color: #e74c3c;
}

.form-control {
  width: 100%;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--cream);
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--brown-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,152,110,0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  background: var(--cream);
}

.radio-label:has(input:checked),
.radio-label.checked {
  border-color: var(--brown-light);
  background: #fdf3e8;
  color: var(--brown);
  font-weight: 500;
}

.radio-label input { display: none; }

.img-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.img-preview-item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.img-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-preview-item .remove-img {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.add-img-btn {
  aspect-ratio: 4/3;
  border: 2px dashed var(--cream-dark);
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: var(--gray);
  font-size: 13px;
  transition: all 0.2s;
}

.add-img-btn:hover {
  border-color: var(--brown-light);
  color: var(--brown);
  background: #fdf3e8;
}

.form-submit {
  text-align: right;
  padding-top: 8px;
}

.form-submit .btn {
  font-size: 16px;
  padding: 16px 40px;
}

/* ── DETAIL PAGE ─────────────────────────────── */
.detail-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--brown-light);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-main {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.gallery-thumb.active { border-color: var(--brown); }

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  position: sticky;
  top: 120px;
}

.detail-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.detail-badge {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--brown);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--dark);
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-dark);
}

.detail-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--dark);
}

.detail-chip strong {
  color: var(--brown);
  font-weight: 600;
}

.detail-contact-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btns .btn {
  justify-content: center;
  width: 100%;
  font-size: 16px;
  padding: 16px;
}

.detail-desc {
  margin-top: 40px;
}

.detail-desc h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.detail-desc p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 16px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  background: var(--cream-dark);
  color: var(--brown);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

/* ── EMPTY STATE ─────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--gray);
}

.empty-state .icon { font-size: 64px; margin-bottom: 20px; }
.empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 10px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: #2a1e17;
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: var(--brown-light); }

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  opacity: 0.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--brown-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.5;
}

/* ── TOAST ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { border-left: 4px solid var(--whatsapp); }
.toast.error { border-left: 4px solid #e74c3c; }

/* ── PAGE HEADER ─────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #3d2a1e 0%, #6b4f3a 100%);
  padding: 56px 24px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  opacity: 0.8;
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}

/* ── UPLOAD ZONE ─────────────────────────────── */
.upload-zone {
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}

.upload-zone.drag-over {
  border-color: var(--brown-light);
  background: #fdf3e8;
}

.upload-placeholder {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}

.upload-placeholder:hover { background: #fdf3e8; }

.upload-icon {
  width: 64px;
  height: 64px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 4px;
}

.upload-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.upload-sub {
  font-size: 14px;
  color: var(--gray);
}

.upload-hint {
  font-size: 12px;
  color: var(--brown-light);
  background: var(--cream-dark);
  padding: 5px 14px;
  border-radius: 100px;
  margin-top: 4px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
}

.preview-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-dark);
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.preview-item.main-photo { border-color: var(--brown); }

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-item .remove-preview {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.preview-item .remove-preview:hover { background: rgba(231,76,60,0.85); }

.preview-item .main-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: var(--brown);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.upload-footer {
  padding: 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.add-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  color: var(--brown);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.add-more-btn:hover {
  border-color: var(--brown-light);
  background: #fdf3e8;
}

.upload-count {
  font-size: 13px;
  color: var(--gray);
}

.compress-note {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

@media (max-width: 640px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .upload-placeholder { padding: 36px 16px; }
}

/* ── NO IMAGE PLACEHOLDER ────────────────────── */
.no-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0e6d3, #e8d5c0);
  color: var(--brown-light);
  font-size: 48px;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .breeds-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-info { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; gap: 8px; }
  .card { grid-template-columns: 100px 1fr; min-height: 100px; }
  .card-body { padding: 10px 12px; }
  .card-title { font-size: 13px; }
  .meta-chip { font-size: 11px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-card { padding: 24px 20px; }
}
