/* exid-sikana-landing.css */
/* Platí POUZE pro stránku /nase-novinky/sikana/ (třída přidána v JS) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root{
  --sx-bg: #ffffff;
  --sx-ink: #2a2140;
  --sx-purple: #706090;
  --sx-purple-dark: #5f4f86;
  --sx-border: rgba(112,96,144,.22);
  --sx-shadow: 0 14px 40px rgba(0,0,0,.10);
}

/* skryj shoptet hlavičku/patičku jen na cílové stránce */
body.exid-sikana-landing header,
body.exid-sikana-landing .header,
body.exid-sikana-landing .top-navigation,
body.exid-sikana-landing .navigation,
body.exid-sikana-landing .breadcrumbs,
body.exid-sikana-landing .top-banners,
body.exid-sikana-landing .site-name,
body.exid-sikana-landing .cart,
body.exid-sikana-landing .cart-count,
body.exid-sikana-landing .footer,
body.exid-sikana-landing footer,
body.exid-sikana-landing #footer,
body.exid-sikana-landing .container-full-width,
body.exid-sikana-landing .footer-newsletter{
  display:none !important;
}

/* schovej obsah stránky – rendrujeme vlastní */
body.exid-sikana-landing .content,
body.exid-sikana-landing #content,
body.exid-sikana-landing main{
  min-height: 100vh;
}
body.exid-sikana-landing .content > *:not(#exid-sikana-root),
body.exid-sikana-landing #content > *:not(#exid-sikana-root),
body.exid-sikana-landing main > *:not(#exid-sikana-root){
  display:none !important;
}

body.exid-sikana-landing{
  background: var(--sx-bg) !important;
  color: var(--sx-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* root */
#exid-sikana-root{
  background: var(--sx-bg);
  color: var(--sx-ink);
}

/* top bar */
#exid-sikana-topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(112,96,144,.18);
}
#exid-sikana-topbar .sx-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 16px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
#exid-sikana-topbar img{
  height: 28px;
  width: auto;
  display:block;
}

/* hero */
#exid-sikana-hero{
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 10px;
  text-align: center;
}
#exid-sikana-hero h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--sx-purple);
  font-weight: 800;
}
#exid-sikana-hero p{
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.55;
  color: var(--sx-ink);
  font-weight: 500;
}
#exid-sikana-hero .sx-note{
  margin-top: 10px;
  color: var(--sx-purple-dark);
  font-weight: 600;
}

/* video */
#exid-sikana-video{
  padding: 14px 0 0;
}
#exid-sikana-video .sx-video-shell{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}
#exid-sikana-video .sx-video-frame{
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--sx-shadow);
  border: 1px solid var(--sx-border);
}
#exid-sikana-video video{
  width: 100%;
  height: auto;
  display:block;
  background: #ffffff;
  object-fit: contain;
}

/* speaker btn */
#exid-sikana-sound{
  position:absolute;
  left: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(112,96,144,.28);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  user-select:none;
}
#exid-sikana-sound svg{
  width: 22px;
  height: 22px;
  stroke: var(--sx-purple);
  fill: none;
  stroke-width: 2;
}

/* CTA */
#exid-sikana-cta{
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 16px 18px;
  text-align:center;
}
#exid-sikana-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--sx-purple);
  color:#fff;
  text-decoration:none;
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(112,96,144,.25);
  transition: transform .15s ease, background .15s ease;
}
#exid-sikana-cta a:hover{ background: var(--sx-purple-dark); transform: translateY(-1px); }

/* MOBILE edge-to-edge */
@media (max-width: 640px){
  #exid-sikana-hero{ padding: 18px 14px 6px; text-align:left; }
  #exid-sikana-hero p{ max-width: none; }
  #exid-sikana-video .sx-video-shell{ padding: 0; }
  #exid-sikana-video .sx-video-frame{ border-radius: 0; border-left:0; border-right:0; }
  #exid-sikana-sound{ left: 10px; bottom: 10px; }
}

/* LANDSCAPE phone: app mode */
@media (max-width: 940px) and (orientation: landscape){
  body.exid-sikana-landing #exid-sikana-topbar{ display:none; }
  body.exid-sikana-landing #exid-sikana-hero{ display:none; }
  body.exid-sikana-landing #exid-sikana-cta{ display:none; }

  #exid-sikana-video{ padding: 0 !important; }
  #exid-sikana-video .sx-video-shell{ max-width: none; padding: 0 !important; }
  #exid-sikana-video .sx-video-frame{
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
  }
  #exid-sikana-video video{
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    background: #000;
  }
  #exid-sikana-sound{
    left: 12px; bottom: 12px;
    background: rgba(0,0,0,.35);
    border-color: rgba(255,255,255,.18);
  }
  #exid-sikana-sound svg{ stroke: #fff; }
}
