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

/* --- CUSTOM CLASS-BASED RESET & DESIGN SYSTEM VARIABLES --- */

.sh-html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

.sh-body {
  margin: 0;
  padding: 0;
  background-color: hsl(240, 20%, 98%);
  color: hsl(224, 71%, 4%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  overflow-x: hidden;

  /* Theme color palettes */
  --sh-indigo-primary: hsl(248, 90%, 60%);        /* Electric Indigo */
  --sh-indigo-hover: hsl(248, 90%, 50%);
  --sh-indigo-soft: hsl(248, 90%, 96%);
  --sh-taro-primary: hsl(255, 35%, 78%);        /* Taro Lavender */
  --sh-taro-dark: hsl(255, 30%, 60%);
  --sh-taro-light: hsl(255, 35%, 95%);
  --sh-dark: hsl(224, 71%, 4%);                 /* Slate Dark */
  --sh-text-main: hsl(220, 10%, 20%);
  --sh-text-muted: hsl(215, 16%, 47%);
  --sh-white: hsl(0, 0%, 100%);
  --sh-bg-alt: hsl(240, 15%, 95%);
  --sh-border: hsl(240, 5%, 90%);
  --sh-success: hsl(142, 70%, 45%);             /* Green for Pros */
  --sh-danger: hsl(346, 84%, 61%);              /* Red for Cons */
  --sh-rating: hsl(45, 93%, 47%);               /* Warm Gold */
  
  /* Modern styling utilities */
  --sh-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --sh-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --sh-shadow-lg: 0 10px 25px -5px rgba(79, 70, 229, 0.08), 0 8px 10px -6px rgba(79, 70, 229, 0.04);
  --sh-shadow-xl: 0 20px 40px -10px rgba(79, 70, 229, 0.12), 0 10px 15px -8px rgba(79, 70, 229, 0.06);
  --sh-radius-sm: 8px;
  --sh-radius-md: 14px;
  --sh-radius-lg: 20px;
}

/* Base resets applied exclusively via classes to ensure standard layout without wildcard */
.sh-main, .sh-header, .sh-footer, .sh-section, .sh-article, .sh-aside, .sh-nav, .sh-div, .sh-ul, .sh-li, .sh-p, .sh-h1, .sh-h2, .sh-h3, .sh-h4, .sh-a, .sh-img, .sh-btn, .sh-span, .sh-table, .sh-thead, .sh-tbody, .sh-tr, .sh-th, .sh-td {
  box-sizing: border-box;
}

/* --- TYPOGRAPHY CLASSES --- */

.sh-h1 {
  font-family: 'Outfit', sans-serif;
  color: hsl(224, 71%, 4%);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

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

.sh-h2 {
  font-family: 'Outfit', sans-serif;
  color: hsl(224, 71%, 4%);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.25;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.sh-h3 {
  font-family: 'Outfit', sans-serif;
  color: hsl(224, 71%, 4%);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.35;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.sh-h4 {
  font-family: 'Outfit', sans-serif;
  color: hsl(224, 71%, 4%);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.sh-p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: hsl(220, 10%, 20%);
  font-size: 1.05rem;
  line-height: 1.75;
}

.sh-strong {
  font-weight: 600;
  color: hsl(224, 71%, 4%);
}

.sh-text-muted {
  color: hsl(215, 16%, 47%);
}

.sh-text-center {
  text-align: center;
}

.sh-span {
  display: inline;
}

.sh-link {
  color: hsl(248, 90%, 60%);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sh-link:hover {
  color: hsl(248, 90%, 50%);
}

/* --- LIST CLASSES --- */

.sh-ul {
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.sh-li {
  margin-bottom: 0.5rem;
  color: hsl(220, 10%, 20%);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- IMAGE CLASSES --- */

.sh-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--sh-radius-sm);
}

/* --- CONTAINER & GRID LAYOUTS --- */

.sh-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sh-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .sh-layout-grid {
    grid-template-columns: 8fr 4fr;
  }
}

/* --- BUTTONS & CALLS TO ACTION --- */

.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  border-radius: var(--sh-radius-sm);
  text-align: center;
  box-shadow: var(--sh-shadow-sm);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

.sh-btn-primary {
  background: linear-gradient(135deg, hsl(248, 90%, 60%) 0%, hsl(255, 35%, 78%) 100%);
  color: hsl(0, 0%, 100%);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.sh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.45);
  background: linear-gradient(135deg, hsl(248, 90%, 55%) 0%, hsl(255, 30%, 70%) 100%);
}

.sh-btn-secondary {
  background-color: hsl(224, 71%, 4%);
  color: hsl(0, 0%, 100%);
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.15);
}

.sh-btn-secondary:hover {
  background-color: hsl(224, 71%, 12%);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.25);
}

.sh-btn-outline {
  background-color: transparent;
  color: hsl(248, 90%, 60%);
  border: 2px solid hsl(248, 90%, 60%);
}

.sh-btn-outline:hover {
  background-color: hsl(248, 90%, 97%);
  transform: translateY(-2px);
}

.sh-btn-block {
  display: flex;
  width: 100%;
}

/* --- HEADER & NAVIGATION --- */

.sh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sh-border);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.sh-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sh-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.65rem;
}

.sh-brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, hsl(248, 90%, 60%) 0%, hsl(255, 35%, 78%) 100%);
  border-radius: var(--sh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 100%);
  font-weight: 800;
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.sh-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: hsl(224, 71%, 4%);
  letter-spacing: -0.03em;
}

.sh-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

@media (max-width: 767px) {
  .sh-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: hsl(0, 0%, 100%);
    border-bottom: 1px solid var(--sh-border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--sh-shadow-lg);
  }
  
  .sh-nav-list.sh-nav-list-active {
    display: flex;
  }
}

.sh-nav-item {
  display: block;
}

.sh-nav-link {
  text-decoration: none;
  color: hsl(215, 16%, 30%);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.sh-nav-link:hover {
  color: hsl(248, 90%, 60%);
}

.sh-nav-link-active {
  color: hsl(248, 90%, 60%);
}

.sh-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 767px) {
  .sh-mobile-toggle {
    display: block;
  }
}

.sh-mobile-toggle-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: hsl(224, 71%, 4%);
  margin-top: 5px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* --- DISCLOSURE BANNER --- */

.sh-disclosure-banner {
  background-color: hsl(240, 15%, 95%);
  border-bottom: 1px solid var(--sh-border);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.sh-disclosure-text {
  font-size: 0.825rem;
  color: hsl(215, 16%, 47%);
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

/* --- HERO SECTION --- */

.sh-hero-section {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
  background-color: hsl(0, 0%, 100%);
  border-bottom: 1px solid var(--sh-border);
}

.sh-hero-category {
  display: inline-block;
  background-color: hsl(248, 90%, 96%);
  color: hsl(248, 90%, 60%);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 30px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.sh-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid hsl(240, 15%, 95%);
}

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

.sh-author-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid hsl(255, 35%, 78%);
}

.sh-author-name {
  font-weight: 700;
  color: hsl(220, 10%, 20%);
  font-size: 0.925rem;
}

.sh-hero-date {
  font-size: 0.9rem;
  color: hsl(215, 16%, 47%);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sh-hero-image-wrapper {
  margin-top: 2rem;
  border-radius: var(--sh-radius-md);
  overflow: hidden;
  box-shadow: var(--sh-shadow-xl);
  max-width: 100%;
  border: 1px solid var(--sh-border);
}

@media (min-width: 768px) {
  .sh-hero-image-wrapper {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.sh-hero-img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  background-color: hsl(240, 20%, 99%);
  display: block;
}

@media (min-width: 768px) {
  .sh-hero-img {
    max-height: 360px;
  }
}

/* --- EDITORIAL ARTICLE CARD --- */

.sh-article {
  background-color: hsl(0, 0%, 100%);
  border-radius: var(--sh-radius-md);
  padding: 2.25rem;
  box-shadow: var(--sh-shadow-sm);
  border: 1px solid var(--sh-border);
}

@media (max-width: 575px) {
  .sh-article {
    padding: 1.5rem;
  }
}

/* --- COMPARISON TABLE WIDGET --- */

.sh-comparison-wrapper {
  margin-top: 3rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-md);
  box-shadow: var(--sh-shadow-lg);
  background-color: hsl(0, 0%, 100%);
}

.sh-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

.sh-thead {
  background-color: hsl(240, 15%, 97%);
  border-bottom: 2px solid var(--sh-border);
}

.sh-th {
  padding: 1.25rem 1.15rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: hsl(224, 71%, 4%);
}

.sh-tr {
  border-bottom: 1px solid var(--sh-border);
  transition: background-color 0.15s ease;
}

.sh-tr:hover {
  background-color: hsl(240, 20%, 98%);
}

.sh-tr-winner {
  background-color: hsl(248, 90%, 99%);
  border-left: 4px solid hsl(248, 90%, 60%);
}

.sh-tr-winner:hover {
  background-color: hsl(248, 90%, 98%);
}

.sh-td {
  padding: 1.25rem 1.15rem;
  vertical-align: middle;
  font-size: 0.95rem;
}

.sh-table-product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sh-table-product-img {
  width: 56px;
  height: 56px;
  border-radius: var(--sh-radius-sm);
  object-fit: cover;
  border: 1px solid var(--sh-border);
}

.sh-table-product-info {
  display: flex;
  flex-direction: column;
}

.sh-table-product-name {
  font-weight: 700;
  color: hsl(224, 71%, 4%);
  font-family: 'Outfit', sans-serif;
}

.sh-table-product-brand {
  font-size: 0.8rem;
  color: var(--sh-text-muted);
  margin-top: 0.15rem;
}

.sh-winner-badge {
  background: linear-gradient(135deg, hsl(248, 90%, 60%) 0%, hsl(255, 35%, 78%) 100%);
  color: hsl(0, 0%, 100%);
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.35rem;
  align-self: flex-start;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.25);
}

.sh-rating-stars {
  color: var(--sh-rating);
  display: flex;
  gap: 3px;
  font-size: 0.95rem;
}

.sh-table-score {
  font-weight: 800;
  font-size: 1.15rem;
  color: hsl(248, 90%, 60%);
  font-family: 'Outfit', sans-serif;
}

/* --- THE WINNER SHOWCASE CARD --- */

.sh-winner-showcase {
  background: linear-gradient(135deg, hsl(248, 90%, 98%) 0%, hsl(255, 35%, 96%) 100%);
  border: 2px solid hsl(248, 90%, 60%);
  border-radius: var(--sh-radius-md);
  padding: 2.25rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
  box-shadow: var(--sh-shadow-lg);
}

.sh-winner-ribbon {
  position: absolute;
  top: -16px;
  left: 24px;
  background: linear-gradient(135deg, hsl(248, 90%, 60%) 0%, hsl(255, 35%, 78%) 100%);
  color: hsl(0, 0%, 100%);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.45rem 1.15rem;
  border-radius: var(--sh-radius-sm);
  letter-spacing: 0.075em;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.sh-winner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .sh-winner-grid {
    grid-template-columns: 4.5fr 7.5fr;
  }
}

.sh-winner-image-container {
  border-radius: var(--sh-radius-sm);
  overflow: hidden;
  border: 1px solid var(--sh-border);
  height: 200px;
  box-shadow: var(--sh-shadow-sm);
}

@media (min-width: 768px) {
  .sh-winner-image-container {
    height: 240px;
  }
}

.sh-winner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sh-winner-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sh-winner-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: hsl(224, 71%, 4%);
  margin-top: 0;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.sh-winner-rating-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.sh-winner-rating-num {
  font-weight: 800;
  color: hsl(224, 71%, 4%);
  font-size: 1.1rem;
}

.sh-winner-key-points {
  margin-top: 0;
  margin-bottom: 1.75rem;
  padding: 0;
  list-style: none;
}

.sh-winner-key-point {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: hsl(220, 10%, 20%);
  font-size: 0.975rem;
}

.sh-winner-point-icon {
  color: var(--sh-success);
  font-weight: 800;
  margin-top: 2px;
}

/* --- PROS & CONS BOX --- */

.sh-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

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

.sh-pros-card {
  background-color: hsl(142, 70%, 98%);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: var(--sh-radius-sm);
  padding: 1.75rem;
}

.sh-cons-card {
  background-color: hsl(346, 84%, 98%);
  border: 1px solid rgba(220, 38, 38, 0.12);
  border-radius: var(--sh-radius-sm);
  padding: 1.75rem;
}

.sh-pros-title {
  color: var(--sh-success);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sh-cons-title {
  color: var(--sh-danger);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sh-pc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sh-pc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: hsl(220, 10%, 25%);
  line-height: 1.5;
}

.sh-pc-icon-check {
  color: var(--sh-success);
  font-weight: 800;
}

.sh-pc-icon-cross {
  color: var(--sh-danger);
  font-weight: 800;
}

/* --- SIDEBAR WIDGETS --- */

.sh-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.sh-widget {
  background-color: hsl(0, 0%, 100%);
  border-radius: var(--sh-radius-md);
  padding: 2rem;
  box-shadow: var(--sh-shadow-sm);
  border: 1px solid var(--sh-border);
}

.sh-widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(224, 71%, 4%);
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--sh-border);
  letter-spacing: -0.01em;
}

.sh-sidebar-winner-card {
  text-align: center;
  background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(248, 90%, 99%) 100%);
  border: 2px solid rgba(79, 70, 229, 0.15);
}

.sh-sidebar-winner-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--sh-radius-sm);
  margin-bottom: 1.25rem;
  border: 1px solid var(--sh-border);
}

.sh-sidebar-winner-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: hsl(224, 71%, 4%);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.sh-sidebar-winner-score {
  font-size: 0.9rem;
  color: hsl(248, 90%, 60%);
  font-weight: 800;
  background-color: hsl(248, 90%, 95%);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(79, 70, 229, 0.1);
}

/* --- DETAILED FAQ SECTION --- */

.sh-faq-section {
  margin-top: 3.5rem;
}

.sh-faq-item {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sh-border);
}

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

.sh-faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(224, 71%, 4%);
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.sh-faq-answer {
  color: hsl(220, 10%, 25%);
  font-size: 0.975rem;
  line-height: 1.6;
  margin: 0;
}

/* --- COOKIE CONSENT BANNER --- */

.sh-cookie-consent {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 440px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-md);
  padding: 1.5rem;
  box-shadow: var(--sh-shadow-xl);
  z-index: 1000;
  display: none;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .sh-cookie-consent {
    right: 15px;
    left: 15px;
    max-width: none;
    bottom: 15px;
    padding: 1rem;
  }
}

.sh-cookie-consent.sh-cookie-active {
  display: block;
}

.sh-cookie-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(224, 71%, 4%);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.sh-cookie-text {
  font-size: 0.875rem;
  color: hsl(220, 10%, 30%);
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.sh-cookie-btn-group {
  display: flex;
  gap: 0.75rem;
}

.sh-cookie-btn {
  flex: 1;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* --- FOOTER --- */

.sh-footer {
  background-color: hsl(224, 71%, 4%);
  color: hsl(240, 10%, 90%);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sh-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .sh-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.sh-footer-col {
  display: flex;
  flex-direction: column;
}

.sh-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.sh-footer-brand-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, hsl(248, 90%, 60%) 0%, hsl(255, 35%, 78%) 100%);
  border-radius: var(--sh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 100%);
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
}

.sh-footer-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: hsl(0, 0%, 100%);
  letter-spacing: -0.03em;
}

.sh-footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: hsl(240, 10%, 75%);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.sh-footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sh-footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sh-footer-link-item {
  margin-bottom: 0.75rem;
}

.sh-footer-link {
  color: hsl(240, 10%, 75%);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.sh-footer-link:hover {
  color: hsl(255, 35%, 78%);
}

.sh-footer-disclosure {
  font-size: 0.8rem;
  line-height: 1.6;
  color: hsl(240, 10%, 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: justify;
}

.sh-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .sh-footer-bottom {
    flex-direction: row;
  }
}

.sh-footer-copy {
  font-size: 0.8rem;
  color: hsl(240, 10%, 60%);
  margin: 0;
}

/* --- PREMIUM INTERACTIVE REVIEW DETAIL PAGE (testbericht.html) --- */

.sh-review-header-card {
  background: linear-gradient(135deg, hsl(248, 90%, 98%) 0%, hsl(255, 35%, 96%) 100%);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-md);
  padding: 2.25rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--sh-shadow-sm);
}

.sh-review-score-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .sh-review-score-grid {
    grid-template-columns: 3.5fr 8.5fr;
  }
}

.sh-score-circle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: hsl(0, 0%, 100%);
  border: 2px solid hsl(248, 90%, 60%);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--sh-shadow-md);
}

.sh-score-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: hsl(248, 90%, 60%);
  line-height: 1;
}

.sh-score-label {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sh-text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.sh-rating-breakdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.sh-breakdown-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sh-breakdown-label {
  width: 110px;
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(220, 10%, 25%);
}

.sh-breakdown-bar-bg {
  flex: 1;
  height: 8px;
  background-color: hsl(240, 15%, 90%);
  border-radius: 4px;
  overflow: hidden;
}

.sh-breakdown-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, hsl(248, 90%, 60%) 0%, hsl(255, 35%, 78%) 100%);
  border-radius: 4px;
}

.sh-breakdown-val {
  width: 32px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
  color: hsl(224, 71%, 4%);
}

/* --- GLASSMORPHIC PURCHASE BANNER / CARD --- */

.sh-cta-card {
  background: linear-gradient(135deg, hsl(224, 71%, 4%) 0%, hsl(248, 90%, 20%) 100%);
  border-radius: var(--sh-radius-md);
  padding: 2.5rem;
  color: hsl(0, 0%, 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-shadow-xl);
  margin-top: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sh-cta-card-bg-light {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.sh-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.sh-cta-text {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(240, 10%, 85%);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
}

.sh-cta-vendor-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: hsl(255, 35%, 78%);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- CONTACT & LEGAL PAGE LAYOUTS --- */

.sh-legal-card {
  background-color: hsl(0, 0%, 100%);
  border-radius: var(--sh-radius-md);
  padding: 3rem;
  box-shadow: var(--sh-shadow-sm);
  border: 1px solid var(--sh-border);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 575px) {
  .sh-legal-card {
    padding: 1.75rem;
  }
}

.sh-legal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: hsl(224, 71%, 4%);
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--sh-border);
  padding-bottom: 1rem;
}

.sh-legal-section {
  margin-bottom: 2.25rem;
}

.sh-legal-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: hsl(224, 71%, 4%);
  margin-top: 0;
  margin-bottom: 0.85rem;
}

/* Form Styling - Premium Contact */

.sh-form-group {
  margin-bottom: 1.5rem;
}

.sh-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(220, 10%, 25%);
  margin-bottom: 0.5rem;
}

.sh-form-input, .sh-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* Locked to 16px to prevent iOS Safari auto-zoom on focus */
  background-color: hsl(240, 20%, 99%);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-sm);
  color: hsl(224, 71%, 4%);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.sh-form-input:focus, .sh-form-textarea:focus {
  outline: none;
  border-color: hsl(248, 90%, 60%);
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

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

.sh-contact-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .sh-contact-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- PREMIUM PRODUCT GALLERY --- */

.sh-gallery-container {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
  padding: 1.5rem;
  background-color: hsl(240, 20%, 99%);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-md);
}

.sh-gallery-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: hsl(224, 71%, 4%);
  margin-bottom: 0.35rem;
}

.sh-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.sh-gallery-item {
  display: flex;
  flex-direction: column;
  background-color: hsl(0, 0%, 100%);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-sm);
  overflow: hidden;
  box-shadow: var(--sh-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sh-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-shadow-md);
}

.sh-gallery-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background-color: hsl(240, 20%, 99%);
  border-bottom: 1px solid var(--sh-border);
  display: block;
}

.sh-gallery-caption {
  padding: 0.75rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: hsl(220, 10%, 25%);
  text-align: center;
  background-color: hsl(0, 0%, 100%);
}

/* --- PRICE DISPLAY --- */
.sh-price-display {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sh-indigo-primary);
  margin-bottom: 1rem;
}
.sh-price-display-center {
  text-align: center;
}


/* --- PRELOADER --- */
.sh-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.sh-preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.sh-preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sh-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid hsl(248, 90%, 60%);
  border-radius: 50%;
  animation: sh-spin 1s linear infinite;
}

.sh-preloader-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: hsl(224, 71%, 4%);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin: 0;
}

@keyframes sh-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
