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

:root {
  --bg-white: #FFFFFF;
  --bg-creme: #FAF7F2;
  --accent-rose: #F5D5CE;
  --accent-mint: #C8DCD0;
  --accent-sand: #E8DDD0;
  --text-dark: #3D2E28;
  --text-light: #6B5D54;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Dancing Script', cursive;
  
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(61, 46, 40, 0.04);
  --shadow-md: 0 12px 32px rgba(61, 46, 40, 0.06);
  --shadow-hover: 0 16px 48px rgba(61, 46, 40, 0.1);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-creme);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.handwritten {
  font-family: var(--font-accent);
  color: var(--accent-rose);
  font-size: 1.75rem;
  display: block;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.bg-white { background-color: var(--bg-white); }
.bg-creme { background-color: var(--bg-creme); }

/* Legal pages (Impressum, Datenschutz) */
.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  text-align: left;
  margin-bottom: 0.5rem;
}

.legal-content h3 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content h4 {
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.legal-content p,
.legal-content ul {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--accent-rose);
}

.legal-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.875em;
  background: var(--bg-creme);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-rose);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: #ecc0b7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-dark);
}

.btn-outline:hover {
  background-color: rgba(61, 46, 40, 0.05);
  transform: translateY(-2px);
}

.btn-icon {
  gap: 0.5rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
}

.logo svg {
  color: var(--accent-rose);
}

.logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.navbar .logo img {
  height: 40px;
  width: 40px;
}

.footer .logo img {
  height: 32px;
  width: 32px;
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.35rem;
  }
  .navbar .logo img {
    height: 38px;
    width: 38px;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 1.2rem;
    gap: 0.4rem;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

/* Announcement Banner */
.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B27A 50%, #C9A96E 100%);
  color: #2A1F1A;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

.announcement-banner a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.announcement-banner svg {
  flex-shrink: 0;
}

.announcement-banner strong {
  font-weight: 700;
  white-space: nowrap;
}

.announcement-banner .banner-arrow {
  transition: transform 0.2s ease;
  font-size: 1.1em;
}

.announcement-banner a:hover .banner-arrow {
  transform: translateX(3px);
}

@media (max-width: 540px) {
  .announcement-banner {
    font-size: 0.78rem;
  }
  .announcement-banner a {
    padding: 0.5rem 0.6rem;
    gap: 0.4rem;
  }
  .announcement-banner .banner-arrow {
    display: none;
  }
}

.navbar {
  top: 40px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 80%;
  background-color: var(--accent-sand);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 0;
  opacity: 0.5;
  filter: blur(40px);
  animation: morph 8s ease-in-out infinite both alternate;
}

.hero-blob-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 60%;
  background-color: var(--accent-mint);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  opacity: 0.4;
  filter: blur(40px);
  animation: morph 10s ease-in-out infinite both alternate-reverse;
}

@keyframes morph {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% { border-radius: 40% 60% 50% 50% / 40% 40% 60% 50%; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text > p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge svg {
  color: var(--accent-mint);
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.45rem 0.95rem 0.45rem 0.55rem;
  background-color: #FFFFFF;
  border: 1px solid var(--accent-sand);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(61, 46, 40, 0.05);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.cert-badge img {
  height: 26px;
  width: auto;
  display: block;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -1rem;
  border: 2px dashed var(--accent-rose);
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  z-index: -1;
}

.about-text h2 {
  text-align: left;
}

.about-text .handwritten {
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.5rem 1rem;
  background-color: var(--bg-creme);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.03);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background-color: var(--bg-creme);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 0;
  flex-grow: 1;
}

.service-note {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  font-size: 0.875rem;
}

/* Why Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  aspect-ratio: 1;
  background-color: #f0ede9;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-heading);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px);
}

.gallery-note {
  text-align: center;
  font-size: 0.9375rem;
}

/* Pricing Section */
.pricing-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.pricing-table-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--bg-creme);
  transition: var(--transition);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background-color: var(--bg-creme);
}

.pricing-service {
  font-weight: 500;
}

.pricing-price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-rose);
  font-size: 1.125rem;
}

.pricing-note {
  text-align: center;
  font-style: italic;
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:nth-child(1) { background-color: var(--accent-sand); }
.testimonial-card:nth-child(2) { background-color: var(--accent-rose); }
.testimonial-card:nth-child(3) { background-color: var(--accent-mint); }

.testimonials-empty {
  margin: 3rem auto 0;
  max-width: 640px;
  padding: 3rem 2rem;
  background-color: var(--accent-sand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  color: var(--text-dark);
}

.testimonials-empty svg {
  color: var(--text-light);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.testimonials-empty .quote {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  color: var(--text-dark);
}

.stars {
  color: #ffb400;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

/* Contact Section */
.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card.whatsapp {
  border-top: 4px solid #25D366;
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-detail {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

.address-map-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.address-info h3 {
  margin-bottom: 1.5rem;
}

.address-info p {
  margin-bottom: 0.5rem;
}

.opening-hours {
  margin-top: 2rem;
}

.opening-hours h4 {
  margin-bottom: 1rem;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-color: #f0ede9;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-md);
}

/* Footer */
.footer {
  background-color: var(--accent-sand);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col .logo {
  margin-bottom: 1rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent-rose);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(61, 46, 40, 0.1);
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer-bottom a {
  margin: 0 0.5rem;
}

.footer-bottom a:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

.paw-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: rgba(61, 46, 40, 0.2);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content, .about-grid, .address-map-container {
    grid-template-columns: 1fr;
  }
  
  .hero-text {
    text-align: center;
  }

  .hero-text .hero-subtitle {
    text-align: center !important;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .features-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar .nav-links, .navbar .btn {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .features-grid, .testimonials-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  
  .mobile-menu.active {
    transform: translateX(0);
  }
  
  .mobile-menu .nav-link {
    display: block;
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-creme);
  }
  
  .mobile-menu .btn {
    display: flex;
    margin-top: 2rem;
    width: 100%;
  }
}

/* Modal & Comparison Slider */
.clickable-card {
  cursor: pointer;
  position: relative;
}

.clickable-card::after {
  content: "Vorher / Nachher ansehen";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}

.clickable-card:hover::after {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 46, 40, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-creme);
  width: 90%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem 2rem;
  position: relative;
  transform: scale(0.95);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-hover);
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--accent-rose);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.comparison-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}

.comparison-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .comparison-item img {
    aspect-ratio: 16/9;
  }
}
