/* ===============================
   ROOT & RESET
================================ */
:root{
  --bg:#f9f6f6;
  --surface:#ffffff;
  --text:#2f2a2a;
  --muted:#6b6464;

  --lavender:#b7a6c7;
  --lavender-deep:#8f7aa5;
  --blush:#e2b9b2;

  --border:rgba(47,42,42,0.12);
  --shadow:0 8px 24px rgba(0,0,0,0.06);

  --radius:16px;
  --maxw:1100px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:Arial,sans-serif;
  line-height:1.6;
  background:var(--bg);
  color:var(--text);
}

/* ===============================
   ACCESSIBILITY
================================ */
.skip-link{
  position:absolute;
  left:12px;
  top:-48px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{top:12px;}

:focus-visible{
  outline:3px solid rgba(143,122,165,0.55);
  outline-offset:2px;
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
}

/* Screen-reader only text */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* ===============================
   HEADER & NAV
================================ */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(8px);
  border-bottom:2px solid rgba(183,166,199,0.55);
}
.header-inner{
  max-width:var(--maxw);
  margin:auto;
  padding:10px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.brand-logo{height:44px;}

.nav ul{
  list-style:none;
  display:flex;
  gap:18px;
  margin:0;
  padding:0;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  color:var(--text);
  padding:10px;
  border-radius:12px;
}
.nav a:hover,
.nav a:focus{
  background:rgba(183,166,199,0.16);
  color:var(--lavender-deep);
}
.nav a.active{
  background:rgba(226,185,178,0.25);
}

.hamburger{
  display:none;
  background:none;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  font-size:20px;
}

/* ===============================
   HERO
================================ */
.hero{
  max-width:var(--maxw);
  margin:24px auto 0;
  padding:18px 16px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:20px;
  align-items:center;
}

.hero-text{
  background:rgba(183,166,199,0.12);
  border:1px solid rgba(183,166,199,0.28);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}

.hero-image img{
  width:100%;
  max-width:460px;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(0,0,0,0.10);
  transition:transform 160ms ease, box-shadow 160ms ease;
}
.hero-image img:hover{
  transform:scale(1.02);
}

/* ===============================
   HERO TITLE
================================ */
.hero-title-text{
  font-family:"Playfair Display",Georgia,"Times New Roman",serif;
  font-size:30px;
  color:var(--text);
  opacity:0;
  transform:translateY(4px);
  animation:titleReveal 420ms ease-out forwards;
}
@keyframes titleReveal{
  to{opacity:1;transform:none;}
}

/* ===============================
   CATCHY PHRASE
================================ */
.catchy-phrase{
  display:flex;
  justify-content:center;
  margin:24px 16px 32px;
}
.catchy-phrase p{
  max-width:720px;
  padding:18px 20px;
  text-align:center;
  border-radius:var(--radius);
  background:linear-gradient(135deg,
    rgba(226,185,178,0.4),
    rgba(183,166,199,0.18)
  );
  box-shadow:0 10px 22px rgba(0,0,0,0.06);
}

/* ===============================
   PAGE LAYOUT
================================ */
.page{
  max-width:var(--maxw);
  margin:24px auto 32px;
  padding:0 16px;
}
.page-header{text-align:center;}

/* ===============================
   BIO PAGE
================================ */
.bio-page .page{
  max-width:none;
  padding:0;
}
.bio-layout{
  max-width:1400px;
  margin:auto;
  padding:0 32px 32px;
  display:grid;
  grid-template-columns:0.6fr 1fr;
  gap:32px;
}

.bio-photo{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.bio-photo img{
  max-width:400px;
  margin:auto;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(0,0,0,0.10);
  transition:transform 160ms ease, box-shadow 160ms ease;
}
.bio-photo img:hover{
  transform:scale(1.02);
}

.bio-text{
  font-size:16.5px;
  line-height:1.75;
}
.bio-text p{margin-bottom:18px;}

/* ===============================
   LIGHTBOX
================================ */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2000;
  opacity:0;
  animation:lightboxFade 180ms ease-out forwards;
}
.lightbox img{
  max-width:90vw;
  max-height:90vh;
  border-radius:18px;
  transform:scale(0.98);
  animation:lightboxZoom 220ms ease-out forwards;
}
@keyframes lightboxFade{to{opacity:1;}}
@keyframes lightboxZoom{to{transform:scale(1);}}

/* ===============================
   ESPA MODAL
================================ */
.modal-overlay{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background:rgba(0,0,0,0.55);
  z-index:3000;
  padding:16px;
}

.modal-overlay.is-open{
  display:grid;
}

.modal{
  width:min(720px, 100%);
  background:#fff;
  border-radius:16px;
  padding:20px;
  max-height:85vh;
  overflow:auto;
  box-shadow:0 10px 28px rgba(0,0,0,0.18);
  position:relative;
}

.modal-close{
  position:absolute;
  top:10px;
  right:12px;
  border:0;
  background:transparent;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

/* ===============================
   FOOTER
================================ */
.footer{
  border-top:1px solid var(--border);
  padding:18px;
  text-align:center;
  color:var(--muted);
}

/* ===============================
   MOBILE
================================ */
@media (max-width:860px){
  .hamburger{display:block;}
  .nav{display:none;}
  .nav.active{display:block;}

  /* ✅ Fix: tabs κάθετα στο mobile */
  .nav ul{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .hero{grid-template-columns:1fr;}
  .bio-layout{grid-template-columns:1fr;padding:0 16px 32px;}
}

/* ===== Home banner – restored ===== */
.home-banner{
  width:100%;
  max-height:420px;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}

.banner-media{
  position:relative;
  width:100%;
}

.banner-media img{
  width:100%;
  height:100%;
  max-height:420px;
  object-fit:cover;
  display:block;
}

.banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(183,166,199,0.25),
    rgba(183,166,199,0.10)
  );
  pointer-events:none;
}

@media (max-width:860px){
  .home-banner,
  .banner-media img{
    max-height:260px;
  }
}

/* ===== Hero name – refined medical style ===== */
.hero-title-text{
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
  font-size:30px;
  color:var(--text);
  letter-spacing:0.2px;

  position:relative;
  display:inline-block;

  opacity:0;
  transform:translateY(6px);
  animation:titleReveal 520ms ease-out forwards;
}

.hero-title-text::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:3px;
  border-radius:999px;
  background:linear-gradient(
    90deg,
    rgba(183,166,199,0.75),
    rgba(226,185,178,0.55)
  );
  transform:scaleX(0.65);
  transform-origin:left center;
}

/* ===== Page titles (Bio etc) ===== */
.page-header h1 .hero-title-text{
  font-size:28px;
}

/* ===== Bio photos – remove any container frame (final) ===== */
.bio-photo{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ===== Lightbox trigger – remove ALL button visuals (final fix) ===== */
.lightbox-trigger{
  all: unset;              /* ΑΦΑΙΡΕΙ ΤΑ ΠΑΝΤΑ από το button */
  display: inline-block;   /* για να κρατήσει μέγεθος */
  cursor: zoom-in;
}

/* κρατάμε προσβασιμότητα */
.lightbox-trigger:focus-visible{
  outline: 3px solid rgba(143,122,165,0.55);
  outline-offset: 4px;
}

/* Focus ring on the image (not around the whole button box) */
.lightbox-trigger:focus-visible{
  outline: none;
}

.lightbox-trigger:focus-visible img{
  outline: 3px solid rgba(143,122,165,0.55);
  outline-offset: 4px;
  border-radius: 18px;
}
html, body{
  overflow-x: hidden;
}
.header, .header-inner, .nav, .hero, .page, .home-banner{
  max-width: 100%;
}
/* Μόνο στο mobile: το ESPA logo να μην σπρώχνει το hamburger έξω */
@media (max-width: 860px){
  .home .brand-logo{
    max-width: 180px;  /* 180–220 συνήθως είναι ωραίο */
    width: 100%;
    height: auto;
  }

  .header-inner{
    gap: 10px;
  }
}

/* κράτα το ύψος όπως το είχες γενικά */
.brand-logo{
  height: 44px;
  width: auto;
}

/* extra ασφάλεια στο mobile: να μην “στραβώνει” η μπάρα */
@media (max-width: 860px){
  .header-inner{
    gap: 10px;
  }
}
/* ===== Home page centering fixes ===== */

/* Κεντράρισμα hero container */
.home .hero{
  margin-left: auto;
  margin-right: auto;
}

/* Κεντράρισμα περιεχομένου hero */
.home .hero-text{
  text-align: center;
}

.home .hero-image{
  display: flex;
  justify-content: center;
}

/* Κεντράρισμα catchy phrase */
.home .catchy-phrase{
  justify-content: center;
}

.home .catchy-phrase p{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* ===============================
   CLINIC PAGE (text + gallery)
================================ */
.clinic-text{
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  margin-top: 14px;
}

.clinic-text p{
  margin-top: 0;
  margin-bottom: 14px;
}

.clinic-gallery{
  margin-top: 18px;
}

.gallery-section{
  margin-top: 18px;
}

.gallery-section h2{
  margin: 0 0 10px;
  font-size: 18px;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-grid img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 860px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid img{
    height: 170px;
  }
}

@media (max-width: 520px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
  .gallery-grid img{
    height: 210px;
  }
}
/* ===============================
   CLINIC PAGE (text + slideshow)
================================ */
.clinic-text{
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  margin-top: 14px;
}

.clinic-text p{
  margin-top: 0;
  margin-bottom: 14px;
}

.clinic-gallery{
  margin-top: 18px;
}

.gallery-section{
  margin-top: 18px;
}

.gallery-section h2{
  margin: 0 0 10px;
  font-size: 18px;
}

/* Slideshow layout */
.slideshow{
  display:grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.slide-frame{
  margin: 0;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
}

.slide-open{
  all: unset;
  display:block;
  cursor: zoom-in;
}

.slide-open:focus-visible img{
  outline: 3px solid rgba(143,122,165,0.55);
  outline-offset: 4px;
  border-radius: 16px;
}

.slide-img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  display:block;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.slide-caption{
  margin-top: 8px;
  text-align: center;
  color: var(--muted);
}

/* Prev/Next buttons */
.slide-btn{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.slide-btn:focus-visible{
  outline: 3px solid rgba(143,122,165,0.55);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 860px){
  .slide-img{ height: 240px; }
}

@media (max-width: 520px){
  .slideshow{
    grid-template-columns: 1fr;
  }
  .slide-btn{
    width: 100%;
    font-size: 22px;
  }
}
/* ===============================
   CLINIC PAGE (text + gallery grid)
================================ */
.clinic-text{
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  margin-top: 14px;
}
.clinic-text p{ margin-top:0; margin-bottom:14px; }

.clinic-gallery{ margin-top: 18px; }
.gallery-section{ margin-top: 18px; }
.gallery-section h2{ margin: 0 0 10px; font-size:18px; }

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* thumbnails are buttons */
.gallery-grid .lightbox-trigger{
  all: unset;
  display:block;
  cursor: zoom-in;
}

.gallery-grid img{
  width:100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  display:block;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.gallery-grid .lightbox-trigger:focus-visible img{
  outline: 3px solid rgba(143,122,165,0.55);
  outline-offset: 4px;
  border-radius: 16px;
}

@media (max-width: 860px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img{ height: 170px; }
}
@media (max-width: 520px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-grid img{ height: 210px; }
}

/* ===============================
   POPUP SLIDESHOW (modal)
================================ */
.lightbox .lb-inner{
  width: min(980px, 92vw);
  max-height: 88vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}

.lightbox .lb-top{
  display:flex;
  justify-content: flex-end;
}

.lightbox .lb-close{
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  color: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 18px;
  cursor:pointer;
}

.lightbox .lb-stage{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap: 10px;
}

.lightbox .lb-nav{
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  color:#fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 26px;
  line-height: 1;
  cursor:pointer;
}

.lightbox .lb-img{
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 18px;
  display:block;
}

.lightbox .lb-caption{
  text-align:center;
  color:#fff;
  opacity:0.9;
}

@media (max-width: 520px){
  .lightbox .lb-stage{
    grid-template-columns: 1fr;
  }
  .lightbox .lb-nav{
    width:100%;
    font-size: 22px;
  }
}
/* ===============================
   SERVICES PAGE
================================ */
.services-intro{
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-top: 14px;
}

.services-grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card{
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.service-card h2{
  margin: 0 0 8px;
  font-size: 18px;
}

.service-card p{
  margin: 0 0 12px;
  color: var(--text);
}

.service-list{
  margin: 0;
  padding-left: 18px;
}

.service-list li{
  margin-bottom: 8px;
  color: var(--muted);
}

.services-note{
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 860px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}
/* ===============================
   SERVICES – FINAL POLISH (WCAG-safe)
================================ */

/* λίγο καλύτερο ρυθμό ανάγνωσης */
.services-intro,
.service-card{
  line-height: 1.75;
}

/* πιο “premium” κάρτες: ελάχιστη κίνηση, όχι υπερβολές */
.service-card{
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.service-card:hover{
  transform: translateY(-2px);
}

/* μην κάνουμε hover motion για reduced motion */
@media (prefers-reduced-motion: reduce){
  .service-card{ transition: none; }
  .service-card:hover{ transform: none; }
}

/* πιο ωραίο grid spacing */
.services-grid{
  gap: 16px;
}

/* ισορροπία τίτλων/κειμένου μέσα στην κάρτα */
.service-card h2{
  line-height: 1.25;
  letter-spacing: 0.2px;
}

/* bullets πιο “καθαρά” και αναγνώσιμα */
.service-list{
  padding-left: 18px;
  margin-top: 8px;
}

.service-list li{
  margin-bottom: 10px;
}

/* καλύτερη εμφάνιση link στο note */
.services-note a{
  color: var(--lavender-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-note a:hover,
.services-note a:focus{
  text-decoration-thickness: 2px;
}

/* focus ring σε κάρτες όταν κάποιος πλοηγείται με πληκτρολόγιο
   (βοηθάει WCAG: ο χρήστης βλέπει πού βρίσκεται) */
.service-card:focus-within{
  outline: 3px solid rgba(143,122,165,0.35);
  outline-offset: 6px;
  border-radius: calc(var(--radius) + 4px);
}

/* mobile: λίγο καλύτερα περιθώρια */
@media (max-width: 860px){
  .services-intro,
  .service-card{
    padding: 16px;
  }
}
/* ===============================
   CONTACT – 3 COLUMN LAYOUT (WCAG-safe)
================================ */

/* sr-only utility (για screen readers) */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.contact-layout{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-panel{
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-panel h2{
  margin: 0 0 12px;
  font-size: 20px;
}

.contact-item{
  margin-bottom: 16px;
}

.contact-item h3{
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--text);
}

.contact-item p{
  margin: 0 0 10px;
  line-height: 1.6;
}

.contact-item a{
  color: var(--lavender-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-item a:hover,
.contact-item a:focus{
  text-decoration-thickness: 2px;
}

.map-link{
  display:inline-block;
  font-weight: 600;
}

.contact-note{
  margin-top: 10px;
  color: var(--muted);
}

/* Hours box */
.hours-box{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(183,166,199,0.10);
}

.hours-main{
  margin: 0 0 12px;
}

.hours-muted{
  color: var(--muted);
}

.hours-foot{
  margin: 0;
  color: var(--muted);
}

/* Map */
.map-embed{
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 3;
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
}

.map-fallback{
  margin: 10px 0 0;
  color: var(--muted);
}

/* Keyboard focus highlight */
.contact-panel:focus-within{
  outline: 3px solid rgba(143,122,165,0.35);
  outline-offset: 6px;
  border-radius: calc(var(--radius) + 4px);
}

/* Responsive: stack columns */
@media (max-width: 980px){
  .contact-layout{
    grid-template-columns: 1fr;
  }
}
/* ===============================
   LEGAL PAGES + COOKIE BANNER (WCAG-friendly)
================================ */
.legal-card{
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-top: 14px;
  line-height: 1.75;
}

.legal-card h2{
  margin: 18px 0 8px;
  font-size: 18px;
}

.legal-muted{
  color: var(--muted);
  margin-top: 0;
}

/* footer cookie settings button */
.cookie-settings-link{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 600;
}
.cookie-settings-link:hover,
.cookie-settings-link:focus{
  background: rgba(183,166,199,0.16);
  color: var(--lavender-deep);
}

/* Cookie banner (non-modal) */
.cookie-banner{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2500;
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
  padding: 14px 14px;
}

.cookie-banner p{
  margin: 0 0 10px;
  color: var(--text);
}

.cookie-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-btn{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-btn.primary{
  background: rgba(183,166,199,0.20);
}

.cookie-btn:focus-visible{
  outline: 3px solid rgba(143,122,165,0.55);
  outline-offset: 2px;
}

.cookie-link{
  color: var(--lavender-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* Settings modal */
.cookie-modal[hidden]{ display:none; }

.cookie-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.cookie-modal .cookie-modal-card{
  width: min(640px, 96vw);
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  padding: 16px;
}

.cookie-modal h2{
  margin: 0 0 10px;
  font-size: 20px;
}

.cookie-row{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.cookie-row:first-of-type{
  border-top: none;
}

.cookie-toggle{
  display:flex;
  align-items:center;
  gap: 8px;
}

.cookie-small{
  color: var(--muted);
  margin: 8px 0 0;
}

@media (max-width: 520px){
  .cookie-row{ flex-direction: column; align-items:flex-start; }
}
/* Social links (WCAG-friendly) */
.social-list{
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 10px;
}

.social-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.9);
}

.social-link:hover,
.social-link:focus{
  background: rgba(183,166,199,0.16);
  color: var(--lavender-deep);
}

.social-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(183,166,199,0.10);
  flex: 0 0 auto;
}

.social-icon svg{
  width: 18px;
  height: 18px;
  fill: currentColor; /* παίρνει το χρώμα του link */
  display: block;
}

/* προαιρετικά: λίγο καλύτερο focus */
.social-link:focus-visible{
  outline: 3px solid rgba(143,122,165,0.55);
  outline-offset: 2px;
}
@media (max-width:860px){
  .bio-photo img{
    width: 100%;
    max-width: 100%;
  }
  .bio-text, .bio-text p{
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
