/* ====== Global theme variables (Night default) ====== */
:root{
  --bg:#05080c;
  --text:#eaf7ff;
  --muted:#9ab8c7;

  --cyan:#43d6ff;
  --cyan2:#1fb8ff;

  --stroke: rgba(67,214,255,.45);
  --stroke2: rgba(67,214,255,.22);

  --glass: rgba(0,0,0,.55);
  --shadow: 0 10px 28px rgba(0,0,0,.65);

  --radius: 14px;
}

/* ====== Day (Morning) ====== */
html[data-theme="morning"]{
  --bg:#ffffff;
  --text:#0b0f14;
  --muted:#4c5a6b;

  --cyan:#43d6ff;
  --cyan2:#1fb8ff;

  --stroke: rgba(67,214,255,.45);
  --stroke2: rgba(67,214,255,.22);

  --glass: rgba(255,255,255,.70);
  --shadow: 0 10px 28px rgba(10,20,40,.18);

  --radius: 14px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* ✅ FULL WIDTH (πιάνει όλη την οθόνη) */
.container{
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.page{ padding-top: 22px; }

/* ====== Topbar ====== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,.70), rgba(0,0,0,.40));
  border-bottom: 1px solid rgba(67,214,255,.12);
  backdrop-filter: blur(10px);
}
html[data-theme="morning"] .topbar{
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.60));
  border-bottom: 1px solid rgba(67,214,255,.18);
}

.topbar__inner{
  height: 90px;
  display:flex;
  align-items:center;
  gap:16px;
}

/* ====== Brand / Logo ====== */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color: var(--text);
}

/* Only the actual logo/text inside should be clickable, not empty space */
.brand{
  pointer-events: none;
}
.brand__box,
.brand__name{
  pointer-events: auto;
}

.brand__box{
  width: 150px;
  height: 82px;
  border-radius: 18px;
  background: rgba(0,0,0,.85);
  border: 1px solid rgba(67,214,255,.18);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.60) inset,
    0 0 28px rgba(67,214,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
html[data-theme="morning"] .brand__box{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(67,214,255,.22);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.60) inset,
    0 0 20px rgba(67,214,255,.10);
}

.brand__logo{
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(67,214,255,.22));
}

.brand__name{
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(120,200,220,.55);
}
html[data-theme="morning"] .brand__name{
  color: rgba(11,15,20,.55);
}

/* ====== Day/Night button (icon only, no box) ====== */
.mode{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.mode__text{ display:none; }

.mode__dot{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  position: relative;
  background: #dbe3ff;
  box-shadow: 0 0 6px rgba(160,160,255,.45);
  transition: background-color .35s ease, box-shadow .35s ease;
}

.mode__dot::before,
.mode__dot::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: box-shadow .35s ease, opacity .35s ease;
}

/* Night theme – moon */
html[data-theme="night"] .mode__dot{
  background: #dbe3ff;
  box-shadow: 0 0 6px rgba(160,160,255,.45);
}

html[data-theme="night"] .mode__dot::before{
  opacity: 1;
  box-shadow: -6px 0 0 0 var(--bg);
}

html[data-theme="night"] .mode__dot::after{
  opacity: 0;
  box-shadow: none;
}

/* Morning theme – sun */
html[data-theme="morning"] .mode__dot{
  background: #ffd75e;
  box-shadow: 0 0 8px rgba(255,215,94,.65);
}

html[data-theme="morning"] .mode__dot::before{
  opacity: 0;
  box-shadow: none;
}

html[data-theme="morning"] .mode__dot::after{
  opacity: 1;
  box-shadow:
    0 -7px 0 0 rgba(255,215,94,.9),
    0 7px 0 0 rgba(255,215,94,.9),
    7px 0 0 0 rgba(255,215,94,.9),
    -7px 0 0 0 rgba(255,215,94,.9);
}

/* ====== Nav pills (desktop) ====== */
.nav{
  margin-left: auto;
  display:flex;
  align-items:center;
  gap:14px;
}

.nav__pill{
  text-decoration:none;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke2);
  background: rgba(0,0,0,.35);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset,
    0 0 18px rgba(67,214,255,.06);
  transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
}

html[data-theme="morning"] .nav__pill{
  background: rgba(0,0,0,.06);
  border-color: rgba(67,214,255,.20);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.60) inset,
    0 0 14px rgba(67,214,255,.05);
}

.nav__pill:hover{
  transform: translateY(-1px);
  border-color: var(--stroke);
  box-shadow: 0 0 22px rgba(67,214,255,.12);
}
html[data-theme="morning"] .nav__pill:hover{
  box-shadow: 0 0 18px rgba(67,214,255,.10);
}

.nav__pill.is-active{
  color: #00131a;
  background: linear-gradient(180deg, rgba(67,214,255,.95), rgba(31,184,255,.85));
  border-color: rgba(67,214,255,.75);
  box-shadow: 0 0 26px rgba(67,214,255,.20);
}
html[data-theme="morning"] .nav__pill.is-active{
  color: #00131a;
  background: linear-gradient(180deg, rgba(67,214,255,.95), rgba(31,184,255,.85));
  border-color: rgba(67,214,255,.75);
  box-shadow: 0 0 26px rgba(67,214,255,.20);
}

/* ====== Social (icons as images, locked sizing) ====== */
.social{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left: 10px;
}

.social__btn{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--stroke2);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background: rgba(0,0,0,.20);
  flex: 0 0 auto;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.25) inset,
    0 0 14px rgba(67,214,255,.06);
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

html[data-theme="morning"] .social__btn{
  background: rgba(0,0,0,.06);
  border-color: rgba(67,214,255,.20);
}

.social__btn img{
  width:22px;
  height:22px;
  max-width:22px;
  max-height:22px;
  display:block;
  object-fit:contain;
  filter: grayscale(100%);
  transition: filter .15s ease, transform .15s ease;
}

.social__btn:hover{
  transform: translateY(-1px);
  border-color: var(--stroke);
  box-shadow: 0 0 22px rgba(67,214,255,.18);
}
.social__btn:hover img{
  filter:none;
  transform: scale(1.05);
}

/* ====== Mobile hamburger + dropdown ====== */
.burger{
  display:none;
  width: 50px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(120,160,190,.35);
  background: rgba(35,44,60,.45);
  cursor:pointer;
  margin-left:8px;
}
html[data-theme="morning"] .burger{
  background: rgba(0,0,0,.06);
  border-color: rgba(67,214,255,.20);
}

.burger span{
  display:block;
  height:2px;
  width: 22px;
  margin: 7px auto;
  background: var(--text);
  border-radius: 999px;
}

.mobile{
  display: none; /* hidden by default on desktop */
  border-top: 1px solid rgba(67,214,255,.12);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
}
html[data-theme="morning"] .mobile{
  background: rgba(255,255,255,.78);
  border-top: 1px solid rgba(67,214,255,.18);
}

.mobile__inner{
  padding: 12px 0 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile__link{
  text-decoration:none;
  color: var(--text);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke2);
  background: rgba(0,0,0,.35);
}
html[data-theme="morning"] .mobile__link{
  background: rgba(0,0,0,.05);
  border-color: rgba(67,214,255,.20);
}

.mobile__link:hover{
  border-color: var(--stroke);
}

@media (max-width: 980px){
  .nav{ display:none; }
  .social{ display:none; }
  .burger{ display:block; }
  .brand__name{ display:none; }
  .login-btn{ display:none !important; }
  .auth-inline{ display:none; }
  .mode{ display:none; }
  .mode.mode--mobile{ display:inline-flex; margin-left: 8px; }

  /* Prevent overflow on tablets/phones */
  .brand{ min-width: 0; flex: 1 1 auto; } 
}

/* Tighten the header on small phones (320–480px) */
@media (max-width: 520px){
  .container{ padding-left: 16px; padding-right: 16px; }
  .topbar__inner{ height: 76px; gap: 10px; }

  .brand__box{ width: 120px; height: 68px; border-radius: 16px; }
  .brand__logo{ width: 60px; height: 60px; }

  .mode{ padding: 8px 10px; border-radius: 14px; gap: 8px; }
  .login-btn{ padding: 10px 14px; border-radius: 14px; }
  .auth-inline{ gap: 8px; margin-left: 0; }
  .logout-btn{ padding: 10px 14px; border-radius: 14px; }
}

@media (max-width: 420px){
  .container{ padding-left: 12px; padding-right: 12px; }
  .topbar__inner{ height: auto; padding: 10px 0; flex-wrap: wrap; row-gap: 10px; }

  /* Keep brand + burger on the first row */
  .brand{ order: 1; }
  .burger{ order: 2; }

  /* Move controls to the next row if needed */
  .mode.mode--mobile{ order: 3; margin-left: auto; }
  .login-btn, .auth-inline{ order: 4; margin-left: auto; }

  /* Hide long labels to fit universally */
  .mode__text{ display: none; }
  .welcome-text{ display: none; }
}













/*/* =========================
   HOME (Hero + Cards)
   Background image behind text + button reactions
   ========================= */

/* =========================
   HOME (Hero + Cards)
   Background image behind text + button reactions
   ========================= */

.hero{
  position: relative;
  min-height: 75vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-top: 18px;
}

/* ✅ εικόνα πίσω από τίτλο/υπότιτλο/κουμπιά (NIGHT) */
.hero__bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85)),
    url("hero image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.10) contrast(1.05);
  z-index: 0;
}

/* ✅ Day mode overlay (κρατάμε την ΙΔΙΑ εικόνα) */
html[data-theme="morning"] .hero__bg{
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.88)),
    url("hero image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.05) contrast(1.00);
}

.hero__content{
  position:relative;
  z-index:1;
  width: min(980px, 100%);
  padding: 90px 24px;
  text-align:center;
}

/* =========================
   ✅ FIX BUTTONS ONLY (Hero CTA)
   - prevents purple/underline visited links
   - restores button look in hero
   ========================= */

.hero__eyebrow{
  color: var(--cyan);
  letter-spacing: .22em;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 14px;
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
}

.hero__title{
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  margin: 0 0 16px;
  font-weight: 900;
  text-shadow:
    0 2px 14px rgba(0,0,0,.35),
    0 0 30px rgba(67,214,255,.12);
}

.hero__accent{
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(67,214,255,.25);
}

.hero__subtitle{
  margin: 0 auto 22px;
  width: min(820px, 100%);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
}

.hero__cta{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap: wrap;
  margin-top: 10px;
}

a.btn,
a.btn:link,
a.btn:visited{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 18px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid transparent;
  cursor:pointer;
  position: relative;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  color: inherit; /* stop purple visited */
}

/* glow wave */
a.btn::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle, rgba(255,255,255,.45), transparent 60%);
  opacity:0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

a.btn:hover::after{
  opacity:.35;
  transform: translateY(0);
}

a.btn--primary,
a.btn--primary:link,
a.btn--primary:visited{
  background: linear-gradient(180deg, rgba(67,214,255,.95), rgba(31,184,255,.85));
  color: #00131a;
  box-shadow: 0 10px 26px rgba(67,214,255,.18);
}

a.btn--ghost,
a.btn--ghost:link,
a.btn--ghost:visited{
  background: rgba(0,0,0,.22);
  color: var(--text);
  border-color: rgba(67,214,255,.32);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

html[data-theme="morning"] a.btn--ghost,
html[data-theme="morning"] a.btn--ghost:link,
html[data-theme="morning"] a.btn--ghost:visited{
  background: rgba(0,0,0,.06);
  border-color: rgba(67,214,255,.22);
}

/* hover/click reaction */
a.btn:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 45px rgba(67,214,255,.40);
}
a.btn:active{
  transform: translateY(-1px) scale(1.02);
}

/* =========================
   STATS
   ========================= */

.hero__stats{
  margin: 26px auto 0;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.stat{
  min-width: 180px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(67,214,255,.18);
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(8px);
}

html[data-theme="morning"] .stat{
  background: rgba(0,0,0,.05);
  border-color: rgba(67,214,255,.22);
}

.stat__num{
  font-weight: 900;
  color: var(--text);
}

.stat__label{
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

/* =========================
   Cards section (categories reaction)
   ========================= */

.home-sections{
  padding: 34px 0 56px;
}

.section-title{
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 900;
}

.cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 980px){
  .hero__content{ padding: 70px 16px; }
  .cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .cards{ grid-template-columns: 1fr; }
}

.card{
  text-decoration:none;
  color: var(--text);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(67,214,255,.18);
  background: rgba(0,0,0,.20);
  position: relative;
  overflow:hidden;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

/* subtle glow */
.card::after{
  content:"";
  position:absolute;
  inset:-30%;
  background: radial-gradient(circle, rgba(67,214,255,.25), transparent 60%);
  opacity:0;
  transition: opacity .25s ease;
}

.card:hover::after{
  opacity:.35;
}

html[data-theme="morning"] .card{
  background: rgba(0,0,0,.05);
  border-color: rgba(67,214,255,.22);
}

.card:hover{
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 20px 45px rgba(67,214,255,.30);
  border-color: rgba(67,214,255,.45);
}

.card__icon{
  font-size: 26px;
  margin-bottom: 10px;
}

.card__title{
  font-weight: 900;
  margin-bottom: 6px;
}

.card__text{
  color: var(--muted);
  line-height: 1.5;
}













/* =========================
   CATEGORIES (Modern cards)
   ========================= */

.cats{
  padding: 28px 0 64px;
}

.cats__head{
  text-align:center;
  margin: 0 auto 18px;
  max-width: 900px;
}

.cats__title{
  margin: 0 0 6px;
  font-weight: 1000;
  letter-spacing: .12em;
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(67,214,255,.18);
}

.cats__sub{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cats__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

/* Responsive */
@media (max-width: 1200px){
  .cats__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 780px){
  .cats__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .cats__grid{ grid-template-columns: 1fr; }
}

.cat{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(67,214,255,.18);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

html[data-theme="morning"] .cat{
  background: rgba(0,0,0,.05);
  border-color: rgba(67,214,255,.20);
  box-shadow: 0 14px 40px rgba(10,20,40,.10);
}

.cat:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(67,214,255,.14);
  border-color: rgba(67,214,255,.42);
}

/* Image */
.cat__media{
  display:block;
  position: relative;
  height: 160px;
  overflow:hidden;
}

.cat__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s ease;
}

/* Cinematic overlay */
.cat__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.55));
  pointer-events:none;
}

.cat:hover .cat__media img{
  transform: scale(1.08);
}

.cat__body{
  padding: 14px 14px 16px;
}

.cat__name{
  margin: 0 0 6px;
  font-weight: 950;
  color: var(--cyan);
}

html[data-theme="morning"] .cat__name{
  color: #0b0f14;
}

.cat__text{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
  min-height: 44px;
}

/* Button */
.cat__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration:none;
  font-weight: 900;
  color: var(--text);
  border: 1px solid rgba(67,214,255,.30);
  background: rgba(0,0,0,.18);
  position: relative;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

html[data-theme="morning"] .cat__btn{
  background: rgba(0,0,0,.06);
  border-color: rgba(67,214,255,.22);
}

/* Button reaction */
.cat__btn::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle, rgba(255,255,255,.35), transparent 60%);
  opacity:0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.cat__btn:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 45px rgba(67,214,255,.22);
  border-color: rgba(67,214,255,.55);
}

.cat__btn:hover::after{
  opacity:.35;
  transform: translateY(0);
}

/* Accent (Custom order card) */
.cat--accent{
  border-color: rgba(67,214,255,.35);
}

.cat__btn--accent{
  background: linear-gradient(180deg, rgba(67,214,255,.95), rgba(31,184,255,.85));
  color: #00131a;
  border-color: rgba(67,214,255,.65);
}

.cat__btn--accent:hover{
  box-shadow: 0 18px 55px rgba(67,214,255,.30);
}













/* =========================
   FOOTER
   ========================= */

.footer{
  margin-top: 60px;
  padding: 48px 24px 18px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.95));
  border-top: 1px solid rgba(67,214,255,.18);
}

html[data-theme="morning"] .footer{
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.95));
  border-top: 1px solid rgba(67,214,255,.22);
}

.footer__inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__logo{
  font-size: 22px;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 10px;
}

.footer__desc{
  color: var(--muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer__title{
  font-weight: 900;
  margin-bottom: 12px;
}

.footer__col p{
  color: var(--muted);
  line-height: 1.6;
}

.footer__col a{
  color: var(--text);
  text-decoration: none;
}

.footer__col a:hover{
  color: var(--cyan);
}

/* Links */
.footer__links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer__links li{
  margin-bottom: 8px;
}

/* Social */
.footer__social{
  display:flex;
  gap:14px;
  flex-wrap: wrap;
}

.footer__social a{
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid rgba(67,214,255,.25);
  background: rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

html[data-theme="morning"] .footer__social a{
  background: rgba(0,0,0,.05);
}

.footer__social a:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(67,214,255,.25);
}

/* Bottom bar */
.footer__bottom{
  margin-top: 34px;
  padding-top: 14px;
  text-align:center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(67,214,255,.15);
}

/* Responsive */
@media (max-width: 900px){
  .footer__inner{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px){
  .footer__inner{
    grid-template-columns: 1fr;
    text-align:center;
  }

  .footer__desc{
    margin: 0 auto;
  }

  .footer__social{
    justify-content:center;
  }
}













/* =========================
   CATEGORY PAGE (Micro)
   ========================= */

.cat-hero{
  position: relative;
  min-height: 52vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-top: 18px;
}

.cat-hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.88)),
    radial-gradient(900px 520px at 30% 20%, rgba(67,214,255,.16), transparent 55%),
    radial-gradient(900px 520px at 70% 20%, rgba(31,184,255,.10), transparent 60%);
}

html[data-theme="morning"] .cat-hero__bg{
  background:
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.92)),
    radial-gradient(900px 520px at 30% 20%, rgba(67,214,255,.16), transparent 55%),
    radial-gradient(900px 520px at 70% 20%, rgba(31,184,255,.10), transparent 60%);
}

.cat-hero__inner{
  position:relative;
  z-index:1;
  width: min(980px, 100%);
  padding: 64px 18px;
  text-align:center;
}

.cat-hero__eyebrow{
  margin:0 0 10px;
  font-weight:900;
  letter-spacing:.24em;
  font-size:12px;
  color: var(--cyan);
}

.cat-hero__title{
  margin:0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 1000;
  line-height: 1.03;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.cat-hero__subtitle{
  margin: 0 auto 18px;
  width: min(820px, 100%);
  color: var(--muted);
  line-height: 1.6;
}

.cat-hero__actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Products */
.product-section{
  padding: 34px 0 60px;
}

.product-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.product-title{
  margin:0;
  font-size:22px;
  font-weight: 900;
}

.product-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(67,214,255,.22);
  background: rgba(0,0,0,.18);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

html[data-theme="morning"] .pill{
  background: rgba(0,0,0,.05);
}

.products-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

@media (max-width: 980px){
  .products-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .products-grid{ grid-template-columns: 1fr; }
}

.product-card{
  border-radius: 18px;
  border: 1px solid rgba(67,214,255,.18);
  background: rgba(0,0,0,.18);
  overflow:hidden;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

html[data-theme="morning"] .product-card{
  background: rgba(0,0,0,.04);
  border-color: rgba(67,214,255,.22);
}

.product-card:hover{
  transform: translateY(-3px);
  border-color: rgba(67,214,255,.35);
  box-shadow: 0 0 30px rgba(67,214,255,.12);
}

.product-media{
  display:block;
  height: 210px;
  overflow:hidden;
}

.product-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1);
  filter: brightness(.92) contrast(1.05);
  transition: transform .45s ease, filter .45s ease;
}

.product-card:hover .product-media img{
  transform: scale(1.07);
  filter: brightness(1.02) contrast(1.08);
}

.product-body{
  padding: 16px;
}

.product-name{
  margin: 0 0 8px;
  font-weight: 950;
  font-size: 16px;
}













/* ======================================================
   RESPONSIVE + FULL IMAGE VISIBILITY (NO OTHER CHANGES)
   - adapts to all screens
   - categories & product cards: same size, bigger boxes
   - images fully visible (no cropping) -> object-fit: contain
   ====================================================== */

/* Better responsive padding on all screens (keeps your full width) */
.container{
  padding-left: clamp(14px, 3vw, 24px);
  padding-right: clamp(14px, 3vw, 24px);
}

/* Make sure media never overflows */
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   CATEGORIES: bigger media + full image
   ========================= */

/* Keep the grid responsive everywhere */
.cats__grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1200px){
  .cats__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 780px){
  .cats__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .cats__grid{ grid-template-columns: 1fr; }
}

/* Same height cards */
.cat{
  display:flex;
  flex-direction: column;
  height: 100%;
}

/* ✅ Bigger image box so image fits without cropping */
.cat__media{
  height: 240px;           /* bigger */
  padding: 14px;           /* space around image */
  background: rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ✅ Full image visible (NO CROP) */
.cat__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;     /* IMPORTANT: show whole image */
  transform: none !important;   /* stop zoom effect */
}

/* Keep overlay but don’t darken image too much */
.cat__media::after{
  opacity: .25;
}

/* Make the body align nicely and button stay bottom */
.cat__body{
  flex:1;
  display:flex;
  flex-direction: column;
}
.cat__btn{
  margin-top:auto;
}

/* =========================
   PRODUCTS: bigger media + full image
   ========================= */

.product-card{
  display:flex;
  flex-direction: column;
  height: 100%;
}

/* ✅ Bigger product image area */
.product-media{
  height: 320px;           /* bigger so photos don’t feel cropped */
  padding: 16px;
  background: rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ✅ Full image visible (NO CROP) */
.product-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;     /* IMPORTANT: show whole image */
  transform: none !important;   /* stop zoom effect */
  filter: none !important;      /* prevent darkening */
}

/* Keep product body consistent & actions bottom */
.product-body{
  flex:1;
  display:flex;
  flex-direction: column;
}
.product-actions{
  margin-top:auto;
}

/* =========================
   Mobile tuning (still big, but fits)
   ========================= */
@media (max-width: 560px){
  .cat__media{ height: 210px; }
  .product-media{ height: 260px; }
}

.product-desc{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.product-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.tag{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(67,214,255,.18);
  background: rgba(0,0,0,.18);
  font-size: 12px;
  font-weight: 850;
  color: var(--text);
}

html[data-theme="morning"] .tag{
  background: rgba(0,0,0,.05);
}

.product-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Small buttons */
.btn--sm{
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
}




/* =========================
   FIX: HERO CTA BUTTONS (links looking purple/underlined)
   Paste at the END of style.css
   ========================= */

a.btn,
a.btn:link,
a.btn:visited{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  color: inherit !important;       /* stop purple visited */
}

.hero__cta{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap: wrap;
}

/* ensure variants always paint */
a.btn--primary,
a.btn--primary:link,
a.btn--primary:visited{
  background: linear-gradient(180deg, rgba(67,214,255,.95), rgba(31,184,255,.85)) !important;
  color: #00131a !important;
  border: 1px solid rgba(67,214,255,.75) !important;
  box-shadow: 0 10px 26px rgba(67,214,255,.18) !important;
}

a.btn--ghost,
a.btn--ghost:link,
a.btn--ghost:visited{
  background: rgba(0,0,0,.22) !important;
  color: var(--text) !important;
  border: 1px solid rgba(67,214,255,.32) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.18) !important;
}

html[data-theme="morning"] a.btn--ghost,
html[data-theme="morning"] a.btn--ghost:link,
html[data-theme="morning"] a.btn--ghost:visited{
  background: rgba(0,0,0,.06) !important;
  border-color: rgba(67,214,255,.22) !important;
}

/* keep your hover/click reaction */
a.btn:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 45px rgba(67,214,255,.40);
}

a.btn:active{
  transform: translateY(-1px) scale(1.02);
}




























/* =========================
   HERO CTA BUTTONS – FINAL FIX
   ========================= */

/* reset links */
.hero__cta a{
  text-decoration: none !important;
  font-weight: 900;
}

/* =========================
   PRIMARY (Αγόρασε τώρα)
   ίδιο με Home κουμπί
   ========================= */
.hero__cta .btn--primary{
  background: linear-gradient(180deg, #6fd9ff, #3bbcff) !important;
  color: #00131a !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  box-shadow:
    0 10px 30px rgba(67,214,255,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .18s ease, box-shadow .18s ease;
}

.hero__cta .btn--primary:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 18px 45px rgba(67,214,255,.55);
}

.hero__cta .btn--primary:active{
  transform: translateY(-1px) scale(1.02);
}

/* =========================
   SECONDARY (Ζήτα custom προσφορά)
   ίδιο με nav pills
   ========================= */
.hero__cta .btn--ghost{
  background: transparent !important;
  color: var(--text) !important;
  border: 1px solid rgba(120,200,255,.45) !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.25),
    0 8px 22px rgba(0,0,0,.25);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hero__cta .btn--ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(67,214,255,.75);
  box-shadow: 0 14px 35px rgba(67,214,255,.25);
}

/* =========================
   DAY MODE – stays identical
   ========================= */
html[data-theme="morning"] .hero__cta .btn--ghost{
  background: transparent !important;
  color: #0b0f14 !important;
  border-color: rgba(67,214,255,.35) !important;
}



































.products-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:18px}
@media(max-width:1000px){.products-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.products-grid{grid-template-columns:1fr}}
.product-card{border:1px solid rgba(67,214,255,.22);border-radius:18px;overflow:hidden;background:rgba(255,255,255,.02)}
.product-img{width:100%;height:220px;object-fit:cover;display:block}
.product-media{position:relative}
.product-badge{position:absolute;top:12px;left:12px;padding:6px 10px;border-radius:999px;border:1px solid rgba(67,214,255,.35);background:rgba(67,214,255,.14);font-size:12px;font-weight:800}
.product-body{padding:14px}
.product-title{margin:0 0 6px;font-size:17px}
.product-desc{margin:0 0 12px;opacity:.8;line-height:1.4}
.product-footer{display:flex;justify-content:space-between;align-items:center;gap:10px}
.product-price{font-weight:900}
.btn-mini{display:inline-flex;padding:10px 14px;border-radius:999px;border:1px solid rgba(67,214,255,.35);text-decoration:none}
.empty-box{padding:18px;border:1px dashed rgba(67,214,255,.25);border-radius:18px;opacity:.8}

.section-subtitle{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 900px;
}

.product-img--placeholder{
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(67,214,255,.18);
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(67,214,255,.12);
  background: rgba(0,0,0,.25);
}

html[data-theme="morning"] .site-footer{
  background: rgba(0,0,0,.03);
  border-top: 1px solid rgba(67,214,255,.18);
}

.site-footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer__muted{ color: var(--muted); }
.site-footer__sep{ margin: 0 8px; opacity: .5; }

/* =========================
   PROFESSIONAL LOGIN BUTTON
   ========================= */

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid rgba(67,214,255,.35);
  background: linear-gradient(180deg, rgba(67,214,255,.08), rgba(31,184,255,.12));
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all .18s ease;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 0 0 1px rgba(67,214,255,.12) inset,
    0 4px 16px rgba(67,214,255,.08);
}

html[data-theme="morning"] .login-btn {
  background: linear-gradient(180deg, rgba(67,214,255,.12), rgba(31,184,255,.18));
  border-color: rgba(67,214,255,.40);
  box-shadow: 
    0 0 0 1px rgba(67,214,255,.18) inset,
    0 4px 16px rgba(67,214,255,.12);
}

.login-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(67,214,255,.60);
  background: linear-gradient(180deg, rgba(67,214,255,.15), rgba(31,184,255,.25));
  box-shadow: 
    0 0 0 1px rgba(67,214,255,.25) inset,
    0 8px 32px rgba(67,214,255,.20);
}

.login-icon {
  opacity: 0.9;
  transition: opacity .18s ease;
}

.login-btn:hover .login-icon {
  opacity: 1;
}

/* =========================
   LOGGED-IN WELCOME + LOGOUT
   ========================= */

.auth-inline{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
  white-space: nowrap;
}

.welcome-text{
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  opacity: .95;
}

.logout-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,107,107,.35);
  background: linear-gradient(180deg, rgba(255,107,107,.08), rgba(255,107,107,.14));
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all .18s ease;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(255,107,107,.10) inset,
    0 4px 16px rgba(255,107,107,.10);
}

.logout-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,107,107,.60);
  background: linear-gradient(180deg, rgba(255,107,107,.16), rgba(255,107,107,.26));
  box-shadow:
    0 0 0 1px rgba(255,107,107,.22) inset,
    0 8px 32px rgba(255,107,107,.18);
}

/* =========================
   MODAL (Logout confirm)
   ========================= */

body.modal-open{ overflow: hidden; }

.modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(8px);
}

.modal{
  width: min(520px, 92vw);
  border-radius: 22px;
  border: 1px solid var(--stroke2);
  background: var(--glass);
  box-shadow: var(--shadow);
  padding: 22px;
}

.modal__title{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.modal__text{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.45;
}

.modal__actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.modal__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke2);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

html[data-theme="morning"] .modal__btn{ background: rgba(0,0,0,.05); }

.modal__btn--ghost:hover{ border-color: var(--stroke); }

.modal__btn--danger{
  border-color: rgba(255,107,107,.45);
  background: rgba(255,107,107,.16);
}

.modal__btn--danger:hover{
  border-color: rgba(255,107,107,.70);
  background: rgba(255,107,107,.24);
}

/* Admin action buttons (used in admin items list) */
.admin-actions{
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.admin-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(67,214,255,.22);
  background: rgba(0,0,0,.18);
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

html[data-theme="morning"] .admin-btn{ background: rgba(0,0,0,.05); }

.admin-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(67,214,255,.45);
  box-shadow: 0 10px 22px rgba(67,214,255,.10);
}

.admin-btn--danger{
  border-color: rgba(255,107,107,.35);
  background: rgba(255,107,107,.10);
}

.admin-btn--danger:hover{
  border-color: rgba(255,107,107,.65);
  box-shadow: 0 10px 22px rgba(255,107,107,.14);
}

/* Make button-based mobile links look like anchors */
button.mobile__link{
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

/* =========================
   AUTH PAGES (Login/Register)
   ========================= */

.auth-container{
  min-height: 80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px 0;
}

.auth-card{
  width: min(520px, 90vw);
  padding: 32px;
  border-radius: 22px;
  border: 1px solid var(--stroke2);
  background: var(--glass);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.auth-card--narrow{ width: min(420px, 90vw); }

.auth-header{ text-align:center; margin-bottom: 28px; }

.auth-title{
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
}

.auth-subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.alert{
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

.alert-error{
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.alert-success{
  background: rgba(67, 214, 255, 0.15);
  border: 1px solid var(--stroke2);
  color: var(--cyan);
}

.form-group{ margin-bottom: 20px; }

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px){
  .form-row{ grid-template-columns: 1fr; }
}

.form-label{
  display:block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}

.form-input{
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--stroke2);
  background: rgba(0,0,0,.35);
  color: var(--text);
  font-size: 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

html[data-theme="morning"] .form-input{ background: rgba(0,0,0,.05); }

.form-input:focus{
  outline:none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(67, 214, 255, 0.15);
}

.form-input::placeholder{ color: var(--muted); }

.password-field{ position: relative; }
.password-field input{ padding-right: 50px; }

.password-toggle{
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background:none;
  border:none;
  cursor:pointer;
  color: var(--muted);
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  transition: color .15s ease;
}

.password-toggle:hover{ color: var(--cyan); }

.password-toggle svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.password-requirements{
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(67, 214, 255, 0.08);
  border: 1px solid var(--stroke2);
  font-size: 14px;
  color: var(--muted);
}

.password-requirements strong{
  color: var(--text);
  display:block;
  margin-bottom: 8px;
}

.password-requirements ul{ margin:0; padding-left: 18px; }
.password-requirements li{ margin-bottom: 4px; }

.auth-btn{
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border:none;
  background: linear-gradient(180deg, var(--cyan), var(--cyan2));
  color: #00131a;
  font-size: 16px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  margin-bottom: 20px;
}

.auth-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(67, 214, 255, 0.3);
}

.auth-links{ text-align:center; }

.auth-links__p{
  margin: 0;
  color: var(--muted);
}

.auth-links__p + .auth-links__p{ margin-top: 8px; }

.auth-links a{
  color: var(--cyan);
  text-decoration:none;
  font-weight: 600;
}

.auth-links a:hover{ text-decoration: underline; }

.auth-link-inline{
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

/* Login page uses a narrower card */
.auth-page--login .auth-card{ width: min(420px, 90vw); }

/* =========================
   NAVBAR MOBILE AUTH (no inline styles)
   ========================= */

.mobile-auth{
  border-top: 1px solid rgba(67,214,255,.20);
  margin: 12px 0;
  padding-top: 12px;
}

.mobile-auth__user{
  padding: 8px 14px;
  color: var(--cyan);
  font-weight: 700;
  font-size: 14px;
}

.mobile__link--danger{ color: #ff6b6b; }

.mobile-login-icon{
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

/* =========================
   PRODUCT CARDS – VISUAL POLISH (final override)
   ========================= */

.products-grid{
  margin-top: 18px;
}

.product-card{
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(67,214,255,.18);
  background:
    radial-gradient(900px 420px at 20% -10%, rgba(67,214,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

html[data-theme="morning"] .product-card{
  background:
    radial-gradient(900px 420px at 20% -10%, rgba(67,214,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.01));
  box-shadow: 0 14px 36px rgba(10,20,40,.10);
  border-color: rgba(67,214,255,.22);
}

.product-card::after{
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 60%;
  background: radial-gradient(circle at 30% 40%, rgba(67,214,255,.22), transparent 60%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.product-card:hover{
  transform: translateY(-5px);
  border-color: rgba(67,214,255,.42);
  box-shadow: 0 22px 60px rgba(67,214,255,.14), 0 18px 55px rgba(0,0,0,.45);
}


.product-media{
  position: relative;
  height: 320px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.06));
  border-bottom: 1px solid rgba(67,214,255,.14);
}

html[data-theme="morning"] .product-media{
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.02));
}

.product-media .product-img,
.product-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(0,0,0,.10);
}

.product-img--placeholder{
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1px dashed rgba(67,214,255,.25);
  background: rgba(0,0,0,.10);
}

.product-body{
  padding: 16px 16px 18px;
  background:linear-gradient(360deg, rgb(46, 86, 108), rgba(0, 0, 0, 0.407));
  
}

.product-title,
.product-name{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .2px;
}

.product-desc{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  /* Show full description (no line clamp) */
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.product-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product-price{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(67,214,255,.28);
  background: rgba(67,214,255,.10);
  font-weight: 1000;
  letter-spacing: .2px;
}

html[data-theme="morning"] .product-price{
  background: rgba(67,214,255,.12);
  border-color: rgba(67,214,255,.30);
}

@media (max-width: 560px){
  .product-media{ height: 260px; padding: 14px; }
}







/* =========================
   ABOUT PAGE – NO IMAGE
   ========================= */

.about-page{
  --ab-text: #eaf7ff;
  --ab-muted: #9ab8c7;
  --ab-cyan: #43d6ff;
  --ab-cyan2: #1fb8ff;
}

.about-page,
.about-page *{
  box-sizing: border-box;
}

.about-page section{
  padding: 60px 0;
}

.about-page .wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.about-hero{
  position: relative;
  text-align: center;
  padding: 90px 0 70px;
  border-bottom: 1px solid rgba(67,214,255,.2);
}

.about-hero::before{
  content:"";
  position:absolute;
  inset:-80px;
  background:
    radial-gradient(700px 360px at 15% 25%, rgba(67,214,255,.25), transparent 60%),
    radial-gradient(600px 300px at 85% 20%, rgba(31,184,255,.2), transparent 60%);
  z-index:-1;
}

.about-kicker{
  font-size:12px;
  letter-spacing:.2em;
  color:var(--ab-muted);
  margin-bottom:10px;
}

.about-title{
  font-size: clamp(32px, 3.5vw, 52px);
  color:var(--ab-text);
  margin-bottom:14px;
}

.about-title span{
  color:var(--ab-cyan);
}

.about-subtitle{
  max-width:760px;
  margin:0 auto 24px;
  color:var(--ab-muted);
  line-height:1.7;
}

/* BUTTONS */
.about-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* GRID SECTIONS */
.about-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
}

@media(max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
  }
}

/* CARDS */
.about-card{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(67,214,255,.2);
  border-radius:20px;
  padding:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.about-card h2{
  color:var(--ab-text);
  margin-bottom:12px;
}

.about-card p{
  color:var(--ab-muted);
  line-height:1.7;
}

/* STATS */
.about-stats{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}

@media(max-width:600px){
  .about-stats{
    grid-template-columns:1fr;
  }
}

.stat-box{
  background:rgba(67,214,255,.08);
  border:1px solid rgba(67,214,255,.25);
  border-radius:14px;
  padding:14px;
  text-align:center;
}

.stat-box strong{
  color:var(--ab-text);
  font-size:18px;
}

.stat-box span{
  display:block;
  margin-top:4px;
  color:var(--ab-muted);
  font-size:14px;
}

/* VALUES */
.about-values{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:18px;
  margin-top:24px;
}

@media(max-width:900px){
  .about-values{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:500px){
  .about-values{ grid-template-columns:1fr; }
}

.value{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(67,214,255,.2);
  border-radius:18px;
  padding:20px;
  text-align:center;
}

.value h3{
  color:var(--ab-text);
  margin-bottom:8px;
}

.value p{
  color:var(--ab-muted);
  font-size:15px;
}

/* PROCESS */
.process{
  display:grid;
  gap:14px;
  margin-top:20px;
}

.step{
  display:grid;
  grid-template-columns:40px 1fr;
  gap:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(67,214,255,.2);
  border-radius:18px;
  padding:16px;
}

.step-num{
  width:40px;
  height:40px;
  border-radius:12px;
  background:rgba(67,214,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:var(--ab-text);
}

.step h4{
  margin-bottom:4px;
  color:var(--ab-text);
}

.step p{
  color:var(--ab-muted);
  font-size:15px;
}




/* ===== Custom Orders Page ===== */
.custom-hero{ padding:70px 0 30px; border-bottom:1px solid rgba(67,214,255,.15); }
.custom-title{ font-size:clamp(30px,3vw,54px); margin:0 0 10px; }
.custom-subtitle{ color:var(--muted,#9ab8c7); line-height:1.7; max-width:900px; }
.custom-muted{ color:var(--muted,#9ab8c7); opacity:.9; }

.wrap{ max-width:1100px; margin:0 auto; padding:0 20px; }

.custom-sec{ padding:34px 0 60px; }
.custom-form{ margin-top:10px; }

.custom-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:980px){ .custom-grid{ grid-template-columns:1fr; } }

.custom-card{
  border-radius:18px;
  border:1px solid rgba(67,214,255,.18);
  background:rgba(255,255,255,.03);
  padding:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
}

.custom-h2{ margin:0 0 12px; }
.custom-h3{ margin:0 0 8px; }

.custom-label{ display:block; margin:12px 0; color:var(--text,#eaf7ff); font-weight:600; }
.custom-input, .custom-textarea{
  width:100%;
  margin-top:8px;
  border-radius:14px;
  border:1px solid rgba(67,214,255,.20);
  background:rgba(0,0,0,.25);
  color:var(--text,#eaf7ff);
  padding:12px 12px;
  outline:none;
}
.custom-textarea{ resize:vertical; }

.custom-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media(max-width:620px){ .custom-row{ grid-template-columns:1fr; } }

.custom-color{ width:100%; height:44px; border-radius:14px; border:1px solid rgba(67,214,255,.20); background:transparent; padding:6px; margin-top:8px; }

.custom-dims{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:12px; }
@media(max-width:720px){ .custom-dims{ grid-template-columns:1fr; } }

.custom-check{ display:flex; gap:10px; align-items:flex-start; margin-top:12px; color:var(--muted,#9ab8c7); }
.custom-btn{
  margin-top:14px;
  width:100%;
  border:none;
  border-radius:16px;
  padding:14px 16px;
  font-weight:800;
  color:#001018;
  background:linear-gradient(180deg, rgba(67,214,255,1), rgba(31,184,255,1));
  cursor:pointer;
}
.custom-btn:hover{ filter:brightness(1.03); }

.custom-hr{ border:none; border-top:1px solid rgba(67,214,255,.14); margin:16px 0; }

.custom-gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
@media(max-width:820px){ .custom-gallery{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:520px){ .custom-gallery{ grid-template-columns:1fr; } }

.custom-thumb{
  display:block;
  border-radius:16px;
  border:1px solid rgba(67,214,255,.14);
  background:rgba(0,0,0,.18);
  overflow:hidden;
  cursor:pointer;
}
.custom-thumb input{ margin:10px; }
.custom-thumb__img{ display:block; aspect-ratio: 4/3; overflow:hidden; }
.custom-thumb__img img{ width:100%; height:100%; object-fit:cover; display:block; }
.custom-thumb__cap{ display:block; padding:10px 12px; color:var(--muted,#9ab8c7); font-size:12px; word-break:break-all; }

.custom-alert{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
}
.custom-alert--ok{ background:rgba(80,255,120,.12); border:1px solid rgba(80,255,120,.28); color:#51cf66; }
.custom-alert--err{ background:rgba(255,80,80,.10); border:1px solid rgba(255,80,80,.25); color:#ff6b6b; }





/* =====================================
   GLOBAL MOBILE SAFE MODE (ALL PAGES)
   ===================================== */

/* ΚΟΒΕΙ ΟΡΙΣΤΙΚΑ ΟΡΙΖΟΝΤΙΟ SCROLL */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

/* ΣΩΣΤΟ ΥΠΟΛΟΓΙΣΜΟ ΠΛΑΤΟΥΣ */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ΚΑΝΕΝΑ ΣΤΟΙΧΕΙΟ ΝΑ ΜΗΝ ΞΕΦΕΥΓΕΙ */
img, video, iframe, svg, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ΟΛΑ ΤΑ ΒΑΣΙΚΑ CONTAINERS */
body > *,
header,
nav,
main,
section,
footer {
  max-width: 100%;
}




/* =====================================
   NAVBAR MOBILE FIX (GLOBAL)
   ===================================== */

nav, .navbar {
  width: 100%;
  max-width: 100%;
}

/* Αν έχεις flex στο navbar */
.navbar,
.navbar ul {
  display: flex;
  flex-wrap: wrap; /* ΣΠΑΕΙ στο mobile */
}

/* Links να μην σπρώχνουν την οθόνη */
.navbar a {
  white-space: nowrap;
  max-width: 100%;
}









/* =========================================
   MOBILE DRAWER MENU - SLIDE FROM RIGHT
   ========================================= */

@media (max-width: 768px){

  /* κρατάμε το header πάνω */
  .topbar{
    position: sticky;
    top: 0;
    z-index: 99999;
  }

  /* off-canvas drawer container (right side) */
  .mobile{
    display: block; /* enable drawer on mobile widths */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 360px;
    z-index: 99999;
    padding: 10px 0 14px;

    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease-out, opacity .28s ease-out;
  }

  .mobile.is-open{
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* full-screen backdrop behind the drawer to block page interaction */
  .nav-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    z-index: 99990;
    transition: opacity .25s ease-out;
  }

  .nav-backdrop.is-open{
    opacity: 1;
    pointer-events: auto;
  }

  /* εσωτερικό κουτί */
  .mobile__inner{
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    border-radius: 18px 0 0 18px;
    background: var(--bg);
    border-left: 1px solid var(--stroke);
    box-shadow: -24px 0 60px rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);

    padding: 16px 14px 18px;
  }

  .mobile-theme{
    margin-bottom: 12px;
  }

  .mobile-theme .mode{
    display: inline-flex;
    justify-content: space-between;
  }

  /* links στο mobile menu */
  .mobile__link{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    background: var(--glass);
    border: 1px solid var(--stroke2);
    width: 100%;

    /* clickable ασφάλεια */
    pointer-events: auto !important;
  }

  .mobile__link + .mobile__link{
    margin-top: 8px;
  }

  .mobile__link:active{
    transform: scale(0.99);
  }

  /* danger button (Logout) */
  .mobile__link--danger{
    background: rgba(255, 0, 0, 0.10);
    border-color: rgba(255, 0, 0, 0.22);
  }

  /* auth section spacing */
  .mobile-auth{
    margin-bottom: 10px;
    display: grid;
    gap: 8px;
  }

  .mobile-auth__user{
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(67, 214, 255, 0.08);
    border: 1px solid rgba(67, 214, 255, 0.18);
    color: var(--text);
  }

  /* when drawer is open, prevent background scroll
     and disable header clicks except the burger */
  body.nav-open{
    overflow: hidden;
  }

  body.nav-open .topbar__inner a,
  body.nav-open .topbar__inner button{
    pointer-events: none;
  }

  body.nav-open .topbar__inner .burger{
    pointer-events: auto;
  }
}

@media (max-width: 768px){
  html[data-theme="morning"] .mobile__inner{
    background: #ffffff;
    box-shadow: -24px 0 60px rgba(10,20,40,0.25);
  }

  html[data-theme="morning"] .mobile__link{
    background: rgba(0,0,0,0.02);
    border-color: var(--stroke2);
  }

  html[data-theme="morning"] .mobile-auth__user{
    background: rgba(67,214,255,0.10);
    border-color: rgba(67,214,255,0.28);
  }
}
