  :root{
    --skoda-green: #0e4c30;
    --skoda-green-deep: #0a3a24;
    --skoda-green-bright: #24a26f;
    --skoda-emerald: #00c389;
    --paper: #f6f7f5;
    --ink: #10201a;
    --line: rgba(16,32,26,0.12);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  body{
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  a{ color:inherit; }
  img{ display:block; }

  .disclaimer{
    background: var(--skoda-green-deep);
    color: rgba(255,255,255,0.62);
    font-size: 11px;
    letter-spacing: 0.02em;
    text-align:center;
    padding: 6px 6vw;
  }

  /* ---------- top nav ---------- */
  .topbar{
    background: var(--skoda-green);
    position: sticky;
    top:0;
    z-index:10;
  }
  .topbar-inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 14px 6vw;
    gap: 24px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
  }
  .brand .mark{
    width:auto; height:34px;
    padding: 6px 12px;
    border-radius:6px;
    background: #fff;
    display:flex; align-items:center; justify-content:center;
  }
  .brand .mark img{
    height:100%;
    width:auto;
    object-fit:contain;
  }
  .brand .word{
    color:#fff;
    font-weight:800;
    letter-spacing:0.14em;
    font-size:13px;
    white-space:nowrap;
  }

  .navlinks{
    display:flex;
    gap: 8px;
    flex-grow:1;
    justify-content:center;
  }
  .navlinks a{
    text-decoration:none;
    color: rgba(255,255,255,0.82);
    font-size:13.5px;
    font-weight:600;
    padding: 9px 18px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space:nowrap;
  }
  .navlinks a:hover{
    background: rgba(255,255,255,0.1);
    color:#fff;
  }

  .langswitch{
    display:flex;
   /* background: rgba(255,255,255,0.08);*/
   /* border: 1px solid rgba(255,255,255,0.18);*/
    border-radius: 999px;
    padding:3px;
    gap:2px;
    flex-shrink:0;
  }
  .langswitch button{
    border:none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size:12px;
    font-weight:700;
    letter-spacing:0.05em;
    padding: 7px 15px;
    border-radius: 999px;
    cursor:pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .langswitch button.active{
  /*  background: var(--skoda-emerald);*/
    color: var(--skoda-green);
  }
  .langswitch button:not(.active):hover{ color:#fff; }

  @media (max-width: 820px){
    .navlinks{ display:none; }
  }

  /* ---------- hero ---------- */
  .herotext{
    background:
      linear-gradient(100deg, rgba(10,58,36,0.94) 0%, rgba(14,76,48,0.88) 45%, rgba(14,76,48,0.72) 100%),
      url('https://catalog.skoda-auto.com/eu/medias/sys_master/images/hde/h17/9519151382558/kosmetika/kosmetika.jpg') center 30% / cover no-repeat,
      var(--skoda-green);
    color:#fff;
    padding: 34px 6vw 56px;
    position:relative;
    overflow:hidden;
  }
  .herotext::after{
    content:"";
    position:absolute;
    right:-8%;
    top:-50%;
    width:55%;
    height:220%;
    background: radial-gradient(circle at center, var(--skoda-emerald) 0%, transparent 70%);
    opacity:0.16;
  }
  .herotext-inner{ max-width:1200px; margin:0 auto; position:relative; z-index:1; }
  .eyebrow{
    color: var(--skoda-emerald);
    font-size:12.5px;
    letter-spacing:0.18em;
    text-transform:uppercase;
    font-weight:700;
  }
  h1{
    margin-top:10px;
    font-size: clamp(28px, 4.2vw, 46px);
    font-weight:800;
    letter-spacing: -0.01em;
    line-height:1.08;
    max-width:20ch;
  }
  .sub{
    margin-top:14px;
    max-width:60ch;
    color: rgba(255,255,255,0.78);
    font-size:15.5px;
    line-height:1.55;
  }

  main{ max-width:1200px; margin:0 auto; padding: 0 6vw 30px; }

  /* ---------- two big hero tiles: For Your Car / For You ---------- */
  .herotiles{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
    margin-top:-32px;
    position:relative;
    z-index:2;
  }
  @media (max-width:760px){ .herotiles{ grid-template-columns:1fr; } }

  .tile{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    border:1px solid var(--line);
    text-decoration:none;
    color:var(--ink);
    box-shadow: 0 20px 40px -28px rgba(14,76,48,0.35);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display:block;
  }
  .tile:hover{
    transform:translateY(-4px);
    border-color:var(--skoda-emerald);
    box-shadow: 0 26px 50px -24px rgba(14,76,48,0.45);
  }
  .tile .photo{
    display:block;
    width:100%;
    height:280px;
    aspect-ratio: auto;
    object-fit:cover;
    object-position:center center;
    background: linear-gradient(135deg, #e9ece9, #dfe4de);
  }
  .tile .info{ padding:22px 26px 26px; }
  .tile .kicker{
    font-size:11.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    font-weight:700;
    color:var(--skoda-green-bright);
  }
  .tile h2{ margin-top:10px; font-size:22px; font-weight:800; }
  .tile p{ margin-top:8px; color:#4b5a53; font-size:14px; line-height:1.55; }
  .tile .cta{
    margin-top:16px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    font-size:13.5px;
    color: var(--skoda-green);
  }
  .tile .cta .arrow{
    width:24px; height:24px;
    border-radius:50%;
    background: var(--paper);
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    font-size:12px;
    transition: background .2s ease, transform .2s ease;
  }
  .tile:hover .cta .arrow{
    background: var(--skoda-emerald);
    color:#fff;
    transform:translateX(3px);
  }

  /* ---------- categories strip (mirrors skoda "Categories" row) ---------- */
  .catlabel{
    margin-top:44px;
    font-size:12px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    font-weight:700;
    color:#6b776f;
  }
  .catrow{
    margin-top:14px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:16px;
  }
  @media (max-width:760px){ .catrow{ grid-template-columns:1fr; } }

  .cattile{
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:8px;
    padding:12px;
    text-decoration:none;
    color:var(--ink);
    transition: border-color .2s ease, transform .2s ease;
  }
  .cattile:hover{ border-color:var(--skoda-emerald); transform:translateY(-2px); }
  .cattile img{
    width:64px; height:64px;
    border-radius:6px;
    object-fit:cover;
    flex-shrink:0;
    background:#eee;
  }
  .cattile .catname{ font-size:14.5px; font-weight:700; }
  .cattile .catsub{ font-size:12px; color:#7a877f; margin-top:2px; }

  /* ---------- payment / delivery info bar ---------- */
  .infobar{
    margin-top:52px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:8px;
    padding: 30px 6vw;
    margin-left: -6vw;
    margin-right: -6vw;
    border-radius:0;
    border-left:none;
    border-right:none;
  }
  .infobar-inner{
    max-width:1200px;
    margin:0 auto;
  }
  .infobar h3{
    font-size:12px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    font-weight:700;
    color:var(--skoda-green-bright);
    margin-bottom:18px;
  }
  .infogrid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:22px;
  }
  @media (max-width: 900px){ .infogrid{ grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px){ .infogrid{ grid-template-columns: 1fr; } }

  .infoitem{ display:flex; gap:12px; align-items:flex-start; }
  .infoitem .ic{
    width:38px; height:38px;
    border-radius:50%;
    background: var(--paper);
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
    color:var(--skoda-green);
    font-size:17px;
  }
  .infoitem .txt strong{ display:block; font-size:14px; margin-bottom:3px; }
  .infoitem .txt span{ font-size:12.5px; color:#647169; line-height:1.5; display:block; }

  .note{
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    font-size:12.5px;
    color:#6b776f;
    padding-bottom: 40px;
  }
  .note a{ color: var(--skoda-green-bright); text-decoration:none; font-weight:600; }
