/* Top Band (Header üstünde) */
.top-band {
  background: #F8FAFC;
  color: #0f172a;
  font-weight: 600;
  box-shadow: none;
  height: 32px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 3001;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.top-band .container,
.category-mega-bar > .container,
.category-mega-panel > .container {
  width: 100%;
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
}
.band-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 0;
  height: 32px;
}
.band-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}
.top-band i { font-size: 0.9em; opacity: 0.9; }

.category-mega-bar {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 1999;
}
.category-mega-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.category-mega-tabs {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
}
.category-mega-tabs::-webkit-scrollbar { display: none; }
.category-mega-search {
  position: relative;
  flex: 0 0 320px;
  max-width: 40vw;
}
.category-mega-search-input {
  width: 100%;
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 12px;
  outline: none;
}
.category-mega-search-input::placeholder { color: var(--color-muted); }
.category-mega-search-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  z-index: 2001;
  max-height: min(460px, calc(100vh - 140px));
  overflow: auto;
}
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-search-panel {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  padding: 10px calc(16px + env(safe-area-inset-right)) 10px calc(16px + env(safe-area-inset-left));
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 2002;
  display: none;
}
.mobile-search-panel:not([hidden]) { display: flex; justify-content: center; }
.mobile-search-panel-inner {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0;
}
.mobile-search-toggle.active { opacity: 0.9; }
.mobile-search {
  position: relative;
  margin: 12px 16px 6px;
  z-index: 2001;
}
.mobile-search-input {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--color-text);
  border-color: var(--color-border);
  padding: 12px 14px;
  font-size: 16px;
}
.mobile-search-input::placeholder { color: var(--color-muted); }
.mobile-search-dropdown {
  top: calc(100% + 8px);
  z-index: 2003;
}
.category-mega-search-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px;
  background: #fff;
  border: 0;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
}
.category-mega-search-item:hover { background: #f3f4f6; }
.category-mega-search-item.is-active { background: #eef2ff; }
.category-mega-search-body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}
.category-mega-search-name { font-weight: 800; color: var(--color-text); }
.category-mega-search-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.category-mega-search-meta { font-weight: 700; color: var(--color-muted); font-size: 12px; }
.category-mega-search-category {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.category-mega-search-reason {
  min-width: 0;
}
.category-mega-search-arrow {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 15px;
  font-weight: 800;
}
.category-mega-search-section-title {
  padding: 4px 10px 6px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.category-mega-search-empty {
  padding: 10px 10px;
  color: var(--color-muted);
  font-weight: 700;
  line-height: 1.45;
}
.category-mega-tab {
  background: #EEF1F5;
  color: #0f172a;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.category-mega-tab:hover,
.category-mega-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.category-mega-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--color-border);
}
.category-mega-bar.open .category-mega-panel { display: block; }
.category-mega-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 10px;
}
.category-mega-panel-title {
  font-weight: 800;
  color: var(--color-text);
}
.category-mega-close {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  line-height: 1;
  font-size: 22px;
}
.category-mega-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  padding: 0 0 14px;
}
.category-mega-product {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
}
.category-mega-product:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
body.home-page .product-item-content {
  background: #fff;
}
.product-item-content.product-highlight {
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
}

footer .site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
  padding: 10px 0 6px;
}
footer .site-footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
footer .site-footer-links a:hover { text-decoration: underline; }
footer .site-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 6px 0 10px;
}
footer .site-footer-payments img {
  height: 22px;
  width: auto;
  display: block;
}

@supports (content-visibility: auto) {
  body.home-page .category-list .category-item:nth-of-type(n+3),
  body.home-page #referanslar,
  body.home-page #hizmetler,
  body.home-page #hakkimizda,
  body.home-page #iletisim,
  body.home-page .jetstart-footer-cta,
  body.home-page footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 640px;
  }
}

@media (max-width: 900px) {
  .category-mega-row { flex-wrap: wrap; }
  .category-mega-search { flex: 1 1 100%; max-width: none; padding-bottom: 10px; }
  .category-mega-tabs { width: 100%; padding-bottom: 0; justify-content: flex-start; }
}

.header-search {
  position: relative;
  width: 100%;
  max-width: 608px;
  justify-self: center;
}
.header-search-li { padding: 0 5px; }
.header-search-input {
  width: 100%;
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 11px 40px 11px 13px;
  font-size: 14px;
  line-height: 1.2;
  outline: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.header-search-input::placeholder { color: #64748b; }
.header-search-input:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.header-search .search-rotator,
.mobile-search-panel-inner .search-rotator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
  user-select: none;
}
.header-search .search-rotator {
  left: 13px;
  right: 44px;
  font-size: 14px;
  line-height: 1.2;
}
.mobile-search-panel-inner .search-rotator {
  left: 14px;
  right: 14px;
  font-size: 16px;
}
.header-search .search-rotator.show,
.mobile-search-panel-inner .search-rotator.show {
  opacity: 1;
}
.header-search-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 15px;
  pointer-events: none;
}
.header-search-dropdown {
  top: calc(100% + 10px);
}
@media (max-width: 768px) {
  .header-search { display: none; }
}

header {
  background: #ffffff;
  color: #0f172a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 48px;
}
header a { color: #0f172a; }
header a:hover { color: #B61C1E; }
.header-nav-drawer header nav a { color: #0f172a; }
.header-nav-drawer header nav a:hover { color: #B61C1E; }
.mobile-menu-toggle { color: #0f172a; }

@media (max-width: 768px) {
  /* Desktop light header stays white; mobile home (index-mobile) uses dark chrome via page CSS */
  body:not(.home-page) header {
    background: #ffffff;
    color: #0f172a;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    min-height: 44px;
  }
  body:not(.home-page) header a { color: #0f172a; }
  body.home-page header {
    background: #0b0b0b;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 44px;
  }
  body.home-page header a { color: #fff; }
  /* Çekmece beyaz: menü linkleri header’daki beyaz rengi miras almasın */
  body.home-page header nav a,
  html.header-nav-drawer body.home-page header nav a {
    color: #0f172a;
  }
  body.home-page header nav a:hover,
  html.header-nav-drawer body.home-page header nav a:hover {
    color: #B61C1E;
  }
  header h1 a.site-logo-link img,
  header .site-logo a.site-logo-link img { height: auto; max-height: 22px; max-width: 100%; }
  body.home-page header {
    min-height: 48px;
  }
  body.home-page header h1 a.site-logo-link img,
  body.home-page header .site-logo a.site-logo-link img {
    height: 20px;
    max-height: 20px;
    width: auto;
    max-width: min(132px, 34vw);
  }
  body:not(.home-page) .mobile-menu-toggle { color: #0f172a; }
  body.home-page .mobile-menu-toggle,
  body.home-page .mobile-nav-toggle { color: #fff; }
  .header-left { gap: 6px; }
  body.home-page #kisiBilgileriBtn.header-button,
  #kisiBilgileriBtn.header-button {
    padding: 0 8px;
    font-size: 10px;
    border-radius: 999px;
    margin-right: 0;
    height: 26px;
    line-height: 1;
  }
  body.home-page #kisiBilgileriBtn.header-button:not(.jg-kisi-attention) {
    background: transparent;
    border-color: rgba(248, 113, 113, 0.55);
    color: #fecaca;
  }
}

header .container {
  display: grid;
  grid-template-columns: auto minmax(0, 608px) auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.header-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0f172a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  line-height: 1;
  box-shadow: none;
}
.header-quick-btn:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.2);
  color: #0f172a;
}
#headerSystemLoginBtn { display: none !important; }
.header-quick-btn .cart-count {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .header-quick-label { display: none; }
  .header-quick-btn { padding: 0; gap: 0; width: 30px; height: 30px; justify-content: center; }
  .header-cart-btn .cart-count { display: none; }
}

@media (max-width: 768px) {
  /* Home header: drop the desktop 3-col grid so logo/buttons share one flex row without overlapping */
  body.home-page header > .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 0 10px;
    min-height: 48px;
    overflow: visible;
  }
  body.home-page header > .container > .header-search {
    display: none;
  }
  body.home-page .header-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 0;
  }
  body.home-page .header-left .site-logo,
  body.home-page header .site-logo {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden !important;
  }
  body.home-page header .site-logo a.site-logo-link {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
  }
  body.home-page header .site-logo a.site-logo-link img {
    height: 20px !important;
    max-height: 20px !important;
    width: auto !important;
    max-width: min(132px, 34vw) !important;
    object-fit: contain;
    object-position: left center;
  }
  body.home-page #kisiBilgileriBtn.header-button {
    flex: 0 0 auto;
    flex-shrink: 0;
  }
  body.home-page .header-actions {
    flex: 0 0 auto;
    flex-shrink: 0;
    gap: 4px;
    margin-left: 0;
  }
  body.home-page .header-quick-btn {
    width: 28px;
    height: 28px;
  }
  body.home-page #accountArea {
    float: none;
    margin-top: 0;
  }
  body.home-page .account-button {
    width: 28px;
    height: 28px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
    box-shadow: none;
    font-size: 12px;
  }
  body.home-page .account-button .fa-user {
    margin-right: 0 !important;
  }
  body.home-page .mobile-menu-toggle {
    width: 28px;
    height: 28px;
    padding: 0;
    flex: 0 0 auto;
  }
}

@media (max-width: 360px) {
  body.home-page #headerLoginBtn {
    display: none;
  }
}

/* Hero Slider */
.hero { margin: 0; }
.home-h1-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 16px 16px 4px;
  text-align: center;
}
.home-h1-wrap h1 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-black, #111);
}
.home-h1-wrap p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #4b5563;
}
@media (max-width: 768px) {
  .home-h1-wrap { padding: 12px 14px 2px; }
  .home-h1-wrap h1 { font-size: 1.18rem; }
}
#hero-slider.slider {
  position: relative;
  width: 70%;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  height: auto;
  aspect-ratio: 4069 / 1156;
}
#hero-slider .slides { position: relative; width: 100%; height: 100%; }
#hero-slider.is-loading { background: linear-gradient(135deg, #f3f4f6, #e5e7eb); }
#hero-slider.is-loading::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.48) 50%, rgba(255,255,255,0.12) 100%);
  background-size: 200% 100%;
  animation: hero-slider-skeleton 1.25s linear infinite;
  z-index: 1;
}
#hero-slider.is-loading::after { background: none; }
#hero-slider.is-loading .slides,
#hero-slider.is-empty .slides { background: linear-gradient(135deg, #f8fafc, #e5e7eb); }
#hero-slider.is-loading .slider-nav,
#hero-slider.is-loading .slider-dots,
#hero-slider.is-empty .slider-nav,
#hero-slider.is-empty .slider-dots { opacity: 0; pointer-events: none; }
#hero-slider .slide { position: absolute; inset: 0; opacity: 0; transform: scale(.985) translate3d(0,0,0); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
#hero-slider .slide.active { opacity: 1; transform: scale(1) translate3d(0,0,0); z-index: 1; }
#hero-slider .slide img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; image-rendering: -webkit-optimize-contrast; filter: saturate(1.02) contrast(1.02); }
#hero-slider.slider::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.25)); pointer-events: none; z-index: 0; }
#hero-slider .slide-caption { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; color: #fff; max-width: 900px; padding: 0 20px; z-index: 2; }
#hero-slider .slide-caption h2 { font-size: 2.1em; margin: 0 0 8px; letter-spacing: 0.2px; }
#hero-slider .slide-caption p { font-size: 1.1em; margin: 0 0 16px; color: #e5e7eb; }
#hero-slider .slide-caption .btn { background: var(--color-primary); border: none; }
#hero-slider .slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.4); border: none; color: #fff; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; cursor: pointer; z-index: 3; box-shadow: var(--shadow-sm); }
#hero-slider .slider-nav:hover { background: rgba(0,0,0,.55); }
#hero-slider .slider-nav.prev { left: 18px; }
#hero-slider .slider-nav.next { right: 18px; }

#hero-slider .slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
#hero-slider .slider-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); cursor: pointer; }
#hero-slider .slider-dots button.active { background: var(--color-primary); }

@keyframes hero-slider-skeleton {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

@media (max-width: 768px) {
  #hero-slider.slider { width: 100%; margin: 0; height: 220px; aspect-ratio: auto; }
  #hero-slider .slide img { height: 100%; object-fit: contain; object-position: center center; }
  #hero-slider .slide-caption h2 { font-size: 1.5em; }
  #hero-slider .slide-caption p { display: none; }
  #hero-slider .slider-nav { padding: 8px; }
}

.features-strip {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.features-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.features-strip-row::-webkit-scrollbar { display: none; }
.features-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.features-strip-item i {
  color: #64748b;
  font-size: 16px;
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.trust-strip-row {
  display: grid;
  gap: 4px;
  padding: 10px 0 12px;
  text-align: center;
}
.trust-strip-line {
  color: #334155;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
}
.trust-strip-rating {
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
}
.trust-rating-main {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.trust-stars {
  font-size: 1.15em;
  line-height: 1;
}
.trust-score {
  font-weight: 800;
}

.jetstart-promo-section {
  padding: 18px 0 10px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.jetstart-promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(37,99,235,0.08) 0%, rgba(37,99,235,0.02) 100%);
  border: 1px solid rgba(37,99,235,0.20);
  box-shadow: var(--shadow-sm);
}
.jetstart-promo-title {
  font-weight: 900;
  font-size: 18px;
  color: #0f172a;
}
.jetstart-promo-subtitle {
  margin-top: 6px;
  color: #334155;
  font-weight: 700;
  line-height: 1.35;
}
.jetstart-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(37,99,235,0.22);
}
.jetstart-promo-btn:hover {
  filter: brightness(0.95);
}

/* Kurumsal paket bandı — kartvizit ile aynı bileşen (.jg-pkg-mkt-rail) */
.jg-corp-pkg-section {
  padding: 8px 0 14px;
  background: #fff;
}
.jg-corp-pkg-section .jg-pkg-mkt-rail {
  margin: 0;
}
body.dark-mode .jg-corp-pkg-section,
html.jg-prefers-dark .jg-corp-pkg-section {
  background: #0b1220;
}

.jetstart-how-section {
  padding: 34px 0;
  background: #f8f9fb;
  border-bottom: 1px solid #e5e7eb;
}
.jetstart-how-header { text-align: center; }
.jetstart-how-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.22);
  color: #0f172a;
  font-weight: 900;
  font-size: 12px;
}
.jetstart-how-title {
  font-size: 28px;
  line-height: 1.12;
  font-weight: 900;
  color: #0f172a;
  margin: 12px 0 0;
}
.jetstart-how-subtitle {
  margin-top: 8px;
  color: #475569;
  font-weight: 800;
}
.jetstart-how-steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}
.jetstart-how-steps::before {
  content: '';
  position: absolute;
  left: 36px;
  right: 36px;
  top: 39px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,0) 0%, rgba(37,99,235,0.36) 22%, rgba(37,99,235,0.36) 78%, rgba(37,99,235,0) 100%);
}
.jetstart-how-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  padding: 16px 16px 18px;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
  position: relative;
}
.jetstart-how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15,23,42,0.10);
  border-color: rgba(37,99,235,0.32);
}
.jetstart-how-card-highlight {
  border-color: rgba(37,99,235,0.40);
  box-shadow: 0 14px 34px rgba(37,99,235,0.12);
  transform: translateY(-2px);
}
.jetstart-how-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.jetstart-how-bubble {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,0.10);
  color: #2563eb;
  position: relative;
  flex: 0 0 auto;
}
.jetstart-how-bubble i { font-size: 18px; }
.jetstart-how-bubble-no {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(37,99,235,0.22);
}
.jetstart-how-card-title {
  font-weight: 900;
  font-size: 16px;
  color: #0f172a;
}
.jetstart-how-card-desc {
  margin-top: 10px;
  color: #475569;
  font-weight: 800;
  line-height: 1.35;
  font-size: 13px;
}
.jetstart-how-badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(220,38,38,0.10);
  border: 1px solid rgba(220,38,38,0.30);
  color: #b91c1c;
  font-weight: 900;
  text-align: center;
}

.jetstart-footer-cta {
  padding: 22px 0 28px;
  background: #0b1220;
}
.jetstart-footer-cta-card {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(37,99,235,0.30) 0%, rgba(37,99,235,0.10) 100%);
  border: 1px solid rgba(147,197,253,0.28);
  padding: 22px 18px;
  text-align: center;
  color: #fff;
}
.jetstart-footer-cta-title {
  font-weight: 900;
  font-size: 20px;
}
.jetstart-footer-cta-subtitle {
  margin-top: 6px;
  font-weight: 800;
  color: rgba(255,255,255,0.90);
}
.jetstart-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  color: #0b1220;
  font-weight: 900;
  text-decoration: none;
}
.jetstart-footer-cta-btn:hover {
  filter: brightness(0.95);
}

body.dark-mode .jetstart-promo-section,
body.dark-mode .jetstart-how-section {
  background: #000;
  border-bottom-color: rgba(255,255,255,0.12);
}
body.dark-mode .jetstart-promo-card {
  background: #000;
  border-color: rgba(255,255,255,0.12);
}
body.dark-mode .jetstart-promo-title,
body.dark-mode .jetstart-how-title {
  color: #fff;
}
body.dark-mode .jetstart-promo-subtitle,
body.dark-mode .jetstart-how-subtitle {
  color: #e5e7eb;
}
body.dark-mode .jetstart-how-kicker { color: #fff; background: rgba(37,99,235,0.14); border-color: rgba(147,197,253,0.22); }
body.dark-mode .jetstart-how-steps::before { background: linear-gradient(90deg, rgba(147,197,253,0) 0%, rgba(147,197,253,0.22) 22%, rgba(147,197,253,0.22) 78%, rgba(147,197,253,0) 100%); }
body.dark-mode .jetstart-how-card { background: #0b1220; border-color: rgba(255,255,255,0.12); }
body.dark-mode .jetstart-how-card:hover { border-color: rgba(147,197,253,0.30); }
body.dark-mode .jetstart-how-card-highlight { border-color: rgba(147,197,253,0.32); box-shadow: 0 14px 34px rgba(147,197,253,0.12); }
body.dark-mode .jetstart-how-bubble { background: rgba(147,197,253,0.12); color: #93c5fd; }
body.dark-mode .jetstart-how-card-title { color: #fff; }
body.dark-mode .jetstart-how-card-desc { color: #cbd5e1; }
body.dark-mode .jetstart-how-badge { background: rgba(220,38,38,0.14); border-color: rgba(248,113,113,0.32); color: #fecaca; }
body.dark-mode .jetstart-promo-btn {
  background: #2563eb;
  color: #fff;
}
body.dark-mode .jetstart-footer-cta {
  background: #000;
}
body.dark-mode .jetstart-footer-cta-card {
  background: linear-gradient(180deg, rgba(37,99,235,0.26) 0%, rgba(37,99,235,0.10) 100%);
  border-color: rgba(147,197,253,0.22);
}
body.dark-mode .jetstart-footer-cta-btn {
  background: #fff;
  color: #0b1220;
}

@media (max-width: 900px) {
  .features-strip-row { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .jetstart-promo-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .jetstart-promo-btn { width: 100%; }
  .features-strip-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    justify-content: stretch !important;
    overflow: visible !important;
  }
  .features-strip-item {
    white-space: normal !important;
    justify-content: flex-start;
  }
  .features-strip-item:first-child { grid-column: 1 / -1; }

  .trust-strip-row {
    text-align: left;
    padding: 10px 0 12px;
  }

  .jetstart-how-header { text-align: left; }
  .jetstart-how-title { font-size: 22px; }
  .jetstart-how-steps {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 8px;
    margin-top: 14px;
    scrollbar-width: none;
  }
  .jetstart-how-steps::-webkit-scrollbar { display: none; }
  .jetstart-how-steps::before { display: none; content: none; }
  body.dark-mode .jetstart-how-steps::before { display: none; content: none; }
  .jetstart-how-card {
    flex: 0 0 78%;
    min-width: 78%;
    width: 78%;
    box-sizing: border-box;
    scroll-snap-align: start;
  }
  .jetstart-how-card:hover,
  .jetstart-how-card-highlight {
    transform: none;
  }
  .jetstart-how-badge { width: 100%; }
}
/* Category slider nav (tüm kategoriler) */
.category-item { position: relative; }
.category-item .cat-slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.4); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 18px; cursor: pointer; box-shadow: var(--shadow-sm); z-index: 3; }
.category-item .cat-slider-nav:hover { background: rgba(0,0,0,.55); }
.category-item .cat-slider-nav.prev { left: 10px; }
.category-item .cat-slider-nav.next { right: 10px; }
.category-item .product-scroll { overflow-x: auto; scrollbar-width: none; }
.category-item .product-scroll::-webkit-scrollbar { display: none; }

.focus-products {
  margin: 8px 0 18px;
  position: relative;
}
.focus-products-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
}
.focus-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 54px 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.focus-grid::-webkit-scrollbar { display: none; }
.focus-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  color: inherit;
  flex: 0 0 auto;
  min-width: 320px;
  scroll-snap-align: start;
}
.focus-card:hover { border-color: #dc2626; }
.focus-card-link {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 12px;
}
.focus-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}
.focus-card h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
}
.focus-card p {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.35;
}
.focus-card .focus-links {
  margin: 0;
  padding: 0 12px 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.focus-card .focus-links a {
  color: #2563eb;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
}
.focus-card .focus-links a:hover { text-decoration: underline; }

.focus-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-30%);
  background: rgba(0,0,0,.40);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, background 180ms ease;
}
.focus-nav-btn:hover { background: rgba(0,0,0,.55); }
.focus-nav-btn.prev { left: 6px; }
.focus-nav-btn.next { right: 6px; }
.focus-products.has-nav .focus-nav-btn { opacity: 1; pointer-events: auto; }
.focus-products.has-nav .focus-nav-btn[disabled] { opacity: 0.25; pointer-events: none; }

/* Anasayfa: kampanya ve nasıl-çalışır bloklarını tüm ekranlarda gizle */
body.home-page .home-h1-wrap p,
body.home-page .jetstart-promo-section,
body.home-page .jetstart-how-section {
  display: none !important;
}

/* Mobile override for nav buttons (ensures perfect circle and larger size) */
@media (max-width: 768px) {
  /* Mobil: intro başlığı ve öne çıkanlar da gizle */
  body.home-page .home-h1-wrap,
  body.home-page .focus-products {
    display: none !important;
  }

  body.home-page .category-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 8px;
    padding-bottom: 6px;
    padding-left: 4px;
    padding-right: 4px;
  }

  body.home-page #categories {
    padding: 8px 0 16px;
  }
  body.home-page #categories > .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 10px;
    overflow: visible;
  }
  body.home-page .category-list {
    gap: 12px;
  }
  body.home-page .category-item {
    padding: 10px 6px 12px;
  }
  body.home-page .category-item:hover {
    transform: none;
  }

  #hero-slider .slider-nav { width: 38px; height: 38px; font-size: 16px; padding: 0; }
  .focus-grid { padding-left: calc(56px + env(safe-area-inset-left)); padding-right: calc(56px + env(safe-area-inset-right)); }
  .focus-card { flex: 0 0 auto; min-width: 260px; scroll-snap-align: start; }
  .focus-card-link { grid-template-columns: 56px 1fr; }
  .focus-card img { width: 56px; height: 56px; }
  .focus-nav-btn { width: 36px; height: 36px; font-size: 16px; }

  /* Tek ürün sahnesi: ortalanmış, tek tek kayan kart */
  body.home-page .category-item.two-rows .product-scroll,
  body.home-page .category-item .product-scroll {
    --jg-home-card: 88%;
    display: flex !important;
    grid-auto-flow: unset;
    grid-template-rows: none;
    gap: 12px;
    overflow-x: auto;
    padding: 2px calc((100% - var(--jg-home-card)) / 2) 8px !important;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc((100% - var(--jg-home-card)) / 2);
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
  }
  body.home-page .category-item.two-rows .product-item-content,
  body.home-page .category-item .product-item-content {
    cursor: pointer;
    flex: 0 0 var(--jg-home-card) !important;
    min-width: var(--jg-home-card) !important;
    width: var(--jg-home-card) !important;
    margin-right: 0 !important;
    padding: 0;
    box-sizing: border-box;
    scroll-snap-align: center;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  body.home-page .category-item .product-item-content:hover {
    transform: none;
    box-shadow: none;
  }
  body.home-page .category-item .product-link {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 700;
    white-space: normal;
    line-height: 1.25;
  }
  body.home-page .category-item .product-images {
    width: 100%;
    height: min(58vw, 290px);
    min-height: 220px;
    display: block;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-bottom: 0;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  }
  body.home-page .category-item .product-images.jg-mini-slider {
    min-width: 0;
    min-height: 220px;
  }
  body.home-page .category-item .product-images > img,
  body.home-page .category-item .product-images .product-img-front,
  body.home-page .category-item .product-images .product-img-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
    object-position: center center;
    border-radius: 4px;
    display: block;
    flex-shrink: 0;
  }
  body.home-page .category-item .product-images img:hover {
    transform: none;
  }
  body.home-page #matbaa-dijital .product-images img {
    max-width: none;
    max-height: none;
  }
  body.home-page .category-item .product-images:not(.jg-mini-slider) > img:nth-of-type(n+2),
  body.home-page .category-item .product-images .product-img-back {
    opacity: 0;
  }
  body.home-page .category-item .product-images.has-back {
    touch-action: manipulation;
  }
  body.home-page .category-item .product-images.has-back .product-img-front,
  body.home-page .category-item .product-images.has-back > img:nth-of-type(1) {
    opacity: 1;
  }
  body.home-page .category-item .product-images.has-back.show-back .product-img-front,
  body.home-page .category-item .product-images.has-back.show-back > img:nth-of-type(1) {
    opacity: 0;
  }
  body.home-page .category-item .product-images.has-back.show-back .product-img-back,
  body.home-page .category-item .product-images.has-back.show-back > img:nth-of-type(2) {
    opacity: 1;
  }
  body.home-page .category-item .product-images.has-back > img,
  body.home-page .category-item .product-images.has-back .product-img-front,
  body.home-page .category-item .product-images.has-back .product-img-back {
    transition: opacity 160ms ease;
  }
  body.home-page .category-item .product-images .image-overlay.integrated ~ .image-overlay:not(.back) {
    display: none !important;
  }
  body.home-page .category-item .product-images .image-overlay.back {
    opacity: 0 !important;
    visibility: hidden;
  }
  body.home-page .category-item .product-images.has-back .image-overlay.integrated { opacity: 1; }
  body.home-page .category-item .product-images.has-back .image-overlay.back { opacity: 0 !important; visibility: hidden; }
  body.home-page .category-item .product-images.show-back .image-overlay.integrated { opacity: 0; visibility: hidden; }
  body.home-page .category-item .product-images.show-back .image-overlay.back { opacity: 1 !important; visibility: visible; }
  body.home-page .category-item .product-images.has-back .image-overlay.integrated,
  body.home-page .category-item .product-images.has-back .image-overlay.back {
    transition: opacity 160ms ease;
  }
  body.home-page .category-item .product-images .image-overlay {
    box-sizing: border-box;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  body.home-page .category-item .product-images .image-overlay.integrated.mobile-home .overlay-logo,
  body.home-page .category-item .product-images .image-overlay.integrated.mobile-home .overlay-logo.large {
    top: 8% !important;
    right: 6% !important;
    left: auto !important;
    max-width: 22% !important;
    max-height: 22% !important;
  }
  body.home-page .category-item .product-images .image-overlay.integrated.mobile-home .overlay-text {
    left: 14% !important;
    top: 62% !important;
    max-width: 55% !important;
  }
  body.home-page .category-item .cat-slider-nav {
    width: 34px;
    height: 34px;
    font-size: 14px;
    padding: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    z-index: 20;
  }
  body.home-page .category-item .cat-slider-nav:hover {
    background: #fff;
  }
  body.home-page .category-item .cat-slider-nav.prev { left: 6px; }
  body.home-page .category-item .cat-slider-nav.next { right: 6px; }
}

@media (max-width: 768px) {
  #referanslar .logo-grid {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 2px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #referanslar .logo-grid::-webkit-scrollbar { display: none; }
  #referanslar .logo-grid img {
    flex: 0 0 auto;
    height: 44px;
    width: auto;
    max-width: none;
    object-fit: contain;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 10px 12px;
    display: block;
  }
}

@media (hover: none) and (pointer: coarse) {
  #referanslar .logo-grid {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 2px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #referanslar .logo-grid::-webkit-scrollbar { display: none; }
  #referanslar .logo-grid img {
    flex: 0 0 auto;
    height: 44px;
    width: auto;
    max-width: none;
    object-fit: contain;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 10px 12px;
    display: block;
  }
}

html:has(body.home-page),
html.jg-amz-added {
  overflow-x: clip;
}
body.home-page {
  overflow-x: clip;
  -webkit-overflow-scrolling: touch;
}
#jgAmzAddedBanner {
  display: none;
}
html.jg-amz-added #jgAmzAddedBanner,
body.jg-amz-added #jgAmzAddedBanner {
  display: block;
}
html.jg-amz-added .hero,
html.jg-amz-added #hero-slider,
html.jg-amz-added .home-h1-wrap,
html.jg-amz-added .jetstart-promo-section,
html.jg-amz-added .jg-corp-pkg-section,
html.jg-amz-added .features-strip,
html.jg-amz-added .trust-strip,
html.jg-amz-added .jetstart-how-section,
html.jg-amz-added .top-band,
body.jg-amz-added .hero,
body.jg-amz-added #hero-slider,
body.jg-amz-added .home-h1-wrap,
body.jg-amz-added .jetstart-promo-section,
body.jg-amz-added .jg-corp-pkg-section,
body.jg-amz-added .features-strip,
body.jg-amz-added .trust-strip,
body.jg-amz-added .jetstart-how-section,
body.jg-amz-added .top-band {
  display: none !important;
}
.jg-amz-added-banner {
  margin: 10px 12px 8px;
  padding: 14px 14px 16px;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  background: #fff;
}
.jg-amz-added-banner__ok {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #067d62;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.jg-amz-added-banner__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #067d62;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.jg-amz-added-banner__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.jg-amz-added-banner__img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 6px;
  flex: 0 0 auto;
}
.jg-amz-added-banner__meta {
  min-width: 0;
  flex: 1 1 auto;
}
.jg-amz-added-banner__title {
  font-size: 14px;
  font-weight: 800;
  color: #0f1111;
  line-height: 1.3;
}
.jg-amz-added-banner__sub {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #565959;
}
.jg-amz-added-banner__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-height: 36px;
  padding: 8px 18px;
  border: 1px solid #d5d9d9;
  border-radius: 999px;
  background: #fff;
  color: #0f1111;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.jg-amz-added-banner__cart:hover {
  background: #f7fafa;
}
body.dark-mode .jg-amz-added-banner {
  background: #111;
  border-color: rgba(255,255,255,0.12);
}
body.dark-mode .jg-amz-added-banner__title,
body.dark-mode .jg-amz-added-banner__cart {
  color: #fafafa;
}
