/* Pasaj Teknoloji — En Teknoloji style (light storefront) */
:root {
  --en-yellow: #ffe600;
  --en-yellow-deep: #f5d800;
  --en-black: #0a0a0a;
  --en-ink: #111111;
  --en-muted: #6b7280;
  --en-line: #e8e8e8;
  --en-soft: #f3f3f3;
  --en-card: #f5f5f5;
  --en-price: #e10600;
  --en-bg: #ffffff;
  --en-hero-grad: linear-gradient(180deg, #dfe7ef 0%, #f5f7fa 42%, #ffffff 100%);
  --en-radius: 16px;
  --en-font: "Manrope", system-ui, sans-serif;
  --en-display: "Cormorant Garamond", Georgia, serif;
  --en-pastel-1: #d8c8e8;
  --en-pastel-2: #c5d9c8;
  --en-pastel-3: #c9d7e8;
  --en-pastel-4: #e8cfc8;
  --en-pastel-5: #e2d4b8;
  --en-pastel-6: #c8c8d4;
  --en-pastel-7: #d4e0c8;
  --en-pastel-8: #e0c8d4;
}

html,
body.theme-en,
body.en-site {
  background: var(--en-bg) !important;
  color: var(--en-ink) !important;
  font-family: var(--en-font) !important;
  color-scheme: light;
}

body.en-site #nt_wrapper,
body.en-site #nt_content,
body.en-site .hb-page-wrap {
  background: transparent !important;
}

body.en-site .kalles_toolbar,
body.en-site #kalles-section-toolbar_mobile {
  display: none !important;
}

/* ---------- Header ---------- */
.hb-container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--en-black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hb-topbar {
  background: var(--en-yellow);
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hb-topbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.hb-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.hb-topbar__item span[aria-hidden] {
  font-size: 14px;
  line-height: 1;
}

.hb-mainbar {
  background: var(--en-black);
  border: none;
}

.hb-mainbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px 28px;
  padding: 14px 0 10px;
}

.hb-logo {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  min-width: 150px;
}

.hb-logo__mark {
  font-family: var(--en-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--en-yellow);
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.hb-logo__sub {
  font-family: var(--en-display);
  font-size: 1.35rem;
  color: var(--en-yellow);
  font-weight: 500;
  margin-top: -2px;
  letter-spacing: 0.01em;
}

.hb-logo img {
  display: none;
}

.hb-nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hb-cats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
}

.hb-cats-row a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  padding: 2px 0;
  white-space: nowrap;
  opacity: 0.92;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.hb-cats-row a:hover,
.hb-cats-row a.is-active {
  color: var(--en-yellow) !important;
  opacity: 1;
}

.hb-cats-row--secondary a {
  font-size: 12.5px;
  font-weight: 500;
  opacity: 0.78;
}

.hb-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hb-action {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none !important;
  border: 1px solid transparent;
  background: transparent;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.hb-action:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.hb-action svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.hb-action__text {
  display: none;
}

.hb-cart i,
.hb-action .hb-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--en-yellow);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

.hb-search-panel {
  grid-column: 1 / -1;
  display: none;
  padding-bottom: 12px;
}

.hb-search-panel.is-open {
  display: block;
}

.hb-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.hb-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 12px 16px;
  font-size: 14px;
  color: #111;
}

.hb-search__btn {
  border: 0;
  background: var(--en-yellow);
  color: #111;
  font-weight: 800;
  padding: 10px 18px;
  cursor: pointer;
}

.hb-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.hb-rainbow,
.hb-cats {
  display: none !important;
}

/* ---------- Main / home ---------- */
.hb-main,
.hb-home-main {
  padding: 0 0 64px;
  background: var(--en-hero-grad);
}

.en-hero-zone {
  padding: 22px 0 4px;
  background: var(--en-hero-grad);
  transition: background 0.7s ease;
}

.hb-hero {
  display: block;
  margin: 0;
}

.hb-hero__slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

/* Tüm tanıtım afişleri aynı kutuya oturur */
.hb-hero--promo .hb-hero__slider {
  cursor: default;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 420px;
  min-height: 220px;
}

.hb-slide {
  display: none;
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  color: inherit !important;
}

.hb-slide.is-active {
  display: block;
  animation: enFade 0.45s ease;
}

@keyframes enFade {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.hb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hb-slide--promo {
  cursor: default;
  pointer-events: none;
}

.hb-slide--promo img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hb-hero--promo .hb-hero__nav,
.hb-hero--promo .hb-hero__dots,
.hb-hero--promo .hb-hero__dots button {
  pointer-events: auto;
}

.hb-slide__caption,
.hb-slide__caption--promo,
.hb-slide__cta {
  display: none !important;
}

.hb-slide--empty {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  inset: 0;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a 50%, #111);
  color: #fff;
}

.hb-slide--empty strong {
  font-size: 2rem;
  color: var(--en-yellow);
  font-family: var(--en-display);
}

.hb-hero__sides {
  display: none !important;
}

.hb-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hb-hero__nav.prev { left: 14px; }
.hb-hero__nav.next { right: 14px; }

.hb-hero__dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.hb-hero__dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.hb-hero__dots button.is-active {
  background: #fff;
  width: 22px;
}

@media (max-width: 991px) {
  .hb-hero--promo .hb-hero__slider {
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  .en-hero-zone { padding: 14px 0 0; }
  .hb-hero--promo .hb-hero__slider {
    aspect-ratio: 4 / 3;
    max-height: 280px;
    min-height: 180px;
    border-radius: 14px;
  }
  .hb-hero__nav { width: 34px; height: 34px; font-size: 18px; }
}

/* Sections */
.hb-products {
  margin: 40px 0 8px;
}

.hb-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.hb-products__head--center {
  justify-content: center;
  text-align: center;
}

.hb-products__eyebrow {
  display: none;
}

.hb-products__head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
}

.hb-products__more {
  color: #888 !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hb-products__more::after {
  content: "›";
  font-size: 16px;
  line-height: 1;
}

.hb-products__more:hover {
  color: #111 !important;
}

/* Category pastel grid */
.hb-cat-grid,
.hb-cat-grid--home,
body.en-site .hb-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hb-cat-card {
  position: relative;
  display: block;
  text-decoration: none !important;
  color: #111 !important;
  border-radius: var(--en-radius);
  overflow: visible;
  aspect-ratio: 1.15 / 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hb-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.hb-cat-card__img {
  width: 100%;
  height: 100%;
  border-radius: var(--en-radius);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: var(--en-pastel-1);
}

.hb-cat-card:nth-child(8n + 1) .hb-cat-card__img { background: var(--en-pastel-1); }
.hb-cat-card:nth-child(8n + 2) .hb-cat-card__img { background: var(--en-pastel-2); }
.hb-cat-card:nth-child(8n + 3) .hb-cat-card__img { background: var(--en-pastel-3); }
.hb-cat-card:nth-child(8n + 4) .hb-cat-card__img { background: var(--en-pastel-4); }
.hb-cat-card:nth-child(8n + 5) .hb-cat-card__img { background: var(--en-pastel-5); }
.hb-cat-card:nth-child(8n + 6) .hb-cat-card__img { background: var(--en-pastel-6); }
.hb-cat-card:nth-child(8n + 7) .hb-cat-card__img { background: var(--en-pastel-7); }
.hb-cat-card:nth-child(8n + 8) .hb-cat-card__img { background: var(--en-pastel-8); }

.hb-cat-card__img::before {
  content: "";
  position: absolute;
  width: 62%;
  height: 62%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hb-cat-card__img img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  object-fit: contain;
  margin-bottom: 4%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
  transition: transform 0.3s ease;
}

.hb-cat-card:hover .hb-cat-card__img img {
  transform: scale(1.06) translateY(-4px);
}

.hb-cat-card__img span {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.28);
  margin-bottom: 18%;
}

.hb-cat-card > strong {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 7px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Product cards */
.hb-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hb-card {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit !important;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.2s ease;
}

.hb-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.hb-card__img {
  position: relative;
  background: transparent;
  aspect-ratio: 1;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.hb-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.hb-card:hover .hb-card__img img {
  transform: scale(1.04);
}

.hb-card__badges {
  position: absolute;
  left: auto;
  right: 8px;
  top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hb-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.hb-badge--green {
  background: #111;
  color: #fff;
}

.hb-badge--orange {
  background: var(--en-yellow);
  color: #111;
}

.hb-card__body {
  margin-top: 6px;
  padding: 16px 14px 14px;
  background: var(--en-card);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  min-height: 148px;
}

.hb-card__seller {
  display: none;
}

.hb-card h3 {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 2.5em;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hb-card__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}

.hb-card__old {
  color: #9ca3af;
  font-size: 0.82rem;
  text-decoration: line-through;
}

.hb-card__price {
  color: var(--en-price);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hb-card__meta {
  margin-top: auto;
  color: #888;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hb-card__meta svg {
  width: 13px;
  height: 13px;
  fill: #f5c518;
}

.hb-card__foot {
  display: none;
}

.hb-card__cta {
  display: none;
}

/* Stores + CTA */
.hb-stores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hb-store {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--en-line);
  border-radius: 16px;
  padding: 18px 12px;
  text-decoration: none !important;
  color: #111 !important;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hb-store:hover {
  border-color: #111;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.hb-store__logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--en-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--en-line);
}

.hb-store__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-store__logo span {
  color: #111;
  font-weight: 800;
  font-size: 1.3rem;
}

.hb-store strong {
  font-size: 0.92rem;
  text-align: center;
}

.hb-store small {
  color: var(--en-muted);
}

.hb-empty {
  color: var(--en-muted);
  grid-column: 1 / -1;
}

.hb-empty a {
  color: var(--en-price) !important;
}

.hb-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 26px;
  border-radius: 18px;
  margin: 28px 0 8px;
  background: #111;
  color: #fff;
}

.hb-cta-banner h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.hb-cta-banner p {
  margin: 0;
  color: #a3a3a3;
  max-width: 46ch;
}

.hb-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--en-yellow);
  color: #111 !important;
  text-decoration: none !important;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.hb-cta-banner__btn:hover {
  filter: brightness(1.05);
}

/* Hide old quick/trust on home when using EN layout */
.hb-trust,
.hb-quick {
  display: none !important;
}

/* Inner pages */
body.en-site .sp-breadcrumb,
body.en-site .bgbl {
  background: #f7f7f7 !important;
  border-bottom: 1px solid var(--en-line);
}

body.en-site .sp-breadcrumb a {
  color: #666 !important;
}

body.en-site .sp-breadcrumb,
body.en-site .sp-breadcrumb * {
  color: #111 !important;
}

body.en-site .hb-shop-title,
body.en-site .page-title,
body.en-site h1.page-title {
  color: #111 !important;
  font-weight: 800;
}

body.en-site .pr_grid_item .product-inner,
body.en-site .product-inner {
  background: var(--en-card) !important;
  border: 0 !important;
  border-radius: 14px !important;
  overflow: hidden;
  padding: 10px !important;
}

body.en-site .product-title a,
body.en-site .product-info a {
  color: #111 !important;
}

body.en-site .price,
body.en-site .cart_price {
  color: var(--en-price) !important;
  font-weight: 800;
}

body.en-site .product_title,
body.en-site .entry-title {
  color: #111 !important;
}

body.en-site .btn-atc .single_add_to_cart_button,
body.en-site button[name="add"],
body.en-site .js_addtc {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
}

body.en-site .customer_login,
body.en-site .login-form,
body.en-site .form-row input,
body.en-site input[type="email"],
body.en-site input[type="password"],
body.en-site input[type="text"],
body.en-site textarea,
body.en-site select {
  background: #fff !important;
  border: 1px solid #ddd !important;
  color: #111 !important;
  border-radius: 10px !important;
}

body.en-site label {
  color: #333 !important;
}

/* Footer */
/* Footer — light / white */
body.en-site #nt_footer,
body.en-site .footer__top_wrap,
body.en-site .footer-1,
body.en-site #kalles-section-footer_bot,
body.en-site .footer__bot,
body.en-site .footer__bot_wrap {
  background: #f7f7f7 !important;
  border-top: 1px solid #e8e8e8;
  color: #444 !important;
}

body.en-site #nt_footer a,
body.en-site #nt_footer p,
body.en-site #nt_footer .widget-title,
body.en-site #nt_footer span,
body.en-site .footer__bot a,
body.en-site #footer-menu a {
  color: #555 !important;
}

body.en-site #nt_footer a:hover,
body.en-site .footer__bot a:hover {
  color: #111 !important;
}

body.en-site #nt_footer .footer-brand-logo {
  filter: none;
  max-width: 160px;
}

body.en-site #nt_footer .txt_title,
body.en-site #nt_footer .widget-title {
  color: #111 !important;
  font-weight: 800;
}

/* Reviews */
.en-reviews { margin: 48px 0 20px; }
.en-reviews__nav { display: flex; gap: 8px; }
.en-reviews__nav button {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid #ddd; background: #fff; font-size: 20px; cursor: pointer;
}
.en-reviews__track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; -webkit-overflow-scrolling: touch;
}
.en-reviews__track::-webkit-scrollbar { height: 6px; }
.en-review {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
  background: #f3f3f3;
  border-radius: 14px;
  padding: 18px;
}
.en-review__top { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.en-review__avatar {
  width: 42px; height: 42px; border-radius: 999px; background: #111; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.en-review__stars { color: #f5c518; font-size: 12px; letter-spacing: 1px; }
.en-review h3 { margin: 0 0 6px; font-size: .95rem; font-weight: 800; color: #111; }
.en-review p { margin: 0; color: #555; font-size: .88rem; line-height: 1.5; }
.en-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid #e8e8e8; text-align: center;
}
.en-stats strong { display: block; font-size: 1.6rem; font-weight: 800; color: #222; }
.en-stats span { color: #666; font-size: .9rem; }

/* Marquee */
.en-marquee {
  overflow: hidden; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
  background: #fff; padding: 18px 0; margin: 28px 0 10px;
}
.en-marquee__inner {
  display: flex; gap: 18px; white-space: nowrap; width: max-content;
  animation: enMarquee 28s linear infinite;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  font-weight: 800; letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1.5px #c9c9c9;
  text-transform: uppercase;
}
.en-marquee__inner .sep { -webkit-text-stroke: 1px #d6d6d6; }
@keyframes enMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FAQ */
.en-faq { padding: 36px 0 48px; }
.en-faq__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: start;
}
.en-faq__left h2 { margin: 0 0 8px; font-size: 1.6rem; font-weight: 800; color: #111; }
.en-faq__left p { margin: 0; color: #777; }
.en-faq__list { background: #f3f3f3; border-radius: 16px; padding: 6px 18px; }
.en-faq__item { border-bottom: 1px solid #e0e0e0; padding: 4px 0; }
.en-faq__item:last-child { border-bottom: 0; }
.en-faq__item summary {
  list-style: none; cursor: pointer; font-weight: 700; color: #111;
  padding: 14px 36px 14px 0; position: relative;
}
.en-faq__item summary::-webkit-details-marker { display: none; }
.en-faq__item summary::after {
  content: "▾"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 999px; background: #e5e5e5;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.en-faq__item[open] summary::after { content: "▴"; }
.en-faq__item p { margin: 0 0 14px; color: #555; line-height: 1.55; font-size: .92rem; }

@media (max-width: 991px) {
  .en-faq__grid { grid-template-columns: 1fr; }
  .en-stats { grid-template-columns: 1fr; gap: 14px; }
}

/* WhatsApp float */
.en-wa {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none !important;
  transition: transform 0.2s ease;
}

.en-wa:hover {
  transform: scale(1.06);
  color: #fff !important;
}

.en-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Welcome popup light polish */
body.en-site .nuve-welcome-popup__card {
  background: #fff;
  color: #111;
}

body.en-site .nuve-welcome-popup__badge {
  background: var(--en-yellow);
  color: #111;
}

body.en-site .nuve-welcome-popup__btn {
  background: #111;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .hb-mainbar__inner {
    grid-template-columns: 1fr auto;
  }

  .hb-nav-wrap {
    display: none;
    grid-column: 1 / -1;
    background: #111;
    padding: 8px 0 12px;
  }

  .hb-nav-wrap.is-open {
    display: flex;
  }

  .hb-cats-row {
    justify-content: flex-start;
  }

  .hb-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hb-cat-grid,
  .hb-cat-grid--home,
  body.en-site .hb-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hb-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hb-stores {
    grid-template-columns: repeat(2, 1fr);
  }

  .hb-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hb-topbar__inner {
    gap: 10px 16px;
    font-size: 10.5px;
  }

  .hb-logo__mark {
    font-size: 1.55rem;
  }

  .hb-logo__sub {
    font-size: 1.05rem;
  }

  .hb-products__grid {
    gap: 12px;
  }

  .hb-card__body {
    padding: 12px 10px;
    min-height: 132px;
  }

  .hb-card__price {
    font-size: 1.05rem;
  }
}

/* Welcome popup */
.nuve-welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.nuve-welcome-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nuve-welcome-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.nuve-welcome-popup__card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.nuve-welcome-popup__badge {
  display: inline-block;
  background: var(--en-yellow);
  color: #111;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.nuve-welcome-popup__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111 !important;
  line-height: 1.3;
}
.nuve-welcome-popup__text {
  margin: 0 0 18px;
  color: #666 !important;
}
.nuve-welcome-popup__btn {
  border: 0;
  background: #111;
  color: #fff !important;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  width: 100%;
}
body.nuve-popup-lock { overflow: hidden; }

/* Shop title */
.hb-shop-title {
  margin: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
}

/* Visual category tiles (EN style) */
.hb-cat-grid--visual {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hb-cat-card--visual {
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  background: #fff;
}
.hb-cat-card--visual .hb-cat-card__img {
  aspect-ratio: 4 / 3;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background: #eee;
}
.hb-cat-card--visual .hb-cat-card__img::before { display: none; }
.hb-cat-card--visual .hb-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  filter: none;
}
.hb-cat-card--visual .hb-cat-card__name,
.hb-cat-card--visual > strong {
  position: static;
  display: block;
  text-align: center;
  background: #fff;
  box-shadow: none;
  border-radius: 0;
  padding: 12px 10px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
}
@media (max-width: 991px) {
  .hb-cat-grid--visual { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Product detail (EN PDP) */
.en-pdp { background: #fff; padding-bottom: 48px; }
.en-pdp__wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  padding: 28px 0 18px;
  align-items: start;
}
.en-pdp__gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
}
.en-pdp__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.en-pdp__thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  width: 72px;
  height: 72px;
}
.en-pdp__thumb.is-active { border-color: #111; }
.en-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.en-pdp__main {
  background: #f7f7f7;
  border-radius: 18px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.en-pdp__main img { max-width: 100%; max-height: 520px; object-fit: contain; }
.en-pdp__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.en-pdp__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 13px;
  margin-bottom: 14px;
}
.en-pdp__stars { color: #f5c518; letter-spacing: 1px; }
.en-pdp__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.en-pdp__price {
  color: #e10600;
  font-size: 1.65rem;
  font-weight: 800;
}
.en-pdp__old {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 1rem;
}
.en-pdp__meta { color: #666; font-size: 13px; margin: 0 0 16px; }
.en-pdp__meta a { color: #111 !important; font-weight: 700; text-decoration: none !important; }
.en-pdp__features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.en-pdp__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.en-pdp__buy { margin-top: 8px; }
.en-pdp__opts h4 { margin: 0 0 8px; font-size: 14px; }
.en-pdp__swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.en-pdp__swatch {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.en-pdp__swatch.is-active { border-color: #111; background: #111; color: #fff; }
.en-pdp__qty-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: #fafafa;
}
.en-pdp__qty-box input {
  width: 72px !important;
  text-align: center;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #111 !important;
  padding: 8px !important;
}
.en-pdp__cta {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #ff6a00;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 18px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.28);
}
.en-pdp__cta:hover { filter: brightness(1.05); }
.en-pdp__oos {
  background: #fff1f1;
  color: #b91c1c;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
}
.en-pdp__desc { padding: 28px 0; }
.en-pdp__desc h2 { font-size: 1.25rem; font-weight: 800; margin: 0 0 12px; }
.en-pdp__desc-body { color: #444; line-height: 1.7; }
.en-pdp__related { padding-bottom: 24px; }
@media (max-width: 991px) {
  .en-pdp__wrap { grid-template-columns: 1fr; gap: 20px; }
  .en-pdp__gallery { grid-template-columns: 1fr; }
  .en-pdp__thumbs { flex-direction: row; overflow-x: auto; }
}

/* Cart success popup — green animated check (hidden until open) */
body.nuve-popup-lock { overflow: hidden !important; }
.nuve-cart-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.nuve-cart-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nuve-cart-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}
.nuve-cart-popup__card {
  position: relative;
  width: min(380px, 100%);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 22px;
  padding: 32px 24px 22px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  transform: translateY(18px) scale(.92);
  opacity: 0;
}
.nuve-cart-popup.is-open .nuve-cart-popup__card {
  animation: nuvePopIn .55s cubic-bezier(.2,1.2,.3,1) forwards;
}
@keyframes nuvePopIn {
  0% { transform: translateY(24px) scale(.86); opacity: 0; }
  60% { transform: translateY(-4px) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.nuve-cart-popup__icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
}
.nuve-cart-popup__rings { position: absolute; inset: 0; }
.nuve-cart-popup__rings i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,.45);
  opacity: 0;
}
.nuve-cart-popup.is-open .nuve-cart-popup__rings i:nth-child(1) { animation: nuveRing 1.4s ease-out .15s infinite; }
.nuve-cart-popup.is-open .nuve-cart-popup__rings i:nth-child(2) { animation: nuveRing 1.4s ease-out .45s infinite; }
.nuve-cart-popup.is-open .nuve-cart-popup__rings i:nth-child(3) { animation: nuveRing 1.4s ease-out .75s infinite; }
@keyframes nuveRing {
  0% { transform: scale(.55); opacity: .7; }
  100% { transform: scale(1.45); opacity: 0; }
}
.nuve-cart-popup__check {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4ade80, #16a34a 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
  transform: scale(0);
}
.nuve-cart-popup.is-open .nuve-cart-popup__check {
  animation: nuveCheckPop .5s cubic-bezier(.2,1.4,.3,1) .12s forwards;
}
@keyframes nuveCheckPop {
  0% { transform: scale(0) rotate(-20deg); }
  70% { transform: scale(1.12) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
.nuve-cart-popup__check svg circle { stroke: rgba(255,255,255,.25); stroke-width: 2; }
.nuve-cart-popup__check svg path {
  stroke: #052e16;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.nuve-cart-popup.is-open .nuve-cart-popup__check svg path {
  animation: nuveDraw .45s ease .35s forwards;
}
@keyframes nuveDraw { to { stroke-dashoffset: 0; } }
.nuve-cart-popup__burst span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0;
  left: 50%;
  top: 50%;
}
.nuve-cart-popup.is-open .nuve-cart-popup__burst span {
  animation: nuveBurst .9s ease-out forwards;
}
.nuve-cart-popup.is-open .nuve-cart-popup__burst span:nth-child(1) { --dx: -42px; --dy: -28px; animation-delay: .1s; }
.nuve-cart-popup.is-open .nuve-cart-popup__burst span:nth-child(2) { --dx: 38px; --dy: -30px; animation-delay: .14s; background:#86efac; }
.nuve-cart-popup.is-open .nuve-cart-popup__burst span:nth-child(3) { --dx: -48px; --dy: 18px; animation-delay: .18s; background:#4ade80; }
.nuve-cart-popup.is-open .nuve-cart-popup__burst span:nth-child(4) { --dx: 46px; --dy: 16px; animation-delay: .2s; }
.nuve-cart-popup.is-open .nuve-cart-popup__burst span:nth-child(5) { --dx: 0; --dy: -48px; animation-delay: .12s; background:#bbf7d0; }
.nuve-cart-popup.is-open .nuve-cart-popup__burst span:nth-child(6) { --dx: 8px; --dy: 44px; animation-delay: .22s; }
@keyframes nuveBurst {
  0% { transform: translate(-50%,-50%) scale(.4); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1); opacity: 0; }
}
.nuve-cart-popup__title {
  margin: 0 0 6px;
  color: #111 !important;
  font-size: 1.25rem;
  font-weight: 800;
}
.nuve-cart-popup__sub {
  margin: 0 0 18px;
  color: #666 !important;
  font-size: .95rem;
}
.nuve-cart-popup__actions {
  display: grid;
  gap: 8px;
}
.nuve-cart-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
}
.nuve-cart-popup__btn.primary {
  background: #16a34a;
  color: #fff !important;
}
.nuve-cart-popup__btn.ghost {
  background: #f3f4f6;
  color: #111 !important;
}

/* Hide mobile toolbar leftovers that leak text under footer */
#kalles-section-toolbar_mobile,
.kalles_toolbar {
  display: none !important;
}

/* ========== Inner pages (EN consistency) ========== */
.en-inner-page, .hb-shop-page, .nuve-cart-page, .nuve-account-page { background: #fff; }
.en-page-sub { margin: 6px 0 0; color: #777; font-size: .92rem; }

.en-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 28px 0 56px;
  align-items: start;
}
.en-shop-side {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 18px 16px;
}
.en-shop-side h3 {
  margin: 0 0 10px;
  font-size: .95rem;
  font-weight: 800;
  color: #111;
}
.en-shop-side h3 + .en-price-chips,
.en-shop-side .en-side-list + h3 { margin-top: 18px; }
.en-side-list { list-style: none; margin: 0; padding: 0; }
.en-side-list a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #444 !important;
  text-decoration: none !important;
  font-size: .9rem;
  font-weight: 600;
}
.en-side-list a:hover,
.en-side-list a.is-active {
  background: #111;
  color: #fff !important;
}
.en-price-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.price-chip {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 700;
}
.price-chip.is-active,
.price-chip:hover {
  background: var(--en-yellow);
  border-color: var(--en-yellow);
  color: #111 !important;
}

.en-empty-box {
  text-align: center;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 40px 20px;
}
.en-empty-box h3 { margin: 0 0 8px; font-weight: 800; color: #111; }
.en-empty-box p { margin: 0 0 16px; color: #666; }
.en-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 18px;
}
.en-btn:hover { filter: brightness(1.08); color: #fff !important; }

.en-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.en-pagination a {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111 !important;
  text-decoration: none !important;
  font-weight: 700;
  background: #fff;
}
.en-pagination a.is-active,
.en-pagination a:hover {
  background: #111;
  border-color: #111;
  color: #fff !important;
}

/* Cart */
body.en-site .nuve-cart-page,
body.en-site .cart_page_section { background: transparent !important; color: #111 !important; }
body.en-site .nuve-cart-wrap {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
body.en-site .nuve-cart-head h1 { margin: 0 0 4px; font-size: 1.5rem; font-weight: 800; color: #111 !important; }
body.en-site .nuve-cart-head p { margin: 0 0 18px; color: #777 !important; }
body.en-site .nuve-cart-row {
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px 12px;
  margin-bottom: 12px;
}
body.en-site .nuve-cart-thumb {
  width: 72px !important;
  height: 72px !important;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
}
body.en-site .cart_price,
body.en-site .cart_tot_price,
body.en-site .mini_cart_title a { color: #111 !important; font-weight: 700; }
body.en-site .nuve-btn-checkout,
body.en-site a.nuve-btn-checkout,
body.en-site .btn-dark {
  background: #ff6a00 !important;
  border-color: #ff6a00 !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}
body.en-site .nuve-btn-ghost,
body.en-site .btn-outline-dark {
  background: #f3f3f3 !important;
  border: 1px solid #ddd !important;
  color: #111 !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

/* Account */
body.en-site .nuve-account-page { color: #111 !important; }
body.en-site .nuve-account-nav a,
body.en-site .nuve-panel-card,
body.en-site .nuve-stat-grid > div {
  background: #f7f7f7 !important;
  border: 1px solid #eee !important;
  border-radius: 14px !important;
  color: #111 !important;
}
body.en-site .nuve-account-nav a.is-active,
body.en-site .nuve-account-nav a:hover {
  background: #111 !important;
  color: #fff !important;
}
body.en-site .nuve-panel-card h2,
body.en-site .nuve-panel-card h3,
body.en-site .page-title { color: #111 !important; }

/* Checkout / forms */
body.en-site .checkout-section,
body.en-site .frm_cart_page,
body.en-site .order-review__wrapper,
body.en-site .kalles-wrap-form,
body.en-site .login-form,
body.en-site .customer_login {
  background: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 16px !important;
  padding: 20px !important;
  color: #111 !important;
}
body.en-site .checkout-section__title,
body.en-site .order-review__title { color: #111 !important; font-weight: 800; }
body.en-site .btn,
body.en-site button[type="submit"],
body.en-site .button {
  border-radius: 999px !important;
}
body.en-site .button,
body.en-site .btn-primary,
body.en-site input[type="submit"] {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
  font-weight: 800 !important;
}

/* Payment */
.en-pay-wrap { padding: 28px 12px 48px; max-width: 920px; }
.en-pay-card {
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
}
.en-pay-card h1 { margin: 0 0 6px; font-size: 1.25rem; font-weight: 800; color: #111; }
.en-pay-card p { margin: 0; color: #666; font-size: .92rem; }
.en-pay-amount { color: #e10600; }
.en-pay-frame {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  padding: 8px;
}

/* CMS / contact / about */
body.en-site .kalles-section-article-template,
body.en-site .kalles-section.type_isotope,
body.en-site .type_article {
  background: #fff !important;
  color: #333 !important;
}
body.en-site .kalles-section-article-template h1,
body.en-site .kalles-section-article-template h2,
body.en-site .entry-title {
  color: #111 !important;
  font-weight: 800;
}
body.en-site .alert,
body.en-site .alert-bg,
body.en-site .alert-primary,
body.en-site .alert-success {
  background: #f5f5f5 !important;
  border: 1px solid #eee !important;
  color: #333 !important;
  border-radius: 14px !important;
}

/* Hide leftover dark filter chrome */
body.en-site .cat_toolbar,
body.en-site .filter_area,
body.en-site #kalles-section-nt_filter,
body.en-site .bgb { display: none !important; }

@media (max-width: 991px) {
  .en-shop-layout { grid-template-columns: 1fr; }
}
