/* SENDPath — style.css */
/* Brand: #0D9488 teal, #1E3A5F dark blue, #F0FDF4 light green bg */

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

:root {
  --teal: #0D9488;
  --teal-dark: #0A7A70;
  --teal-light: #CCFBF1;
  --navy: #1E3A5F;
  --navy-light: #2D5080;
  --bg: #F0FDF4;
  --white: #FFFFFF;
  --grey-50: #F9FAFB;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-400: #9CA3AF;
  --grey-600: #4B5563;
  --grey-800: #1F2937;
  --text: #1F2937;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 24px rgba(0,0,0,.12);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-w: 1160px;
  --header-h: 68px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--alt { background: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  height: var(--header-h);
  display: flex; align-items: center;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 38px; height: 38px; background: var(--teal); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { fill: var(--white); width: 22px; height: 22px; }
.logo-text { font-weight: 700; font-size: 1.2rem; color: var(--navy); letter-spacing: -.3px; }
.logo-text span { color: var(--teal); }

nav { display: flex; align-items: center; gap: 4px; }
nav a { text-decoration: none; color: var(--grey-600); font-size: .92rem; font-weight: 500; padding: 6px 14px; border-radius: 8px; transition: all .2s; }
nav a:hover, nav a.active { background: var(--teal-light); color: var(--teal-dark); }
.nav-cta { background: var(--teal) !important; color: var(--white) !important; padding: 8px 18px !important; }
.nav-cta:hover { background: var(--teal-dark) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .3s; }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--grey-200); padding: 12px 20px; }
.mobile-nav a { display: block; padding: 10px 0; color: var(--grey-600); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--grey-100); }
.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2D5080 60%, #0D7A6E 100%);
  color: var(--white);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::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.03'%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");
}
.hero-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; padding: 5px 14px; border-radius: 99px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -.5px; }
.hero h1 em { font-style: normal; color: #5EEAD4; }
.hero p { font-size: clamp(1rem, 2vw, 1.2rem); opacity: .88; max-width: 640px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: all .2s; cursor: pointer; border: none; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }

/* ── DISCLAIMER STRIP ── */
.disclaimer-strip {
  background: #FEF3C7;
  border-top: 3px solid #F59E0B;
  padding: 10px 0;
  text-align: center;
  font-size: .85rem;
  color: #92400E;
  font-weight: 500;
}
.disclaimer-strip a { color: #92400E; }

/* ── CARDS GRID ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border: 1px solid var(--grey-200); transition: all .25s; text-decoration: none; color: var(--text); display: block; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.5rem; }
.card-icon--teal { background: var(--teal-light); }
.card-icon--blue { background: #DBEAFE; }
.card-icon--purple { background: #EDE9FE; }
.card-icon--orange { background: #FEF3C7; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.card p { font-size: .9rem; color: var(--grey-600); line-height: 1.5; }
.card-arrow { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; color: var(--teal); font-size: .88rem; font-weight: 600; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 12px; }
.section-header .eyebrow { display: inline-block; color: var(--teal); font-weight: 700; font-size: .82rem; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 10px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); letter-spacing: -.3px; }
.section-header p { color: var(--grey-600); max-width: 560px; margin: 12px auto 0; font-size: .98rem; }

/* ── NEWSLETTER ── */
.newsletter-box { background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%); border-radius: var(--radius); padding: 48px 40px; text-align: center; color: var(--white); }
.newsletter-box h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.newsletter-box p { opacity: .88; margin-bottom: 28px; font-size: 1rem; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] { flex: 1; min-width: 220px; padding: 13px 18px; border: none; border-radius: 10px; font-size: .95rem; outline: none; }
.newsletter-form button { padding: 13px 24px; background: var(--navy); color: var(--white); border: none; border-radius: 10px; font-weight: 600; cursor: pointer; transition: background .2s; white-space: nowrap; }
.newsletter-form button:hover { background: #000; }
.form-note { font-size: .78rem; opacity: .7; margin-top: 12px; }

/* ── DIRECTORY LISTINGS ── */
.listing-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  transition: box-shadow .2s;
}
.listing-card:hover { box-shadow: var(--shadow-lg); }
.listing-name { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.listing-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.tag { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 99px; font-size: .78rem; font-weight: 600; }
.tag--teal { background: var(--teal-light); color: var(--teal-dark); }
.tag--blue { background: #DBEAFE; color: #1D4ED8; }
.tag--green { background: #D1FAE5; color: #065F46; }
.tag--orange { background: #FEF3C7; color: #92400E; }
.tag--purple { background: #EDE9FE; color: #5B21B6; }
.listing-address { font-size: .88rem; color: var(--grey-600); margin-bottom: 6px; }
.listing-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.listing-actions a { font-size: .85rem; font-weight: 600; color: var(--teal); text-decoration: none; white-space: nowrap; }
.listing-actions a:hover { text-decoration: underline; }
.ofsted-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 99px; font-size: .78rem; font-weight: 700; }
.ofsted-outstanding { background: #D1FAE5; color: #065F46; }
.ofsted-good { background: #DBEAFE; color: #1D4ED8; }

/* ── CATEGORY GRID ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 32px; }
.cat-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 24px; text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 16px; transition: all .2s; }
.cat-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.cat-icon { font-size: 2rem; flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--teal-light); border-radius: 12px; }
.cat-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cat-info .cat-count { font-size: .82rem; color: var(--grey-600); }

/* ── SEARCH BAR ── */
.search-bar { display: flex; gap: 0; max-width: 560px; margin: 0 auto 40px; box-shadow: var(--shadow); border-radius: 12px; overflow: hidden; }
.search-bar input { flex: 1; padding: 14px 20px; border: 2px solid var(--grey-200); border-right: none; border-radius: 12px 0 0 12px; font-size: .95rem; outline: none; }
.search-bar input:focus { border-color: var(--teal); }
.search-bar button { padding: 14px 22px; background: var(--teal); color: var(--white); border: none; font-weight: 600; cursor: pointer; border-radius: 0 12px 12px 0; transition: background .2s; }
.search-bar button:hover { background: var(--teal-dark); }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 14px 0; font-size: .85rem; color: var(--grey-600); }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); color: var(--white); padding: 52px 0 44px; }
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { opacity: .82; font-size: 1.05rem; max-width: 600px; }

/* ── PROSE (about, legal pages) ── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 36px 0 12px; }
.prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.prose p { margin-bottom: 16px; color: var(--grey-600); line-height: 1.7; }
.prose ul, .prose ol { margin: 12px 0 16px 24px; color: var(--grey-600); }
.prose li { margin-bottom: 6px; line-height: 1.6; }
.prose a { color: var(--teal); }
.prose .callout { background: var(--teal-light); border-left: 4px solid var(--teal); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 20px 0; }
.prose .callout strong { color: var(--navy); }
.prose .warning-box { background: #FEF3C7; border-left: 4px solid #F59E0B; border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 20px 0; color: #78350F; }

/* ── CONTACT FORM ── */
.contact-form { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 2px solid var(--grey-200); border-radius: var(--radius-sm); font-size: .95rem; font-family: var(--font); color: var(--text); transition: border .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; padding: 14px; background: var(--teal); color: var(--white); border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.form-submit:hover { background: var(--teal-dark); }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand .logo-text { color: var(--white); font-size: 1.2rem; }
.footer-brand p { margin-top: 12px; font-size: .88rem; opacity: .7; line-height: 1.6; max-width: 260px; }
.footer-brand .social-links { display: flex; gap: 8px; margin-top: 16px; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 14px; letter-spacing: .3px; }
.footer-col a { display: block; color: rgba(255,255,255,.65); text-decoration: none; font-size: .87rem; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; font-size: .82rem; }
.footer-disclaimer { background: rgba(0,0,0,.25); border-radius: 8px; padding: 14px 18px; margin-bottom: 24px; font-size: .83rem; text-align: center; opacity: .8; line-height: 1.5; }
.footer-disclaimer strong { color: #FCD34D; }

/* ── ANNOUNCEMENT BANNER ── */
#announce-banner {
  background: var(--navy);
  border-bottom: 3px solid var(--teal);
  padding: 10px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .88rem;
  color: #fff;
  position: relative;
  z-index: 101;
}
#announce-banner a.announce-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--teal);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .82rem;
  transition: background .2s;
}
#announce-banner a.announce-btn:hover { background: var(--teal-dark); }
#announce-banner .banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
  transition: color .2s;
}
#announce-banner .banner-close:hover { color: #fff; }

/* ── GUIDE CARDS ── */
.guide-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 28px; text-decoration: none; color: var(--text); display: block; transition: all .25s; }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.guide-card .guide-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.guide-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.guide-card p { font-size: .9rem; color: var(--grey-600); line-height: 1.5; }
.guide-card .guide-arrow { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; color: var(--teal); font-size: .88rem; font-weight: 600; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 32px; }

/* ── FILTER BUTTONS ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.filter-btn { padding: 8px 20px; border-radius: 99px; border: 2px solid var(--grey-200); background: var(--white); color: var(--grey-600); font-weight: 600; font-size: .88rem; cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ── VERIFIED BADGE ── */
.verified-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 99px; font-size: .75rem; font-weight: 700; background: #D1FAE5; color: #065F46; }

/* ── TOOL / QUIZ ── */
.quiz-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); max-width: 720px; margin: 0 auto; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-progress { background: var(--grey-200); border-radius: 99px; height: 8px; margin-bottom: 28px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--teal); border-radius: 99px; transition: width .4s; }
.quiz-question { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; line-height: 1.4; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 2px solid var(--grey-200); border-radius: var(--radius-sm); cursor: pointer; transition: all .2s; }
.quiz-option:hover { border-color: var(--teal); background: var(--teal-light); }
.quiz-option input[type="radio"] { accent-color: var(--teal); width: 18px; height: 18px; cursor: pointer; }
.quiz-option label { cursor: pointer; font-size: .95rem; color: var(--text); line-height: 1.4; }
.quiz-nav { display: flex; gap: 12px; margin-top: 28px; justify-content: space-between; flex-wrap: wrap; }
.quiz-result { display: none; }
.quiz-result.active { display: block; }
.result-box { border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.result-box.higher { background: #D1FAE5; border: 2px solid #34D399; }
.result-box.middle { background: #DBEAFE; border: 2px solid #60A5FA; }
.result-box.lower { background: #FEF3C7; border: 2px solid #FCD34D; }
.result-box.unlikely { background: var(--grey-100); border: 2px solid var(--grey-200); }
.result-rate { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.result-disclaimer { background: #FEF3C7; border-left: 4px solid #F59E0B; border-radius: 0 8px 8px 0; padding: 16px 20px; margin-top: 20px; font-size: .88rem; color: #78350F; }

/* ── CRISIS BAR ── */
.crisis-bar { background: rgba(0,0,0,.25); border-radius: 8px; padding: 14px 18px; margin-bottom: 16px; text-align: center; font-size: .83rem; line-height: 1.6; }
.crisis-bar a { color: #5EEAD4; text-decoration: none; font-weight: 600; }
.crisis-bar a:hover { text-decoration: underline; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  font-size: .88rem;
}
#cookie-banner p { flex: 1; min-width: 240px; opacity: .9; }
#cookie-banner a { color: #5EEAD4; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btns button { padding: 9px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: .88rem; border: none; }
#cookie-accept { background: var(--teal); color: var(--white); }
#cookie-decline { background: rgba(255,255,255,.1); color: var(--white); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.inline-link { color: var(--teal); text-decoration: none; font-weight: 500; }
.inline-link:hover { text-decoration: underline; }
.badge-kent { display: inline-flex; align-items: center; gap: 6px; background: var(--teal-light); color: var(--teal-dark); padding: 5px 14px; border-radius: 99px; font-size: .82rem; font-weight: 700; }
.suggest-cta { background: var(--teal-light); border: 1px solid var(--teal); border-radius: var(--radius); padding: 24px; text-align: center; margin-top: 40px; }
.suggest-cta h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.suggest-cta p { color: var(--grey-600); font-size: .9rem; margin-bottom: 16px; }
.listing-count { font-size: .85rem; color: var(--grey-600); margin-bottom: 24px; }
.listing-note { font-size: .8rem; color: var(--grey-400); margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { display: none; }
  .hamburger { display: block; }
  .mobile-nav.open { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .listing-card { grid-template-columns: 1fr; }
  .listing-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .newsletter-box { padding: 32px 20px; }
  .hero { padding: 56px 0 52px; }
  .section { padding: 44px 0; }
}

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.product-rating {
  color: #F59E0B;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}
.product-price {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
}
.product-note {
  color: #6B7280;
  font-size: 0.9rem;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.product-card .btn {
  margin-top: auto;
}
