:root {
  --primary: #059669; /* Emerald 600 */
  --primary-light: #ecfdf5; /* Emerald 50 */
  --primary-dark: #065f46; /* Emerald 800 */
  --primary-glow: rgba(5, 150, 105, 0.4);
  --secondary: #0f172a; /* Slate 900 */
  --orange: #ea580c; /* Orange 600 */
  --orange-light: #fff7ed; /* Orange 50 */
  --danger: #e11d48; /* Rose 600 */
  --danger-light: #fff1f2; /* Rose 50 */
  --success-soft: #d1fae5;
  --text: #0f172a; /* Slate 900 */
  --text-muted: #64748b; /* Slate 500 */
  --bg: #f8fafc; /* Slate 50 */
  --card: rgba(255, 255, 255, 0.75);
  --border: rgba(226, 232, 240, 0.8);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px var(--primary-glow);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Alexandria', sans-serif;
  direction: rtl;
  text-align: right;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

/* Dynamic Mesh Background */
body::before {
  content: "";
  position: absolute;
  top: -20vh;
  left: -20vw;
  width: 140vw;
  height: 140vh;
  background: 
    radial-gradient(circle at 15% 10%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
  animation: bg-pulse 15s ease-in-out infinite alternate;
}

@keyframes bg-pulse {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-2%, 2%); }
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 1.5rem;
  z-index: 50;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  margin: 1.5rem auto;
  width: min(var(--container), calc(100% - 2.5rem));
  transition: all 0.3s ease;
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  min-height: 76px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #10b981);
  color: white;
  box-shadow: var(--shadow-glow);
  font-size: 1.25rem;
}

.brand-text strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text small {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.1rem;
}

.site-nav {
  display: flex;
  gap: 0.5rem;
  background: rgba(241, 245, 249, 0.6);
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.site-nav a {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:hover {
  color: var(--secondary);
}

.site-nav a.is-active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.year-chip {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--secondary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

/* Warning Banner */
.warning-banner {
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.1), rgba(234, 88, 12, 0.02));
  border-right: 4px solid var(--orange);
  margin: 2rem auto;
  width: min(var(--container), calc(100% - 2.5rem));
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
}

.warning-banner p {
  margin: 0;
  color: #9a3412;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hero Section */
.hero-section {
  padding: 3rem 0;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 480px;
  gap: 4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.15;
  margin: 1rem 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--secondary) 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.hero-points {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
}

.hero-points span svg {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

/* Glass & Card Utilities */
.glass-card,
.filters-panel,
.faq-item,
.result-card,
.compare-item,
.scholarship-card,
.private-card,
.stat-card,
.university-group {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

/* Calculator Panel */
.calculator-panel {
  position: sticky;
  top: 130px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  animation: float 6s ease-in-out infinite;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.panel-head h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
}

.panel-head p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.calculator-form {
  display: grid;
  gap: 1.25rem;
}

/* Inputs & Form Elements */
.input-group {
  position: relative;
  display: grid;
  gap: 0.5rem;
}

.input-group span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
}

.input-group input,
.input-group select {
  width: 100%;
  min-height: 56px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: white;
  color: var(--text);
  padding: 0 1.25rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
  background: white;
}

.input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 1.2em;
  padding-left: 2.5rem;
}

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

.filters-grid .search-group {
  grid-column: 1 / -1;
}

.search-group input {
  padding-right: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.check-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.check-row input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.check-row input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.check-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
}

.score-box {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.score-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.score-box strong {
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 900;
  color: #34d399; /* Emerald 400 */
  text-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}

.score-box span {
  display: block;
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.score-box small {
  display: block;
  margin-top: 0.5rem;
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.85rem;
}

/* Buttons */
.primary-button,
.ghost-button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 0;
  padding: 0 1.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.ghost-button {
  background: white;
  color: var(--secondary);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.ghost-button:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-2px);
}

.link-button {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.link-button:hover {
  background: #d1fae5;
  transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
  padding: 2rem 0;
  position: relative;
  z-index: 10;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-card span {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 1.05rem;
}

.stat-green { border-bottom: 4px solid var(--primary); }
.stat-green strong { color: var(--primary); }
.stat-orange { border-bottom: 4px solid var(--orange); }
.stat-orange strong { color: var(--orange); }
.stat-red { border-bottom: 4px solid var(--danger); }
.stat-red strong { color: var(--danger); }

/* Section Headings */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0.5rem 0 0;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Grids & Cards */
.recommendation-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 1.5rem;
}

.results-accordion {
  display: grid;
  gap: 1.25rem;
}

.university-group {
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.university-group[open] {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-glow);
}

.university-group summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 800;
}

.university-group summary h3 {
  margin: 0;
  font-size: 1.25rem;
}

.university-group summary p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.summary-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.result-list,
.recommendation-list,
.private-major-list {
  display: grid;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
  animation: slideUp 0.4s ease forwards;
}

.result-card,
.private-card,
.scholarship-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  animation: fadeIn 0.5s ease forwards;
}

.result-card:hover,
.private-card:hover,
.scholarship-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.result-card::before,
.private-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 6px;
  border-radius: 0 20px 20px 0;
}

.status-green::before { background: var(--primary); }
.status-orange::before { background: var(--orange); }
.status-red::before { background: var(--danger); }

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.card-head h3,
.card-head h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.card-head p {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Chips & Tags */
.chips-row,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.chip svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.chip.green {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: rgba(5, 150, 105, 0.2);
}

.chip.orange {
  background: var(--orange-light);
  color: #c2410c;
  border-color: rgba(234, 88, 12, 0.2);
}

.chip.red {
  background: var(--danger-light);
  color: var(--danger);
  border-color: rgba(225, 29, 72, 0.2);
}

.gap-text {
  margin-top: 1.25rem;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gap-text.green { color: var(--primary); }
.gap-text.orange { color: var(--orange); }
.gap-text.red { color: var(--danger); }

/* Empty States & Loaders */
.empty-state {
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  border: 2px dashed #cbd5e1;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.1rem;
}

.is-loading {
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.5);
}

/* FAQ */
.faq-section {
  padding: 4rem 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  animation: fadeIn 0.3s ease;
}

/* Filters Panel */
.filters-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

/* Tables */
.private-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th, td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: right;
  font-size: 0.95rem;
}

th {
  background: #f8fafc;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
}

td {
  color: var(--text-muted);
}

/* Modals & Compare Bar */
.compare-bar {
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.compare-inner {
  pointer-events: auto;
  width: max-content;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
}

.compare-inner span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.compare-inner p {
  margin: 0;
  font-weight: 700;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}

.modal-card {
  width: min(1200px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

/* Tabs */
.tabs-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5rem;
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.is-active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 0;
  background: white;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.site-footer strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.site-footer p {
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-copy h1 {
    font-size: 3rem;
  }
  
  .hero-copy p {
    margin: 1rem auto 2rem;
  }
  
  .hero-points {
    justify-content: center;
  }
  
  .calculator-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .header-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .year-chip {
    display: none;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .recommendation-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .filters-grid {
    grid-template-columns: 1fr;
  }
}
