/* /assets/css/main.css */

/* main.css is the base layer for the whole site look */
/* it assumes your variables exist from header.css, but it also overrides key ones for a more modern feel */

:root{
  /* wider layout */
  --container: 1440px;

  /* less bubble look */
  --radius: 14px;

  /* softer borders, less gray */
  --border: color-mix(in oklab, var(--text), transparent 88%);
  --surface: color-mix(in oklab, var(--bg), #ffffff 10%);
  --surface2: color-mix(in oklab, var(--bg), #ffffff 16%);
}

html[data-theme="dark"] :root{
  --border: rgba(255,255,255,0.12);
  --surface: rgba(255,255,255,0.06);
  --surface2: rgba(255,255,255,0.10);
}

/* stronger background gradient, but still soft */
body{
  background: transparent !important;
  position: relative;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(1200px 720px at 12% -12%, rgba(255,77,0,0.26), transparent 62%),
    radial-gradient(1100px 760px at 92% -8%, rgba(45,124,255,0.22), transparent 60%),
    radial-gradient(1200px 860px at 48% 120%, rgba(116,241,255,0.14), transparent 62%),
    radial-gradient(900px 600px at 60% 20%, rgba(255,154,61,0.10), transparent 58%);
}

html[data-theme="light"] body::before{
  background:
    radial-gradient(1200px 720px at 12% -12%, rgba(255,77,0,0.28), transparent 62%),
    radial-gradient(1100px 760px at 92% -8%, rgba(45,124,255,0.18), transparent 60%),
    radial-gradient(1200px 860px at 48% 120%, rgba(116,241,255,0.12), transparent 62%),
    radial-gradient(900px 600px at 60% 20%, rgba(255,154,61,0.10), transparent 58%);
}

body > *{
  position: relative;
  z-index: 1;
}
html, body{
  background: #ffffff;
}

html[data-theme="dark"], html[data-theme="dark"] body{
  background: #05070c;
}
/* typography reset: kill the web 1.0 bold vibe */
h1,h2,h3{ letter-spacing: -0.25px; }
p{ font-weight: 400; }
small, .sub, .muted{ font-weight: 400; }

a{ text-decoration: none; }
a:hover{ text-decoration: underline; }

/* page spacing */
main{ padding: 22px 0 54px; }

/* section heads: more editorial */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin: 30px 0 14px;
}
.section-head h2{
  margin:0;
  font-size:22px;
  font-weight:850;
  letter-spacing:-0.35px;
  color:#182236;
  text-shadow:0 1px 0 rgba(255,255,255,0.45);
}
.section-head .sub{
  color: rgba(31,63,120,0.72);
  font-weight: 650;
  font-size: 13px;
  letter-spacing:0.01em;
}
.section-head .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid rgba(15,39,71,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(241,245,249,0.96));
  color:#182236;
  font-weight:800;
  letter-spacing:-0.01em;
  box-shadow:
    0 10px 24px rgba(15,23,42,0.05),
    0 1px 0 rgba(255,255,255,0.88) inset;
  text-decoration:none;
}
.section-head .btn:hover{
  transform:translateY(-1px);
  text-decoration:none;
  border-color:rgba(255,122,0,0.18);
  box-shadow:
    0 14px 28px rgba(15,23,42,0.08),
    0 1px 0 rgba(255,255,255,0.92) inset;
}

html[data-theme="dark"] .section-head h2{
  color:rgba(244,248,255,0.96);
  text-shadow:none;
}
html[data-theme="dark"] .section-head .sub{
  color:rgba(176,196,222,0.78);
}
html[data-theme="dark"] .section-head .btn{
  border-color:rgba(255,255,255,0.10);
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  color:rgba(244,248,255,0.96);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.24),
    0 1px 0 rgba(255,255,255,0.05) inset;
}

/* hero */
.hero{
  display:grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}
@media (max-width: 1200px){
  .hero{ grid-template-columns: 1fr; }
}

/* promo: less border, more “poster” */
.hero .promo{
  position:relative;
  overflow:hidden;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid color-mix(in oklab, var(--border), transparent 35%);
  background: url("/assets/inunoshopping.jpg") center/cover no-repeat;
  min-height: 280px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.10);
}
html[data-theme="dark"] .hero .promo{
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
}

.hero .promo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.28), rgba(0,0,0,0.06)),
    radial-gradient(900px 420px at 14% 20%, rgba(255,77,0,0.20), transparent 62%),
    radial-gradient(900px 420px at 86% 12%, rgba(45,124,255,0.18), transparent 62%);
  pointer-events:none;
}
.hero .promo > *{ position:relative; z-index:1; }

.hero .promo h1{
  margin:0 0 10px;
  font-size: 40px;
  line-height: 1.06;
  font-weight: 750;
  color:#fff;
  text-shadow: 0 10px 28px rgba(0,0,0,0.45);
}
.hero .promo p{
  margin:0 0 14px;
  font-weight: 400;
  opacity: 0.96;
  color:#fff;
  text-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.hero .promo .cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}
.hero .promo .pill{
  color:#fff;
  border-color: rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.20);
}

/* hero side: simpler, less boxy */
.hero .side{
  padding: 16px;
  border-radius: 18px;
  background: color-mix(in oklab, var(--surface), transparent 6%);
  border: 1px solid color-mix(in oklab, var(--border), transparent 25%);
  display:flex;
  flex-direction:column;
  gap: 10px;
  min-height: 280px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}
html[data-theme="dark"] .hero .side{
  box-shadow: 0 18px 46px rgba(0,0,0,0.30);
}

.hero .side .item{
  position:relative;
  overflow:hidden;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid color-mix(in oklab, var(--border), transparent 18%);
  background: color-mix(in oklab, var(--surface), transparent 2%);
  box-shadow: none;
  flex: 1;
}

/* subtle highlight sweep left to right */
@keyframes inuno_sweep_lr{
  0%   { transform: translateX(-140%) skewX(-14deg); opacity: 0; }
  12%  { opacity: 0.55; }
  55%  { opacity: 0.22; }
  100% { transform: translateX(240%) skewX(-14deg); opacity: 0; }
}
.hero .side .item::before{
  content:"";
  position:absolute;
  inset:-45% -70%;
  pointer-events:none;
  transform: translateX(-140%) skewX(-14deg);
  background: linear-gradient(
    90deg,
    transparent 38%,
    rgba(255,255,255,0.22) 50%,
    transparent 62%
  );
  animation: inuno_sweep_lr 5.0s ease-in-out infinite;
  opacity: 0.8;
}
html[data-theme="light"] .hero .side .item::before{
  background: linear-gradient(
    90deg,
    transparent 38%,
    rgba(0,0,0,0.10) 50%,
    transparent 62%
  );
  opacity: 0.55;
}
.hero .side .item:nth-child(2)::before{ animation-delay: 1.1s; }
.hero .side .item:nth-child(3)::before{ animation-delay: 2.2s; }

.icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid color-mix(in oklab, currentColor, transparent 60%);
  background: color-mix(in oklab, currentColor, transparent 90%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  color: currentColor;
  font-size: 16px;
  box-shadow: none;
}

.hero .side .item.deals{ color:#ff4d00; }
.hero .side .item.rated{ color:#2d7cff; }
.hero .side .item.seller{ color:#29d39a; }

.item .t{
  margin:0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.35px;
  color: color-mix(in oklab, var(--text), transparent 10%);
}
.item .d{
  margin: 4px 0 0;
  font-weight: 400;
  font-size: 12px;
  color: var(--smalltext);
}

/* product grid */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px){ .grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px){ .grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .grid{ grid-template-columns: 1fr; } }

.product{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in oklab, var(--border), transparent 22%);
  background: color-mix(in oklab, var(--surface), transparent 2%);
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
  box-shadow: none;
}
.product:hover{
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--border), var(--text) 10%);
  background: color-mix(in oklab, var(--surface2), transparent 0%);
}

.thumb{
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(600px 350px at 30% 15%, rgba(45,124,255,0.12), transparent 55%),
    radial-gradient(600px 350px at 85% 85%, rgba(255,122,24,0.10), transparent 55%),
    color-mix(in oklab, var(--surface), transparent 0%);
  border: 1px solid color-mix(in oklab, var(--border), transparent 22%);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 650;
  color: color-mix(in oklab, var(--muted), transparent 18%);
}

.product .meta{
  margin-top: 12px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.product .name{
  font-weight: 380;
  line-height: 1.18;
  letter-spacing: -0.08px;
  font-size: 14px;
}
.product .name a{
  color: inherit;
  text-decoration: none;
}
.product .name a:hover{
  text-decoration: underline;
}
.price-row{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.price{
  font-weight: 750;
  font-size: 18px;
}
.uvp{
  color: color-mix(in oklab, var(--muted), transparent 4%);
  text-decoration: line-through;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.1;
}
.rating{
  display:flex;
  align-items:center;
  gap: 6px;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}
.rating .stars{
  display:inline-flex;
  align-items:center;
  gap:2px;
  letter-spacing:0;
}
.rating .star{
  color: rgba(191,199,212,0.95);
  font-size: 13px;
  line-height: 1;
}
.rating .star.is-on{
  color: #f59e0b;
}
.rating .rating-count{
  color: color-mix(in oklab, var(--muted), transparent 4%);
}

/* category pills and navbar feel less bubble */
.navbar{
  background: transparent;
  border-top: 1px solid color-mix(in oklab, var(--border), transparent 28%);
}
.navbar .row{
  gap: 10px;
  padding: 10px 0 12px;
}

.navlink{
  position: relative;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--border), transparent 28%);
  background: color-mix(in oklab, var(--surface), transparent 2%);
  color: color-mix(in oklab, var(--text), transparent 32%);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.navlink:hover{
  transform: translateY(-1px);
  color: var(--text);
  background: color-mix(in oklab, var(--surface2), transparent 0%);
  border-color: color-mix(in oklab, var(--border), var(--text) 10%);
}
.navlink.active{
  border-color: rgba(45,124,255,0.45);
  box-shadow: 0 0 0 3px rgba(45,124,255,0.12);
}

/* small mobile polish */
@media (max-width: 520px){
  section.grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  section.grid .product{ min-width: 0; }
}

/* kill accidental bold in common text places */
.pill span,
.pill .sub,
.pill small{
  font-weight: 400;
}
/* tighten header to main spacing */
main{
  margin-top: 0 !important;
  padding-top: 0 !important;
}
html[data-theme="dark"] #langMenu{
background:#0b1220 !important;
color:#eaf0ff !important;
border-color: rgba(255,255,255,0.14) !important;
box-shadow: 0 18px 40px rgba(0,0,0,0.55) !important;
}

html[data-theme="dark"] #langMenu .lang-opt:hover{
background: rgba(255,255,255,0.06) !important;
}

html[data-theme="light"] #langMenu .lang-opt:hover{
background: rgba(0,0,0,0.04) !important;
}
@media (max-width: 1280px){
  #langMenu{
    width: 120px !important;
    max-width: 120px !important;
    left: auto !important;
    right: 12px !important;
  }
  #langMenu .lang-opt{
    padding: 8px 8px !important;
    gap: 8px !important;
  }
  #langMenu .lang-opt img{
    width: 20px !important;
    height: 15px !important;
  }
  #langMenu .lang-opt > div{
    min-width: 0 !important;
  }
  #langMenu .lang-opt > div > div{
    font-size: 12px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}
.hero.hero-premium .promo h1{
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero.hero-premium .promo p{
  max-width: 62ch;
}

.hero.hero-premium .hero-actions{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero.hero-premium .hero-meta{
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.95;
}

.hero.hero-premium .hero-meta-item{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.hero.hero-premium .hero-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

html[data-theme="light"] .hero.hero-premium .hero-dot{
  background: rgba(10,14,22,0.18);
  box-shadow: 0 0 0 3px rgba(10,14,22,0.06);
}

@media (max-width: 900px){
  .hero.hero-premium .promo h1{
    font-size: 34px;
  }
}
.hero.hero-premium{ padding: 22px 0 8px; }
.hero.hero-premium{ display:grid; grid-template-columns: 1.25fr 0.75fr; gap: 26px; align-items:center; }

.hero.hero-premium .promo h1{ font-size: 60px; line-height: 1.03; margin:0 0 10px; }
.hero.hero-premium .promo p{ font-size: 16px; opacity: 0.92; margin:0 0 16px; max-width: 60ch; }

.hero.hero-premium .promo .btn{ border-radius:14px; padding:14px 18px; box-shadow:0 12px 26px rgba(0,0,0,0.22); }

.hero-visual{ display:flex; justify-content:flex-end; }
.hero-visual-card{
width: 100%;
max-width: 360px;
border-radius: 18px;
padding: 18px;
border: 1px solid rgba(255,255,255,0.14);
background: rgba(10,14,22,0.35);
box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}
html[data-theme="light"] .hero-visual-card{
border-color: rgba(0,0,0,0.10);
background: rgba(255,255,255,0.75);
box-shadow: 0 18px 60px rgba(0,0,0,0.10);
}

.hero-visual-kicker{ font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; opacity:0.85; }
.hero-visual-title{ margin-top:8px; font-size:18px; font-weight:800; }
.hero-visual-sub{ margin-top:6px; font-size:13px; opacity:0.82; }

.hero-visual-stats{ margin-top:14px; display:flex; gap:14px; }
.hero-visual-stats > div{
flex:1;
border-radius:14px;
padding:12px;
border: 1px solid rgba(255,255,255,0.12);
background: rgba(255,255,255,0.06);
}
html[data-theme="light"] .hero-visual-stats > div{
border-color: rgba(0,0,0,0.10);
background: rgba(0,0,0,0.03);
}
.hero-visual-stats strong{ display:block; font-size:20px; }
.hero-visual-stats span{ display:block; margin-top:2px; font-size:12px; opacity:0.8; }

@media (max-width: 980px){
.hero.hero-premium{ grid-template-columns: 1fr; }
.hero-visual{ justify-content:flex-start; }
.hero.hero-premium .promo h1{ font-size: 38px; }
.hero-visual-card{ max-width: 100%; }
}
.home-hero{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

@media (max-width: 980px){
  .home-hero{
    grid-template-columns: 1fr;
  }
}

.home-hero-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
}

.home-hero-media::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.22) 55%, rgba(0,0,0,0.10));
}

html[data-theme="light"] .home-hero-media::before{
  background: linear-gradient(90deg, rgba(10,14,22,0.68), rgba(10,14,22,0.18) 55%, rgba(10,14,22,0.08));
}

.home-hero-overlay{
  position: relative;
  z-index: 1;
  padding: 28px;
  max-width: 720px;
}

.home-hero-title{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  color: #fff;
  letter-spacing: -0.02em;
}

.home-hero-sub{
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(255,255,255,0.90);
  font-weight: 400;
}

.home-hero-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  background: #ff7a18;
  color: #0b0f16;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(255,122,24,0.24);
  border: 1px solid rgba(0,0,0,0.12);
  max-width: 520px;
}

.home-hero-cta:hover{
  filter: brightness(0.98);
}

html[data-theme="dark"] .home-hero-cta{
  color: #0b0f16;
}

.home-hero-right{
  display:flex;
}

.home-hero-card{
  width:100%;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
  align-self: stretch;
}

html[data-theme="dark"] .home-hero-card{
  background: rgba(14,22,32,0.66);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.home-hero-kicker{
  font-weight: 700;
  margin-bottom: 10px;
}

html[data-theme="dark"] .home-hero-kicker{
  color: #eaf0ff;
}

.home-hero-stats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.home-hero-stat{
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}

html[data-theme="dark"] .home-hero-stat{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: #eaf0ff;
}

.home-hero-stat .v{
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.home-hero-stat .l{
  font-size: 12px;
  opacity: 0.75;
}

.home-hero-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  opacity: 0.90;
}

html[data-theme="dark"] .home-hero-list{
  color: #eaf0ff;
  opacity: 0.90;
}
/* HERO */
.hero{
    display:grid;
    grid-template-columns: 1.6fr 1fr;
    gap:60px;
    align-items:center;
    margin:50px 0 40px;
}

@media (max-width:1100px){
    .hero{
        grid-template-columns:1fr;
        gap:40px;
    }
}

.hero-left h1{
    font-size:clamp(42px,4.2vw,58px);
    line-height:1.05;
    margin:0 0 18px;
    letter-spacing:-0.6px;
}

.hero-sub{
    font-size:18px;
    opacity:.75;
    margin-bottom:26px;
    max-width:45ch;
}

.hero-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 26px;
    border-radius:14px;
    background:linear-gradient(135deg,#ff7a18,#ffb24d);
    color:#111 !important;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 14px 30px rgba(255,122,24,0.28);
    transition:.2s ease;
}

.hero-cta:hover{
    transform:translateY(-2px);
}

.hero-right{
    padding:28px 30px;
}

.hero-badge-title{
    font-size:20px;
    margin-bottom:6px;
    font-weight:600;
}

.hero-badge-text{
    font-size:14px;
    opacity:.7;
    margin-bottom:20px;
    max-width:40ch;
}

/* EU badges uniform */
.euBadges{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.euBadge{
    width:100%;
    min-height:64px;
    border-radius:18px;
    padding:14px 20px;
}
/* hero: left promo card with background image */
.hero{
  display:grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 980px){
  .hero{
    grid-template-columns: 1fr;
  }
}

/* promo: background image restored */
.hero .promo{
  position: relative;
  overflow: hidden;
  padding: 28px 28px 26px;
  border-radius: 18px;
  border: 1px solid color-mix(in oklab, var(--border), transparent 35%);
  background: url("/assets/inunoshopping.jpg") center/cover no-repeat;
  min-height: 320px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.10);
}

/* readability overlay on image */
.hero .promo::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.40) 42%,
    rgba(0,0,0,0.10) 72%,
    rgba(0,0,0,0.00) 100%
  );
  pointer-events:none;
}

.hero .promo > *{
  position: relative;
  z-index: 1;
}

/* keep hero text white on image in both themes */
.hero .promo h1,
.hero .promo p{
  color:#fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
/* EU quality badges (global) */
.euBadges{display:flex;gap:10px;flex-wrap:wrap}
.euBadge{
  --eu1:#0b2f7a;
  --eu2:#1b66ff;
  --ring:rgba(255,255,255,0.22);
  --text:#ffffff;
  --shine: rgba(255,255,255,0.26);
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 16px 9px 12px;
  border-radius:999px;
  color:var(--text);
  background:linear-gradient(135deg,var(--eu1),var(--eu2));
  border:1px solid var(--ring);
  box-shadow: 0 5px 12px rgba(0,0,0,0.10);
  font: 700 12px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing:0.55px;
  text-transform:uppercase;
  overflow:hidden;
  user-select:none;
}
.euBadge:after{
  content:"";
  position:absolute;
  top:-60%;
  left:-40%;
  width:46%;
  height:220%;
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--shine) 50%, rgba(255,255,255,0) 100%);
  transform:rotate(18deg);
  animation: euSweep 3s ease-in-out infinite;
  pointer-events:none;
}
@keyframes euSweep{
  0%{transform:translateX(-140%) rotate(18deg);opacity:0}
  12%{opacity:0.9}
  38%{opacity:0.9}
  55%{opacity:0}
  100%{transform:translateX(320%) rotate(18deg);opacity:0}
}
.euIcon{
  width:28px;height:28px;border-radius:999px;display:grid;place-items:center;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  flex:0 0 auto;
  position:relative;z-index:1;
}
.euMeta{display:flex;flex-direction:column;gap:2px;z-index:1}
.euTitle{font-size:12px}
.euSub{font-size:11px;font-weight:650;opacity:0.88;letter-spacing:0.25px;text-transform:none}
.euStars{
  display:grid;
  grid-template-columns:repeat(2, 12px);
  grid-auto-rows:12px;
  gap:2px;
  align-items:center;
  justify-items:center;
}
.euStars.two{grid-template-columns:repeat(2,12px)}
.euStars.one{grid-template-columns:12px}
.euStars.three svg:first-child{grid-column:1 / span 2}
.euStar{width:12px;height:12px;display:block}
.euLvl1 .euTitle b{color:#ffd24a;font-weight:800}
.euLvl2 .euTitle b{color:#d7dde6;font-weight:800}
.euLvl3 .euTitle b{color:#d08a4b;font-weight:800}
.euStars svg{transform-origin:center;animation: euStarTw 3s ease-in-out infinite}
.euStars svg:nth-child(1){animation-delay:0.0s}
.euStars svg:nth-child(2){animation-delay:0.12s}
.euStars svg:nth-child(3){animation-delay:0.24s}
@keyframes euStarTw{
  0%{transform:scale(1) rotate(0deg);filter:none}
  30%{transform:scale(1.10) rotate(10deg);filter: drop-shadow(0 0 10px rgba(255,255,255,0.25))}
  55%{transform:scale(1.02) rotate(2deg);filter: drop-shadow(0 0 6px rgba(255,255,255,0.12))}
  100%{transform:scale(1) rotate(0deg);filter:none}
}
body.dark .euBadge{border-color:rgba(255,255,255,0.18);box-shadow: 0 6px 14px rgba(0,0,0,0.22)}

/* Home hero right column alignment */
.hero .euBadges{display:flex;flex-direction:column;gap:12px;flex-wrap:nowrap}
.hero .euBadge{width:100%;justify-content:flex-start;border-radius:16px;min-height:56px}
/* /var/www/vhosts/inuno.shop/httpdocs/inc/home.php
   add this CSS inside your <style> block */

.skelRow{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 980px){
  .skelRow{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.skelCard{
  border-radius: 14px;
  border: 1px solid color-mix(in oklab, var(--border), transparent 35%);
  background: color-mix(in oklab, var(--card), transparent 0%);
  overflow:hidden;
}
.skelThumb{
  height: 170px;
  background: rgba(255,255,255,0.06);
}
.skelMeta{
  padding: 12px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.skelLine{
  height: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}
.skelLine.w60{ width:60%; }
.skelLine.w40{ width:40%; }

@media (prefers-reduced-motion: no-preference){
  .skelThumb, .skelLine{
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    background-size: 200% 100%;
    animation: skelMove 1.2s infinite linear;
  }
  @keyframes skelMove{
    0%{ background-position: 200% 0; }
    100%{ background-position: -200% 0; }
  }
}
/* Variant B business chips for your existing header.php navbar
   No PHP changes needed.
   Paste into /assets/css/styles.css (bottom), after your current navbar styles. */

.navbar .row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:nowrap;
  overflow-x:auto;
  padding: 10px 2px 12px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
}

.navbar .row::-webkit-scrollbar{ height:8px; }
.navbar .row::-webkit-scrollbar-thumb{
  background: color-mix(in oklab, var(--text), transparent 82%);
  border-radius: 999px;
}
.navbar .row::-webkit-scrollbar-track{ background: transparent; }

.navbar a.navlink{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;
  white-space:nowrap;
  scroll-snap-align:start;

  border: 1px solid color-mix(in oklab, var(--border), transparent 40%);
  background: color-mix(in oklab, var(--card), transparent 0%);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  color: color-mix(in oklab, var(--text), transparent 8%);

  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}

.navbar a.navlink:hover{
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--border), transparent 10%);
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
  background: color-mix(in oklab, var(--card), white 4%);
}

.navbar a.navlink:active{
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

/* icon block on the left, uses your existing <span class="navico"> */
.navbar a.navlink .navico{
  width:24px;
  height:24px;
  border-radius: 8px;
  display:grid;
  place-items:center;
  flex: 0 0 24px;

  background: color-mix(in oklab, var(--text), transparent 92%);
  border: 1px solid color-mix(in oklab, var(--border), transparent 35%);
}

/* make the svg fit nicely */
.navbar a.navlink .navico svg{
  width:16px;
  height:16px;
}

/* mobile tuning */
@media (max-width: 980px){
  .navbar a.navlink{ padding: 10px 12px; }
}

/* dark mode nuance */
@media (prefers-color-scheme: dark){
  .navbar a.navlink{
    background: color-mix(in oklab, var(--card), transparent 0%);
    border-color: color-mix(in oklab, var(--border), transparent 35%);
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  }
  .navbar a.navlink .navico{
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.10);
  }
}
