/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600&family=DM+Serif+Display&display=swap');

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: hsl(40, 20%, 98%);
  --foreground: hsl(160, 10%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(160, 10%, 15%);
  --primary: hsl(145, 45%, 32%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(40, 30%, 95%);
  --secondary-foreground: hsl(160, 10%, 15%);
  --muted: hsl(40, 15%, 94%);
  --muted-foreground: hsl(160, 5%, 45%);
  --accent: hsl(24, 85%, 52%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 72%, 51%);
  --border: hsl(40, 15%, 88%);
  --success: hsl(145, 55%, 42%);
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==================== */
/* NAVBAR */
/* ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  height: 80px;
}

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

.navbar-logo {
  height: 100%;
  padding: 10px 0px;
}

.navbar-logo img {
    height: inherit;
}

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

/* Toggle (hidden by default) */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

/* Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.navbar-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}

.navbar-link:hover {
  background-color: var(--secondary);
}

.navbar-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

/* Dropdown toggle checkbox (hidden) */
.dropdown-toggle {
  display: none;
}

/* Dropdown (desktop: hover) */
.navbar-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.navbar-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-dropdown:hover .navbar-link-dropdown svg {
  transform: rotate(180deg);
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--foreground);
  transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: var(--secondary);
}

/* Mobile styles */
@media (max-width: 767px) {
  .navbar {
    height: 60px;
  }

  .navbar-logo {
    padding: 6px 0px;
  }

  .nav-toggle-label {
    display: flex;
  }
  
  .navbar-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background-color: hsl(0, 0%, 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid hsl(0, 0%, 90%);
  }
  
  .nav-toggle:checked ~ .navbar-menu {
    transform: translateX(0);
  }
  
  /* Hamburger animation */
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .navbar-link {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
  
  /* Dropdown always visible on mobile */
  .navbar-dropdown {
    position: static;
  }
  
  /* Dropdown hidden by default on mobile */
  .dropdown-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    background-color: hsl(0, 0%, 96%);
    border-radius: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  
  /* Show dropdown when checkbox is checked */
  .dropdown-toggle:checked ~ .dropdown-menu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-toggle:checked ~ .navbar-link-dropdown svg {
    transform: rotate(180deg);
  }
  
  .dropdown-menu li a {
    padding-left: 2rem;
  }
  
  /* Disable hover behavior on mobile */
  .navbar-dropdown:hover .dropdown-menu {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
  }
  
  .dropdown-toggle:checked ~ .dropdown-menu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
  }
}

/* Body padding to account for fixed navbar */
body {
  padding-top: 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  width: fit-content;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: hsl(24, 85%, 45%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.badge-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Cards */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

/* Stars */
.stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.star-empty {
  color: var(--border);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
  background-color: var(--secondary);
  padding: 4rem 0;
}

hero h1 {
  font-weight: 400;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero-content {
    align-items: center;
    text-align: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-content .badge{
  width: fit-content;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--foreground);
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-rating span {
  margin-left: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-box {
  position: relative;
  width: 100%;
  max-width: 24rem;
  aspect-ratio: 1;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-box img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.hero-image-badge {
  position: absolute;
  bottom: .9rem;
  right: .9rem;
}

/* ==================== */
/* OVERVIEW SECTION */
/* ==================== */
.overview {
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .overview {
    padding: 5rem 0 6rem;
  }
}

.section-title {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.overview-content {
  max-width: 48rem;
  margin: 0 auto;
}

.overview-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight-card {
  text-align: center;
  padding: 1.5rem 1rem;
  transition: box-shadow 0.2s ease;
}

.highlight-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
}

.highlight-icon.icon-accent {
  color: var(--accent);
}

.highlight-icon.icon-primary {
  color: var(--primary);
}

.highlight-icon.icon-muted {
  color: var(--muted-foreground);
}

.highlight-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.highlight-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cost-benefit {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  color: var(--success);
  font-size: 1rem;
}

/* ==================== */
/* PROS & CONS SECTION */
/* ==================== */
.pros-cons {
  background-color: var(--secondary);
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .pros-cons {
    padding: 5rem 0;
  }
}

.pros-cons-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-card {
  border-color: hsla(145, 45%, 32%, 0.3);
}

.cons-card {
  border-color: hsla(0, 72%, 51%, 0.3);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.card-title-pros {
  color: var(--primary);
}

.card-title-cons {
  color: var(--destructive);
}

.card-title svg {
  width: 1.5rem;
  height: 1.5rem;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.list-item-pros svg {
  color: var(--primary);
}

.list-item-cons svg {
  color: var(--destructive);
}

.cta-container {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ==================== */
/* SPECS SECTION */
/* ==================== */
.specs {
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .specs {
    padding: 5rem 0 6rem;
  }
}

.specs-table-container {
  max-width: 42rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 1rem 1.5rem;
  text-align: left;
}

.specs-table th {
  background-color: var(--secondary);
  font-weight: 500;
  color: var(--muted-foreground);
  width: 40%;
}

.specs-table td {
  background-color: var(--card);
  font-weight: 600;
}

.specs-table tr:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* ==================== */
/* GALLERY SECTION */
/* ==================== */
.gallery {
  background-color: var(--secondary);
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .gallery {
    padding: 5rem 0;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.gallery-caption {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 0.5rem;
}

/* Lightbox */
.lightbox-radio {
  display: none;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
}

.lightbox-content img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.lightbox-nav svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.lightbox-prev {
  left: -4rem;
}

.lightbox-next {
  right: -4rem;
}

.lightbox-caption {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* Show lightbox when corresponding radio is checked */
#lightbox-1:checked ~ .lightbox-1,
#lightbox-2:checked ~ .lightbox-2,
#lightbox-3:checked ~ .lightbox-3,
#lightbox-4:checked ~ .lightbox-4 {
  opacity: 1;
  visibility: visible;
}

/* Mobile adjustments for lightbox */
@media (max-width: 767px) {
  .lightbox-prev {
    left: 0.5rem;
  }
  
  .lightbox-next {
    right: 0.5rem;
  }
  
  .lightbox-close {
    top: -2.5rem;
    right: 0.5rem;
  }
  
  .lightbox-content img {
    max-width: 95vw;
    max-height: 70vh;
  }
}

/* ==================== */
/* DETAILED REVIEW */
/* ==================== */
.detailed-review {
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .detailed-review {
    padding: 5rem 0 6rem;
  }
}

.review-content {
  max-width: 48rem;
  margin: 0 auto;
}

.review-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.review-icon {
  width: 3rem;
  height: 3rem;
  background-color: hsla(145, 45%, 32%, 0.1);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.review-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.review-item p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ==================== */
/* FAQ SECTION */
/* ==================== */
.faq {
  background-color: var(--secondary);
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .faq {
    padding: 5rem 0;
  }
}

.faq-list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.faq-question svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==================== */
/* FINAL CTA SECTION */
/* ==================== */
.final-cta {
  padding: 5rem 0 7rem;
  background-color: var(--secondary);
}

.final-cta h2 {
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}

@media (min-width: 768px) {
  .final-cta {
    padding: 6rem 0 8rem;
  }
}

.final-cta-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 2.25rem;
  }
}

.personal-opinion {    
  padding: 5rem 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

.personal-opinion li {    
  font-size: 1.125rem;
  color: var(--muted-foreground);
  padding: .5rem 0;
}

.final-cta p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.final-cta .btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* ====================================== */
/* Personal Opinion / User Review Section */
/* ====================================== */

.user-review {
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .user-review {
    padding: 5rem 0 6rem;
  }
}

.user-review-content {
  max-width: 48rem;
  margin: 0 auto;
}

.user-review-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.user-review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.user-review-avatar {
  width: 3rem;
  height: 3rem;
  background-color: hsla(145, 45%, 32%, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-review-avatar svg {
  width: 1.5rem;
  height: 1.5rem;
}

.user-review-meta strong {
  display: block;
  font-size: 1rem;
  color: var(--foreground);
}

.user-review-meta span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.user-review-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.user-review-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.user-review-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.user-review-verdict {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary);
}

.user-review-verdict svg {
  width: 1.5rem;
  height: 1.5rem;
}


/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 2rem 0;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.footer-logo img {
  display: initial;
}

.footer-text {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ==================== */
/* SVG ICONS (inline) */
/* ==================== */
.icon {
  display: inline-block;
  vertical-align: middle;
}
