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

/* --- CUSTOM CLASS-BASED RESET & CORE ROOT STYLES --- */
.ns-html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  touch-action: manipulation;
}

.ns-body {
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
  color: #1e293b;
  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;
  width: 100%;
  max-width: 100vw;
}

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

/* Ensure all class elements respect border-box */
.ns-main, .ns-header, .ns-footer, .ns-section, .ns-article, .ns-aside, .ns-nav, .ns-div, .ns-ul, .ns-li, .ns-p, .ns-h1, .ns-h2, .ns-h3, .ns-h4, .ns-a, .ns-img, .ns-btn, .ns-span, .ns-table, .ns-thead, .ns-tbody, .ns-tr, .ns-th, .ns-td {
  box-sizing: border-box;
}

/* --- THEME COLORS & VARIABLES (Applied via Classes) --- */
.ns-theme-variables {
  --ns-primary: #0f766e;        /* Deep Forest Teal (Trust Accent) */
  --ns-primary-hover: #0d5f58;  
  --ns-secondary: #c2410c;      /* Warm Terracotta (High-Contrast CTA) */
  --ns-secondary-hover: #a0350a;
  --ns-dark: #0f172a;           /* Deep Slate Blue (Headers) */
  --ns-light: #ffffff;          /* Card Background */
  --ns-bg-alt: #f1f5f9;         /* Alternate Background */
  --ns-border: #e2e8f0;         /* Soft Gray Border */
  --ns-text-muted: #64748b;     /* Slate Gray for Subtext */
  --ns-success: #16a34a;        /* Green for Pros */
  --ns-danger: #dc2626;         /* Red for Cons */
  --ns-rating: #eab308;         /* Yellow for Star ratings */
  --ns-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --ns-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --ns-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --ns-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --ns-radius-sm: 6px;
  --ns-radius-md: 12px;
  --ns-radius-lg: 16px;
}

/* --- TYPOGRAPHY (Strictly class-only) --- */
.ns-h1 {
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  letter-spacing: -0.025em;
}

.ns-h2 {
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
  letter-spacing: -0.015em;
}

.ns-h3 {
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 1.5rem 0 0.75rem 0;
}

.ns-h4 {
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 1.25rem 0 0.5rem 0;
}

.ns-p {
  margin: 0 0 1.25rem 0;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ns-strong {
  font-weight: 600;
  color: #0f172a;
}

.ns-text-muted {
  color: #64748b;
}

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

/* --- UTILITIES --- */
.ns-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ns-relative {
  position: relative;
}

.ns-d-flex {
  display: flex;
}

.ns-d-grid {
  display: grid;
}

/* --- BUTTONS & CALLS TO ACTION --- */
.ns-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 ease-in-out;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 6px;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}


@media (min-width: 768px) {
  .ns-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.925rem;
  }
}

.ns-btn-primary {
  background-color: #0f766e;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(15, 118, 110, 0.2);
}

.ns-btn-primary:hover {
  background-color: #0d5f58;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(15, 118, 110, 0.3);
}

.ns-btn-secondary {
  background-color: #c2410c;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(194, 65, 12, 0.2);
}

.ns-btn-secondary:hover {
  background-color: #a0350a;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(194, 65, 12, 0.3);
}

.ns-btn-outline {
  background-color: transparent;
  color: #0f766e;
  border: 2px solid #0f766e;
}

.ns-btn-outline:hover {
  background-color: rgba(15, 118, 110, 0.05);
  transform: translateY(-2px);
}

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

/* --- COMPACT REVIEW BUTTON OVERRIDES --- */
.ns-winner-details .ns-btn {
  display: inline-flex;
  width: auto;
  align-self: flex-start;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .ns-winner-details .ns-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
}

.ns-sidebar-winner-card .ns-btn {
  display: inline-flex;
  width: auto;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .ns-sidebar-winner-card .ns-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
}

.ns-winner-showcase > .ns-btn {
  display: inline-flex;
  width: auto;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .ns-winner-showcase > .ns-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* --- HEADER & NAVIGATION --- */
.ns-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}


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

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

.ns-brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0f766e 0%, #c2410c 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
}

.ns-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #0f172a;
  letter-spacing: -0.02em;
}

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

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

.ns-nav-link {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.ns-nav-link:hover {
  color: #0f766e;
}

.ns-nav-link-active {
  color: #0f766e;
  font-weight: 600;
}

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

.ns-mobile-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0f172a;
  margin: 5px 0;
  transition: 0.3s;
}

/* --- DISCLOSURE BANNER --- */
.ns-disclosure-banner {
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.65rem 0;
}

.ns-disclosure-text {
  font-size: 0.825rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

/* --- HERO SECTION --- */
.ns-hero-section {
  padding: 3rem 0 2rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.ns-hero-category {
  display: inline-block;
  background-color: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.ns-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

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

.ns-author-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.ns-author-name {
  font-weight: 600;
  color: #334155;
  font-size: 0.9rem;
}

.ns-hero-date {
  font-size: 0.9rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ns-hero-image-wrapper {
  margin: 1.5rem auto 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}

@media (min-width: 768px) {
  .ns-hero-image-wrapper {
    max-width: 550px;
  }
}

.ns-hero-img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  display: block;
}

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

/* --- MAIN CONTENT & SIDEBAR LAYOUT --- */
.ns-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}

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

.ns-article {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  border: 1px solid #e2e8f0;
  min-width: 0;
}

/* --- COMPARISON TABLE --- */
.ns-comparison-wrapper {
  margin: 2.5rem 0;
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.ns-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
  background-color: #ffffff;
}

.ns-thead {
  background-color: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
}

.ns-th {
  padding: 1.25rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}

.ns-tbody-row {
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.15s ease;
}

.ns-tbody-row:hover {
  background-color: #f8fafc;
}

.ns-tbody-row-winner {
  background-color: rgba(15, 118, 110, 0.02);
  border-left: 4px solid #0f766e;
}

.ns-tbody-row-winner:hover {
  background-color: rgba(15, 118, 110, 0.04);
}

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

.ns-table-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ns-table-product-img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}

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

.ns-table-product-name {
  font-weight: 700;
  color: #0f172a;
}

.ns-table-product-brand {
  font-size: 0.8rem;
  color: #64748b;
}

.ns-winner-badge {
  background-color: #0f766e;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  margin-top: 0.25rem;
  align-self: flex-start;
  letter-spacing: 0.05em;
}

.ns-rating-stars {
  color: #eab308;
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
}

.ns-table-score {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f766e;
}

.ns-table-btn {
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
  border-radius: 4px;
}

/* --- THE WINNER SECTION CARD --- */
.ns-winner-showcase {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.05) 0%, rgba(15, 118, 110, 0.01) 100%);
  border: 2px solid #0f766e;
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
}

.ns-winner-ribbon {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #0f766e;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 6px rgba(15, 118, 110, 0.25);
}

.ns-winner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .ns-winner-grid {
    grid-template-columns: 4fr 8fr;
  }
}

.ns-winner-image-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  height: 180px;
}

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

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

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

.ns-winner-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.ns-winner-rating-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ns-winner-rating-num {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.05rem;
}

.ns-winner-key-points {
  margin: 0 0 1.5rem 0;
  padding: 0;
  list-style: none;
}

.ns-winner-key-point {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #475569;
}

.ns-winner-point-icon {
  color: #16a34a;
  font-weight: 700;
  margin-top: 2px;
}

/* --- PROS & CONS GRID --- */
.ns-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.ns-pros-card {
  background-color: rgba(22, 163, 74, 0.02);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
}

.ns-cons-card {
  background-color: rgba(220, 38, 38, 0.02);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
}

.ns-pros-title {
  color: #16a34a;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ns-cons-title {
  color: #dc2626;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.ns-pc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: #334155;
}

.ns-pc-icon-check {
  color: #16a34a;
  font-weight: 700;
}

.ns-pc-icon-cross {
  color: #dc2626;
  font-weight: 700;
}

/* --- SIDEBAR WIDGETS --- */
.ns-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}

.ns-widget {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  border: 1px solid #e2e8f0;
}

.ns-widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.ns-sidebar-winner-card {
  text-align: center;
}

.ns-sidebar-winner-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}

.ns-sidebar-winner-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.ns-sidebar-winner-score {
  font-size: 0.9rem;
  color: #0f766e;
  font-weight: 700;
  background-color: rgba(15, 118, 110, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* --- DETAILED FAQ SECTION --- */
.ns-faq-section {
  margin: 3rem 0 1rem 0;
}

.ns-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.25rem 0;
}

.ns-faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.ns-faq-answer {
  color: #475569;
  font-size: 0.975rem;
  margin: 0;
}

/* --- CONTACT FORM --- */
.ns-form {
  margin-top: 1.5rem;
}

.ns-form-group {
  margin-bottom: 1.25rem;
}

.ns-form-label {
  display: block;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.ns-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* Locked to 16px to prevent iOS Safari auto-zoom on focus */
  color: #1e293b;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ns-form-input:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.ns-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.ns-alert {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.ns-alert-success {
  background-color: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: #15803d;
}

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

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

/* --- FOOTER --- */
.ns-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid #1e293b;
  font-size: 0.9rem;
}

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

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

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

.ns-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ns-footer-brand-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0f766e 0%, #c2410c 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
}

.ns-footer-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
}

.ns-footer-text {
  line-height: 1.6;
  margin: 0 0 1rem 0;
  color: #94a3b8;
}

.ns-footer-col-title {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ns-footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ns-footer-link-item {
  display: block;
}

.ns-footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ns-footer-link:hover {
  color: #ffffff;
}

.ns-footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ns-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.ns-footer-copy {
  margin: 0;
}

.ns-footer-disclosure {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
}

/* --- COOKIE CONSENT BANNER --- */
.ns-cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 420px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid #cbd5e1;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  transform: translateY(150%);
  opacity: 0;
}

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

.ns-cookie-consent-active {
  transform: translateY(0);
  opacity: 1;
}

.ns-cookie-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.ns-cookie-text {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.ns-cookie-btn-group {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.ns-cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* --- MOBILE STYLES & NAV ANIMATIONS --- */
@media (max-width: 768px) {
  .ns-mobile-toggle {
    display: block;
  }
  
  .ns-nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: none;
    box-sizing: border-box;
  }
  
  .ns-nav-list-active {
    display: flex;
  }
  
  .ns-h1 {
    font-size: 2rem;
  }
  
  .ns-h2 {
    font-size: 1.5rem;
  }
  
  .ns-article {
    padding: 1.25rem;
  }
}

/* --- PRELOADER --- */
.ns-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;
}

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

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

.ns-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #0f766e;
  border-radius: 50%;
  animation: ns-spin 1s linear infinite;
}

.ns-preloader-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #0f172a;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin: 0;
}

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