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

:root {
  --primary: #1a1a2e;
  --accent: #e6a756;
  --accent-light: #f0c987;
  --accent-dark: #c98b3f;
  --bg: #faf9f7;
  --bg-card: #ffffff;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --text-muted: #9a9a9a;
  --border: #e8e4df;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─── */
header {
  background: var(--primary);
  color: white;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo h1 span {
  color: var(--accent);
}

.tagline {
  font-size: 0.75rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 2px;
}

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

nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
}

nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius-sm);
  min-width: 220px;
  padding: 8px;
  padding-top: 12px;
  margin-top: 4px;
  z-index: 1000;
  border: 1px solid var(--border);
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeDown 0.2s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  color: var(--text);
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--accent-dark);
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 60px;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  max-width: 800px;
}

.hero h2 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.hero .btn {
  margin-top: 28px;
}

/* ─── Main Content ─── */
main {
  min-height: calc(100vh - 300px);
  padding: 48px 0;
}

.content-section {
  background: var(--bg-card);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.content-section h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.content-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
  border-radius: 2px;
}

.content-section h3 {
  color: var(--primary);
  margin: 32px 0 14px;
  font-size: 1.35rem;
  font-weight: 600;
}

.content-section p {
  margin-bottom: 16px;
  line-height: 1.85;
  color: var(--text-light);
  font-size: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ─── Feature Grid (Home) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── Breed Showcase ─── */
.breed-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.breed-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  transition: var(--transition);
}

.breed-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.breed-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.breed-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.breed-card-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.breed-card-overlay p {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ─── Image Gallery Row ─── */
.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.image-row img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.image-row img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* ─── News Items ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.news-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.news-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.news-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-item-content {
  padding: 28px;
}

.news-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 600;
}

.news-date {
  color: var(--accent-dark);
  font-size: 0.82rem;
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-item p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── Dog Cards ─── */
.dog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.dog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

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

.dog-card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.dog-card-body {
  padding: 24px;
}

.dog-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.dog-info {
  color: var(--text-light);
  margin-bottom: 6px;
  font-size: 0.9rem;
  display: flex;
  gap: 8px;
}

.dog-info strong {
  color: var(--text);
  min-width: 70px;
}

.dog-card-body > p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 12px;
}

.dog-card-accent {
  border-left: 4px solid var(--accent);
}

/* ─── Tag / Badge ─── */
.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
}

/* ─── Included List ─── */
.included-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.included-list li::before {
  content: "✓";
  color: var(--accent-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Process Steps ─── */
.process-steps {
  counter-reset: step;
  list-style: none;
  margin-top: 24px;
}

.process-steps li {
  counter-increment: step;
  position: relative;
  padding: 20px 20px 20px 64px;
  margin-bottom: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ─── Achievements ─── */
.achievements-list {
  list-style: none;
  margin-top: 20px;
}

.achievements-list li {
  padding: 14px 20px;
  border-left: 3px solid var(--accent);
  margin-bottom: 10px;
  background: var(--bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.achievements-list li strong {
  color: var(--primary);
}

/* ─── Contact Form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin: 40px 0;
}

.contact-info-card {
  background: var(--primary);
  color: white;
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.08;
}

.contact-info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: white;
}

.contact-detail {
  margin-bottom: 24px;
}

.contact-detail-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-detail p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-form {
  max-width: none;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 167, 86, 0.15);
  background: white;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ─── FAQ ─── */
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
  font-family: "Inter", sans-serif;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 167, 86, 0.35);
}

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

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

.btn-light {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

/* ─── Footer ─── */
footer {
  background: var(--primary);
  color: white;
  padding: 56px 0 24px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ─── Utility Classes ─── */
.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 16px;
}
.mt-2 {
  margin-top: 32px;
}
.mt-3 {
  margin-top: 48px;
}
.mb-1 {
  margin-bottom: 16px;
}
.mb-2 {
  margin-bottom: 32px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .breed-showcase {
    grid-template-columns: 1fr;
  }
  .breed-card {
    height: 320px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header > .container {
    flex-direction: column;
    gap: 12px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  nav a {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 380px;
    border-radius: var(--radius-sm);
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .content-section {
    padding: 28px 20px;
  }

  .content-section h2 {
    font-size: 1.7rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .image-row {
    grid-template-columns: 1fr;
  }

  .dog-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 4px;
    border: none;
    transform: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    animation: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========================================
   Cookie Consent Banner & Modal
   ======================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d4e 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.cookie-text p {
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-actions .btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.cookie-actions .btn-primary:hover {
  background: #f0b976;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 167, 86, 0.3);
}

.cookie-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
}

.cookie-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cookie-actions .btn-text {
  background: transparent;
  color: white;
  text-decoration: underline;
  opacity: 0.8;
}

.cookie-actions .btn-text:hover {
  opacity: 1;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 2px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--primary);
}

.close-modal {
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: #f5f5f5;
  color: var(--primary);
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent);
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category-header h4 {
  margin: 0;
  font-size: 18px;
  color: var(--primary);
}

.cookie-category p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--accent);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.toggle-switch.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.toggle-switch.disabled .toggle-slider {
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 20px 24px;
  border-top: 2px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-modal-footer .btn {
  padding: 12px 32px;
  border: none;
  border-radius: var(--border-radius);
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-footer .btn:hover {
  background: #f0b976;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 167, 86, 0.3);
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 20px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-icon {
    font-size: 36px;
  }

  .cookie-text {
    min-width: 100%;
  }

  .cookie-text h3 {
    font-size: 18px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-modal-header h2 {
    font-size: 20px;
  }

  .cookie-modal-body {
    padding: 16px;
  }

  .cookie-category {
    padding: 16px;
  }

  .cookie-category-header {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ========================================
   Content Cards (for Privacy Policy, etc.)
   ======================================== */

.content-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.content-card h2 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

.content-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.content-card h4 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.content-card p {
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.content-card ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-card ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--text);
}

.content-card strong {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .content-card {
    padding: 20px;
  }

  .content-card h2 {
    font-size: 20px;
  }

  .content-card h3 {
    font-size: 18px;
  }

  .content-card h4 {
    font-size: 16px;
  }
}
