@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@500;600;700&display=swap');

:root{
  --lr-text:#1f2937;
  --lr-muted:#6b7280;
  --lr-border:rgba(0,0,0,.08);
  --lr-bg:rgba(255,255,255,.86);
  --lr-shadow:0 18px 40px rgba(0,0,0,.14);

  /* LION neon logo — aslan / LION & SHOP (mor–magenta), EROTIK (cyan), turuncu vurgu */
  --lr-neon-magenta:#eb47ff;
  --lr-neon-magenta-rgb:235, 71, 255;
  --lr-neon-cyan:#38f8ff;
  --lr-neon-orange:#ff9f1c;

  /* Menü şeridi: düz siyah; neon sadece hover’larda */
  --lr-header-bg:#000000;
  /* Arama paneli / mobil menü açılırı */
  --lr-header-bg-dense:#0a0a0a;
  --lr-header-text:#ffffff;
  --lr-header-logo:var(--lr-neon-magenta);
  --lr-header-hover:var(--lr-neon-cyan);
  --lr-header-bar-height:88px;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:#fff;
}

h2,
h3{
  color:var(--lr-neon-magenta) !important;
}

.lr-container{
  width:100%;
  max-width:100%;
  margin:0 auto;
  padding:0 18px;
}

.lr-visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/*
  .lr-top-ticker = üstte kayan duyuru metinleri (GİZLİ KARGO vb.) — “header/menü” değil.
  .lr-header     = logo + Anasayfa / Dildolar / … linkleri + ikonlar — asıl site başlığı/menü.
*/
.lr-top-ticker{
  width:100%;
  /* Kayan duyuru (KAPIDA NAKİT…) — klasik mor şerit */
  background:linear-gradient(90deg, #8b31ff 0%, #c142f7 35%, #7f36ff 65%, #8b31ff 100%);
  border-bottom:1px solid rgba(255,255,255,.2);
  overflow:hidden;
}

.lr-top-ticker__track{
  display:flex;
  width:max-content;
  min-width:100%;
  animation:lrTickerMove 26s linear infinite;
}

.lr-top-ticker__content{
  display:flex;
  align-items:center;
  white-space:nowrap;
  color:#fff;
  font-family:"Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size:15px;
  font-weight:700;
  letter-spacing:.15px;
  padding:11px 0;
  text-transform:uppercase;
}

.lr-top-ticker__item{
  position:relative;
  display:inline-flex;
  align-items:center;
  padding:0 44px 0 0;
  margin-right:44px;
}

.lr-top-ticker__item::after{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:#d2ff00;
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
}

@keyframes lrTickerMove{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.lr-header{
  position:sticky;
  top:0;
  z-index:1000;
  overflow:visible;
  background:var(--lr-header-bg);
  border-bottom:1px solid rgba(255, 255, 255, 0.1);
  box-shadow:0 4px 24px rgba(0, 0, 0, 0.5);
  color:var(--lr-header-text);
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.lr-header__inner{
  min-height:var(--lr-header-bar-height);
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:12px 18px;
  overflow:visible;
}

.lr-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
  color:var(--lr-header-logo);
  min-width:0;
  transition:color .2s ease, filter .2s ease, text-shadow .2s ease;
  text-shadow:0 0 24px rgba(var(--lr-neon-magenta-rgb), 0.9), 0 0 40px rgba(56, 248, 255, 0.45);
  filter:drop-shadow(0 0 8px rgba(255, 159, 28, 0.35));
}

.lr-logo:focus-visible{
  outline:2px solid var(--lr-neon-cyan);
  outline-offset:3px;
}

.lr-logo__word{
  font-family:"Great Vibes", "Brush Script MT", cursive;
  font-size:clamp(30px, 3.4vw, 42px);
  line-height:1;
  font-weight:400;
  letter-spacing:.02em;
  padding:6px 0 2px;
}

.lr-menu-toggle{
  display:none;
  width:40px;
  height:40px;
  border:none;
  border-radius:10px;
  background:transparent;
  color:#ffffff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:none;
  transition:color .2s ease, background-color .2s ease;
}

.lr-menu-toggle:hover,
.lr-menu-toggle:focus-visible{
  color:var(--lr-header-hover);
  background:rgba(255, 255, 255, 0.12);
  box-shadow:0 0 24px rgba(56, 248, 255, 0.35), 0 0 12px rgba(var(--lr-neon-magenta-rgb), 0.35);
}

.lr-menu-toggle__icon{
  display:block;
}

.lr-menu-toggle__icon--close{
  display:none;
}

.lr-header.is-menu-open .lr-menu-toggle__icon--open{
  display:none;
}

.lr-header.is-menu-open .lr-menu-toggle__icon--close{
  display:block;
}

.lr-mobile-tools{
  display:none;
}

.lr-mobile-search{
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:10px;
  background:transparent;
  color:#ffffff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
  transition:color .2s ease, border-color .2s ease, background-color .2s ease;
}

.lr-mobile-search:hover,
.lr-mobile-search:focus-visible{
  color:var(--lr-neon-cyan);
  border-color:var(--lr-neon-cyan);
  background:rgba(255, 255, 255, 0.1);
  box-shadow:0 0 18px rgba(56, 248, 255, 0.35);
}

.lr-mobile-phone{
  color:#ffffff;
  text-decoration:none;
  font-family:"Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
  transition:color .2s ease;
}

.lr-mobile-phone:hover,
.lr-mobile-phone:focus-visible{
  color:var(--lr-neon-orange);
  text-shadow:0 0 14px rgba(255, 159, 28, 0.5);
}

.lr-nav{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap:0;
  flex:1;
  min-width:0;
  padding:0 4px 0 clamp(16px, 2vw, 36px);
}

.lr-nav-item{
  position:relative;
  flex:1 1 0%;
  min-width:0;
  min-height:var(--lr-header-bar-height);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 clamp(8px, 1.5vw, 26px);
}

.lr-nav-item:hover,
.lr-nav-item:focus-within{
  z-index:20;
}

.lr-nav-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:100%;
  padding:10px clamp(4px, 0.6vw, 10px);
  color:#ffffff;
  text-decoration:none;
  font-family:"Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size:clamp(10.5px, 0.95vw, 13px);
  line-height:1.2;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.055em;
  white-space:normal;
  hyphens:manual;
  overflow-wrap:normal;
  word-break:normal;
  text-shadow:0 0 16px rgba(56, 248, 255, 0.75), 0 0 26px rgba(var(--lr-neon-magenta-rgb), 0.55);
  filter:drop-shadow(0 0 6px rgba(255, 159, 28, 0.25));
  transition:color .2s ease, text-shadow .2s ease, filter .2s ease;
}

.lr-nav-link::after{
  display:none;
}

.lr-nav-link:hover,
.lr-nav-link:focus-visible{
  color:var(--lr-neon-magenta);
  text-shadow:0 0 14px rgba(var(--lr-neon-magenta-rgb), 0.95), 0 0 32px rgba(var(--lr-neon-magenta-rgb), 0.55), 0 0 48px rgba(var(--lr-neon-magenta-rgb), 0.28);
  filter:drop-shadow(0 0 10px rgba(var(--lr-neon-magenta-rgb), 0.65));
}

.lr-header-tools{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:2px;
  flex-shrink:0;
}

.lr-header-tool{
  display:inline-flex;
  width:40px;
  height:40px;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  text-decoration:none;
  border:none;
  background:transparent;
  cursor:pointer;
  border-radius:10px;
  padding:0;
  transition:color .2s ease, background-color .2s ease;
}

.lr-header-tool:hover,
.lr-header-tool:focus-visible{
  color:var(--lr-neon-cyan);
  background:rgba(255, 255, 255, 0.12);
  box-shadow:0 0 22px rgba(56, 248, 255, 0.35), 0 0 12px rgba(var(--lr-neon-magenta-rgb), 0.25);
}

.lr-header-tool__svg{
  display:block;
  flex-shrink:0;
}

.lr-header-tool--cart{
  position:relative;
}

.lr-cart-count{
  position:absolute;
  top:-2px;
  right:-2px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#e11d48;
  color:#fff;
  font-family:"Poppins", system-ui, sans-serif;
  font-size:11px;
  font-weight:700;
  line-height:18px;
  text-align:center;
  pointer-events:none;
  box-shadow:0 0 0 2px var(--lr-header-bg);
}

.lr-search-panel{
  border-top:1px solid rgba(255, 255, 255, 0.12);
  background:var(--lr-header-bg-dense);
}

.lr-search-panel__inner{
  padding:12px 0 16px;
}

.lr-search-live{
  max-width:640px;
  margin:0 auto;
  position:relative;
  z-index:1005;
}

.lr-search-panel__form{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:stretch;
}

.lr-search-combo{
  display:flex;
  align-items:stretch;
  background:#ffffff;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  overflow:visible;
  min-height:50px;
}

.lr-search-combo__label{
  flex:1;
  min-width:0;
  margin:0;
  display:flex;
}

.lr-search-panel__input{
  flex:1;
  width:100%;
  min-height:50px;
  border:none;
  border-radius:0;
  background:transparent;
  color:#111827;
  padding:0 14px 0 16px;
  font-size:15px;
  font-family:"Poppins", system-ui, sans-serif;
  outline:none;
}

.lr-search-panel__input::placeholder{
  color:#9ca3af;
}

.lr-search-combo:focus-within{
  box-shadow:0 18px 40px rgba(0,0,0,.35), 0 0 0 2px var(--lr-neon-cyan), 0 0 20px rgba(var(--lr-neon-magenta-rgb), 0.35);
}

.lr-search-combo__submit{
  flex-shrink:0;
  width:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  background:transparent;
  color:var(--lr-neon-magenta);
  cursor:pointer;
  padding:0;
  transition:opacity .2s ease, transform .2s ease;
}

.lr-search-combo__submit:hover{
  opacity:.85;
}

.lr-search-combo__icon{
  display:block;
}

.lr-live-search-results{
  background:#ffffff;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 24px 56px rgba(0,0,0,.28);
  max-height:min(420px, 65vh);
  overflow-y:auto;
  overflow-x:hidden;
  margin-top:-2px;
}

.lr-live-search-results[hidden]{
  display:none !important;
}

.lr-live-search-loading,
.lr-live-search-empty,
.lr-live-search-error{
  margin:0;
  padding:16px 18px;
  font-family:"Poppins", system-ui, sans-serif;
  font-size:14px;
  color:#6b7280;
}

.lr-live-search-error{
  color:#b91c1c;
}

.lr-live-search-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:12px 16px;
  text-decoration:none;
  color:#111827;
  border-bottom:1px solid rgba(0,0,0,.06);
  transition:background-color .15s ease;
}

.lr-live-search-item:last-of-type{
  border-bottom:none;
}

.lr-live-search-item:hover,
.lr-live-search-item:focus-visible{
  background:rgba(var(--lr-neon-magenta-rgb), 0.1);
}

.lr-live-search-item__img{
  width:52px;
  height:52px;
  border-radius:10px;
  object-fit:cover;
  flex-shrink:0;
  background:#f3f4f6;
  border:1px solid rgba(0,0,0,.06);
}

.lr-live-search-item__meta{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.lr-live-search-item__title{
  font-family:"Poppins", system-ui, sans-serif;
  font-size:14px;
  font-weight:600;
  line-height:1.35;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.lr-live-search-item__price{
  font-size:13px;
  color:#6b7280;
  font-weight:500;
}

.lr-live-search-all{
  display:block;
  text-align:center;
  padding:14px 16px;
  font-family:"Poppins", system-ui, sans-serif;
  font-size:14px;
  font-weight:600;
  color:#7c3aed;
  text-decoration:none;
  border-top:1px solid rgba(0,0,0,.08);
  background:#fafafa;
}

.lr-live-search-all:hover,
.lr-live-search-all:focus-visible{
  background:rgba(var(--lr-neon-magenta-rgb), 0.1);
  color:var(--lr-neon-magenta);
}

.lr-search-panel__row{
  display:flex;
  justify-content:flex-end;
}

.lr-search-panel__close{
  min-height:40px;
  padding:0 16px;
  border-radius:10px;
  font-family:"Poppins", system-ui, sans-serif;
  font-weight:600;
  font-size:13px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.28);
  background:transparent;
  color:#fff;
}

.lr-search-panel__close:hover{
  border-color:var(--lr-neon-cyan);
  color:var(--lr-neon-cyan);
}

.lr-mega{
  display:none;
  position:absolute;
  left:50%;
  top:calc(100% - 12px);
  transform:translateX(-50%);
  width:min(640px, calc(100vw - 24px));
  min-width:min(100%, 280px);
  padding:12px 0 0;
  margin:0;
  z-index:1002;
  background:transparent;
  pointer-events:none;
}

.lr-nav-item:hover .lr-mega,
.lr-nav-item:focus-within .lr-mega{
  display:block;
  pointer-events:auto;
}

.lr-mega-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));
  gap:18px 22px;
  padding:20px 22px;
  background:linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  border-radius:14px;
  border:1px solid rgba(var(--lr-neon-magenta-rgb), 0.45);
  box-shadow:0 24px 48px rgba(0,0,0,.55), 0 0 28px rgba(var(--lr-neon-magenta-rgb), 0.12), 0 0 0 1px rgba(255,255,255,.06) inset;
}

.lr-mega-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  text-decoration:none;
  color:rgba(255,255,255,.92);
  min-height:0;
  padding:10px 8px;
  margin:-10px -8px;
  border-radius:10px;
  transition:background-color .18s ease, color .18s ease;
}

.lr-mega-item__text{
  flex:1 1 auto;
  min-width:0;
}

.lr-mega-item:hover,
.lr-mega-item:focus-visible{
  background:rgba(var(--lr-neon-magenta-rgb), 0.16);
  color:#fff;
}

.lr-mega-item__img{
  width:52px;
  height:52px;
  border-radius:10px;
  object-fit:cover;
  flex:0 0 auto;
  background:#2a2a2a;
  border:1px solid rgba(255,255,255,.08);
}

.lr-mega-item__title{
  font-size:13px;
  font-family:"Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:700;
  line-height:1.3;
  margin-top:2px;
  color:rgba(255,255,255,.95);
  transition:color .18s ease;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}

.lr-mega-item:hover .lr-mega-item__title,
.lr-mega-item:focus-visible .lr-mega-item__title{
  color:var(--lr-header-hover);
}

.lr-mega-item__desc{
  font-size:11.5px;
  color:rgba(255,255,255,.52);
  line-height:1.45;
  margin-top:5px;
  max-width:none;
  font-family:"Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  overflow-wrap:anywhere;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
}

.lr-mega-item:hover .lr-mega-item__desc,
.lr-mega-item:focus-visible .lr-mega-item__desc{
  color:rgba(255,255,255,.68);
}

@media (min-width: 1025px){
  .lr-nav-item:first-child .lr-mega{
    left:0;
    transform:none;
  }

  .lr-nav-item:last-child .lr-mega{
    left:auto;
    right:0;
    transform:none;
  }
}

.lr-page{
  padding:34px 0 0;
}

.lr-hero{
  max-width:1220px;
  margin:0 auto;
  padding:40px 18px;
}

.lr-hero-title{
  margin:0 0 10px;
  font-size:28px;
  font-weight:900;
  color:#111827;
}

.lr-hero-subtitle{
  margin:0;
  color:var(--lr-muted);
}

@media (max-width: 1200px){
  :root{
    --lr-header-bar-height:84px;
  }

  .lr-nav-item{
    padding:0 clamp(6px, 1.2vw, 16px);
  }

  .lr-mega-grid{
    gap:14px 16px;
    padding:18px 16px;
    grid-template-columns:repeat(auto-fit, minmax(175px, 1fr));
  }
}

@media (max-width: 1024px){
  :root{
    --lr-header-bar-height:64px;
  }

  .lr-top-ticker__track{
    animation-duration:20s;
  }

  .lr-top-ticker__content{
    font-size:12px;
    padding:9px 0;
  }

  .lr-header__inner{
    min-height:var(--lr-header-bar-height);
    grid-template-columns:auto 1fr auto;
    grid-template-rows:auto auto;
    gap:8px;
  }

  .lr-logo{
    justify-self:start;
    grid-column:1;
  }

  .lr-header.is-menu-open .lr-header__inner{
    border-bottom:1px solid rgba(255, 255, 255, 0.1);
  }

  .lr-menu-toggle{
    display:flex;
    justify-self:end;
    grid-column:3;
    grid-row:1;
  }

  .lr-header-tools{
    display:none;
  }

  .lr-mobile-tools{
    display:flex;
    align-items:center;
    gap:10px;
    justify-self:center;
    grid-column:2;
    grid-row:1;
    position:static;
    transform:none;
    margin:0;
  }

  .lr-nav{
    grid-column:1 / -1;
    grid-row:2;
    display:none;
    position:static;
    width:100%;
    justify-content:flex-start;
    padding:0;
    background:var(--lr-header-bg-dense);
    border-top:1px solid rgba(255, 255, 255, 0.12);
    border-bottom:1px solid rgba(255, 255, 255, 0.1);
    box-shadow:none;
    padding:10px 0 14px;
    z-index:1002;
    max-height:min(72vh, 520px);
    overflow:auto;
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }

  .lr-header.is-menu-open .lr-nav{
    display:flex;
  }

  .lr-nav-item{
    flex:none;
    width:100%;
    max-width:none;
    min-height:0;
    justify-content:flex-start;
    padding:0;
  }

  .lr-nav-link{
    width:100%;
    min-height:0;
    padding:14px 18px;
    justify-content:flex-start;
    font-size:15px;
    line-height:1.25;
    border-bottom:1px solid rgba(255,255,255,.08);
    white-space:normal;
  }

  .lr-nav-item:last-child .lr-nav-link{
    border-bottom:none;
  }

  .lr-mega{
    display:none !important;
  }

  .lr-search-panel__inner{
    padding:10px 0 12px;
  }
}

@media (prefers-reduced-motion: reduce){
  .lr-top-ticker__track{
    animation:none;
  }
}
