/* ============================================================
   LX LAYOUT — Header, Footer, Menu, PageHolder, Notification,
   CookieConsent, OtherServices, CartSidebar, PageLoader
   Sayfaya özel olmayan, layout-bazlı bileşenler.
   ============================================================ */

/* ============================================================
   HEADER
   ============================================================ */
.lx-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--lx-z-header);
  transition: background var(--lx-transition-base),
              backdrop-filter var(--lx-transition-base),
              box-shadow var(--lx-transition-base),
              padding var(--lx-transition-base);
  padding-block: var(--lx-space-4);
}

.lx-header--fixed {
  position: fixed;
  background: rgba(5, 11, 26, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow:
    0 4px 30px rgba(2, 6, 15, 0.45),
    inset 0 -1px 0 var(--lx-border-base);
  padding-block: var(--lx-space-3);
}

.lx-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lx-space-4);
}

.lx-nav__brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.lx-nav__logo {
  height: 84px;
  width: auto;
  display: block;
  transition: height var(--lx-transition-base);
}

.lx-header--fixed .lx-nav__logo { height: 62px; }

@media (max-width: 768px) {
  .lx-nav__logo { height: 58px; }
  .lx-header--fixed .lx-nav__logo { height: 50px; }
}

/* Desktop menu */
.lx-nav__menu {
  display: none;
  align-items: center;
  gap: var(--lx-space-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .lx-nav__menu { display: flex; }
}

.lx-nav__item {
  position: relative;
}

.lx-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: var(--lx-space-2) var(--lx-space-3);
  font-family: var(--lx-font-body);
  font-size: var(--lx-text-sm);
  font-weight: var(--lx-font-weight-medium);
  letter-spacing: var(--lx-tracking-wide);
  color: var(--lx-color-primary-200);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--lx-transition-fast);
  border-radius: var(--lx-radius-md);
}

.lx-nav__link::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--lx-color-primary-400),
    var(--lx-color-glow));
  border-radius: var(--lx-radius-full);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--lx-transition-base);
  box-shadow: 0 0 12px rgba(80, 227, 255, 0.5);
}

.lx-nav__link:hover,
.lx-nav__link[aria-current='page'] {
  color: #fff;
}

.lx-nav__link:hover::after,
.lx-nav__link[aria-current='page']::after {
  transform: scaleX(1);
}

/* Header divider + admin button */
.lx-nav__divider {
  width: 1px;
  height: 24px;
  background: var(--lx-border-base);
  margin-inline: var(--lx-space-3);
}

/* Hamburger (mobile) */
.lx-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--lx-border-base);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--lx-radius-md);
  cursor: pointer;
  position: relative;
}

@media (min-width: 1024px) {
  .lx-hamburger { display: none; }
}

.lx-hamburger__inner {
  position: relative;
  width: 20px;
  height: 14px;
}

.lx-hamburger__inner span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--lx-transition-base),
              opacity var(--lx-transition-fast),
              top var(--lx-transition-base);
}

.lx-hamburger__inner span:nth-child(1) { top: 0; }
.lx-hamburger__inner span:nth-child(2) { top: 6px; }
.lx-hamburger__inner span:nth-child(3) { top: 12px; }

.lx-hamburger.lx-active .lx-hamburger__inner span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.lx-hamburger.lx-active .lx-hamburger__inner span:nth-child(2) { opacity: 0; }
.lx-hamburger.lx-active .lx-hamburger__inner span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile menu (slide-down panel) */
.lx-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: var(--lx-space-2);
  background: rgba(5, 11, 26, 0.95);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--lx-border-base);
  border-radius: var(--lx-radius-xl);
  padding: var(--lx-space-4);
  box-shadow: var(--lx-shadow-xl);
  animation: lx-fade-down 280ms var(--lx-ease-out);
}

.lx-mobile-menu.lx-active { display: block; }

@media (min-width: 1024px) {
  .lx-mobile-menu { display: none !important; }
}

.lx-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--lx-space-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.lx-mobile-menu__link {
  display: block;
  padding: var(--lx-space-3) var(--lx-space-4);
  color: var(--lx-text-primary);
  font-weight: var(--lx-font-weight-medium);
  border-radius: var(--lx-radius-md);
  transition: background var(--lx-transition-fast),
              padding var(--lx-transition-base),
              color var(--lx-transition-fast);
  text-decoration: none;
}

.lx-mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-inline-start: var(--lx-space-6);
  color: var(--lx-color-glow-soft);
}

body.lx-menu-open { overflow: hidden; }

/* ============================================================
   PAGE HOLDER (breadcrumb hero on inner pages)
   ============================================================ */
.lx-page-holder {
  position: relative;
  padding-top: 170px;
  padding-bottom: var(--lx-space-12);
  margin-bottom: var(--lx-space-12);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,
      rgba(80, 227, 255, 0.10) 0%,
      transparent 60%),
    linear-gradient(135deg,
      var(--lx-color-primary-950) 0%,
      var(--lx-color-primary-800) 100%);
  overflow: hidden;
  isolation: isolate;
}

.lx-page-holder::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.6;
}

.lx-page-holder__title {
  font-size: var(--lx-text-h2);
  font-weight: var(--lx-font-weight-bold);
  color: #fff;
  margin-bottom: var(--lx-space-4);
  text-shadow: 0 2px 30px rgba(80, 227, 255, 0.25);
  line-height: var(--lx-leading-tight);
  letter-spacing: var(--lx-tracking-tight);
}

.lx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lx-space-2);
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--lx-text-sm);
}

.lx-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  color: var(--lx-color-primary-200);
}

.lx-breadcrumb__item + .lx-breadcrumb__item::before {
  content: '/';
  margin-inline: var(--lx-space-2);
  color: rgba(176, 208, 255, 0.5);
}

.lx-breadcrumb__item a {
  color: var(--lx-color-primary-200);
  text-decoration: none;
  transition: color var(--lx-transition-fast);
}

.lx-breadcrumb__item a:hover { color: #fff; }

.lx-breadcrumb__item--active {
  color: var(--lx-color-glow-soft);
  font-weight: var(--lx-font-weight-medium);
}

@media (max-width: 768px) {
  .lx-page-holder { padding-top: 140px; padding-bottom: var(--lx-space-8); }
}

/* ============================================================
   NOTIFICATION TOAST
   ============================================================ */
.lx-toast-stack {
  position: fixed;
  top: var(--lx-space-5);
  right: var(--lx-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--lx-space-3);
  z-index: var(--lx-z-toast);
  max-width: min(420px, calc(100vw - 2 * var(--lx-space-5)));
}

.lx-toast {
  display: flex;
  align-items: flex-start;
  gap: var(--lx-space-3);
  padding: var(--lx-space-4) var(--lx-space-5);
  border-radius: var(--lx-radius-lg);
  background: var(--lx-surface-raised);
  border: 1px solid var(--lx-border-base);
  border-left: 4px solid var(--lx-color-primary-500);
  box-shadow: var(--lx-shadow-xl);
  color: var(--lx-text-primary);
  font-size: var(--lx-text-sm);
  line-height: var(--lx-leading-snug);
  animation: lx-toast-in 320ms var(--lx-ease-spring);
  position: relative;
}

@keyframes lx-toast-in {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.lx-toast__text { flex: 1; padding-top: 2px; }

.lx-toast__close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--lx-text-tertiary);
  cursor: pointer;
  padding: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--lx-radius-sm);
  transition: color var(--lx-transition-fast),
              background var(--lx-transition-fast);
}

.lx-toast__close:hover {
  color: var(--lx-text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.lx-toast--success { border-left-color: var(--lx-color-success); }
.lx-toast--success .lx-toast__icon { color: var(--lx-color-success); }
.lx-toast--danger  { border-left-color: var(--lx-color-danger); }
.lx-toast--danger  .lx-toast__icon { color: var(--lx-color-danger); }
.lx-toast--warn    { border-left-color: var(--lx-color-warn); }
.lx-toast--warn    .lx-toast__icon { color: var(--lx-color-warn); }
.lx-toast--info    { border-left-color: var(--lx-color-glow); }
.lx-toast--info    .lx-toast__icon { color: var(--lx-color-glow); }
.lx-toast--details { border-left-color: #a855f7; }
.lx-toast--details .lx-toast__icon { color: #a855f7; }

.lx-toast.lx-out {
  animation: lx-toast-out 280ms var(--lx-ease-out) forwards;
}

@keyframes lx-toast-out {
  to { opacity: 0; transform: translateX(40px) scale(0.95); }
}

@media (max-width: 640px) {
  .lx-toast-stack {
    top: auto;
    bottom: var(--lx-space-4);
    left: var(--lx-space-4);
    right: var(--lx-space-4);
    max-width: none;
  }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.lx-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--lx-z-modal);
  background: rgba(5, 11, 26, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--lx-border-glow);
  box-shadow: 0 -20px 60px rgba(2, 6, 15, 0.5);
  display: none;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 400ms var(--lx-ease-out),
              opacity 400ms var(--lx-ease-out);
}

.lx-cookie__inner {
  display: flex;
  flex-direction: column;
  gap: var(--lx-space-4);
  padding-block: var(--lx-space-5);
}

@media (min-width: 768px) {
  .lx-cookie__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--lx-space-6);
  }
}

.lx-cookie__text {
  font-size: var(--lx-text-sm);
  color: var(--lx-text-secondary);
  line-height: var(--lx-leading-relaxed);
  flex: 1;
}

.lx-cookie__details {
  display: none;
  margin-top: var(--lx-space-3);
  font-size: var(--lx-text-xs);
  color: var(--lx-text-tertiary);
  line-height: var(--lx-leading-relaxed);
}

.lx-cookie__details.lx-active { display: block; }

.lx-cookie__details ul {
  list-style: disc;
  padding-left: var(--lx-space-5);
  margin: var(--lx-space-2) 0;
  display: flex;
  flex-direction: column;
  gap: var(--lx-space-1);
}

.lx-cookie__actions {
  flex-shrink: 0;
  display: flex;
  gap: var(--lx-space-3);
}

/* ============================================================
   OTHER SERVICES (sidebar widget)
   ============================================================ */
.lx-other-services {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--lx-border-base);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--lx-radius-2xl);
  padding: var(--lx-space-8);
}

.lx-other-services__title {
  font-size: var(--lx-text-xl);
  font-weight: var(--lx-font-weight-bold);
  margin-bottom: var(--lx-space-6);
  color: var(--lx-text-primary);
}

.lx-other-services__list {
  display: flex;
  flex-direction: column;
  gap: var(--lx-space-2);
  list-style: none;
  padding: 0;
}

.lx-other-services__link {
  display: flex;
  align-items: center;
  gap: var(--lx-space-3);
  padding: var(--lx-space-3) var(--lx-space-4);
  border-radius: var(--lx-radius-lg);
  text-decoration: none;
  color: var(--lx-text-secondary);
  transition: background var(--lx-transition-fast),
              color var(--lx-transition-fast),
              transform var(--lx-transition-base);
}

.lx-other-services__link:hover {
  background: rgba(59, 130, 246, 0.08);
  color: var(--lx-text-primary);
  transform: translateX(4px);
}

.lx-other-services__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--lx-radius-md);
  background: rgba(59, 130, 246, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lx-color-primary-300);
  transition: background var(--lx-transition-base),
              color var(--lx-transition-base);
}

.lx-other-services__link:hover .lx-other-services__icon {
  background: rgba(59, 130, 246, 0.18);
  color: var(--lx-color-glow);
}

.lx-other-services__name {
  font-size: var(--lx-text-sm);
  font-weight: var(--lx-font-weight-semibold);
  line-height: 1.2;
  margin-bottom: 2px;
}

.lx-other-services__sub {
  font-size: var(--lx-text-xs);
  color: var(--lx-text-muted);
  line-height: 1.2;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lx-footer {
  background: var(--lx-color-primary-800);
  color: #fff;
  padding-top: var(--lx-space-16);
  position: relative;
  overflow: hidden;
}

.lx-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 0%, rgba(80, 227, 255, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 40% at 70% 100%, rgba(15, 33, 103, 0.4), transparent 70%);
  pointer-events: none;
}

.lx-footer__inner {
  position: relative;
  max-width: var(--lx-container-2xl);
  margin: 0 auto;
  padding-inline: var(--lx-container-padding-x);
}

.lx-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--lx-space-8);
  margin-bottom: var(--lx-space-12);
}

.lx-footer__section { padding: var(--lx-space-2); }

.lx-footer__brand {
  grid-column: span 1;
}

.lx-footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--lx-space-4);
  display: block;
}

.lx-footer__about {
  font-size: var(--lx-text-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lx-leading-relaxed);
  margin-bottom: var(--lx-space-5);
  max-width: 36ch;
}

.lx-footer__title {
  font-family: var(--lx-font-display);
  font-size: var(--lx-text-md);
  font-weight: var(--lx-font-weight-bold);
  margin-bottom: var(--lx-space-5);
  color: #fff;
  position: relative;
  padding-bottom: var(--lx-space-2);
  letter-spacing: var(--lx-tracking-tight);
}

.lx-footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--lx-color-glow), transparent);
  border-radius: var(--lx-radius-full);
  box-shadow: 0 0 12px rgba(80, 227, 255, 0.5);
}

.lx-footer__links,
.lx-footer__contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--lx-space-2);
}

.lx-footer__links a,
.lx-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: var(--lx-space-2);
  font-size: var(--lx-text-sm);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--lx-transition-fast),
              transform var(--lx-transition-base);
}

.lx-footer__links a:hover,
.lx-footer__contact a:hover {
  color: var(--lx-color-glow-soft);
  transform: translateX(4px);
}

/* Social */
.lx-footer__social {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--lx-space-2);
}

.lx-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--lx-radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background var(--lx-transition-base),
              transform var(--lx-transition-spring),
              box-shadow var(--lx-transition-base);
}

.lx-footer__social a:hover {
  background: var(--lx-color-glow);
  color: var(--lx-surface-abyss);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(80, 227, 255, 0.45);
}

/* Footer bottom */
.lx-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-block: var(--lx-space-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--lx-space-4);
}

.lx-footer__copyright {
  font-size: var(--lx-text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.lx-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lx-space-5);
}

.lx-footer__legal a {
  font-size: var(--lx-text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--lx-transition-fast);
}

.lx-footer__legal a:hover { color: #fff; }

@media (max-width: 768px) {
  .lx-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .lx-footer__legal { justify-content: center; }
}

/* ============================================================
   CART (button + sidebar)
   ============================================================ */
.lx-cart-button {
  position: fixed;
  bottom: var(--lx-space-6);
  left: var(--lx-space-6);
  width: 56px;
  height: 56px;
  border-radius: var(--lx-radius-full);
  background: linear-gradient(135deg,
    var(--lx-color-primary-700),
    var(--lx-color-primary-500));
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 25px rgba(37, 99, 235, 0.4),
    0 0 30px rgba(80, 227, 255, 0.2);
  z-index: var(--lx-z-overlay);
  transition: transform var(--lx-transition-spring),
              box-shadow var(--lx-transition-base);
}

.lx-cart-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 12px 35px rgba(37, 99, 235, 0.55),
    0 0 50px rgba(80, 227, 255, 0.35);
}

.lx-cart-button__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: var(--lx-radius-full);
  background: var(--lx-color-glow);
  color: var(--lx-surface-abyss);
  font-size: var(--lx-text-xs);
  font-weight: var(--lx-font-weight-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--lx-color-glow);
}

.lx-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 15, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: var(--lx-z-modal);
  display: none;
  animation: lx-fade-in 220ms var(--lx-ease-out);
}
.lx-cart-overlay.lx-active { display: block; }

.lx-cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--lx-surface-elevated);
  border-left: 1px solid var(--lx-border-base);
  box-shadow: -20px 0 60px rgba(2, 6, 15, 0.6);
  z-index: calc(var(--lx-z-modal) + 1);
  transform: translateX(100%);
  transition: transform 400ms var(--lx-ease-out);
  display: flex;
  flex-direction: column;
}

.lx-cart-sidebar.lx-active { transform: translateX(0); }

.lx-cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--lx-space-6);
  border-bottom: 1px solid var(--lx-border-base);
}

.lx-cart-sidebar__title {
  font-size: var(--lx-text-xl);
  font-weight: var(--lx-font-weight-bold);
}

.lx-cart-sidebar__close {
  background: transparent;
  border: none;
  color: var(--lx-text-tertiary);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: var(--lx-radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--lx-transition-fast),
              background var(--lx-transition-fast);
}

.lx-cart-sidebar__close:hover {
  color: var(--lx-text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.lx-cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--lx-space-6);
}

.lx-cart-sidebar__footer {
  border-top: 1px solid var(--lx-border-base);
  padding: var(--lx-space-6);
}

.lx-cart-sidebar__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--lx-space-4);
}

.lx-cart-sidebar__total-label {
  font-size: var(--lx-text-md);
  font-weight: var(--lx-font-weight-medium);
  color: var(--lx-text-secondary);
}

.lx-cart-sidebar__total-value {
  font-family: var(--lx-font-display);
  font-size: var(--lx-text-2xl);
  font-weight: var(--lx-font-weight-bold);
  color: var(--lx-color-glow);
}

/* Cart items (cart.js render eder) */
.lx-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: var(--lx-space-3);
  padding-block: var(--lx-space-4);
  border-bottom: 1px solid var(--lx-border-subtle);
}
.lx-cart-item:last-child { border-bottom: none; }

.lx-cart-item__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--lx-radius-md);
  background: var(--lx-surface-deep);
  border: 1px solid var(--lx-border-subtle);
}

.lx-cart-item__info { min-width: 0; }

.lx-cart-item__name {
  font-size: var(--lx-text-sm);
  font-weight: var(--lx-font-weight-semibold);
  color: var(--lx-text-primary);
  margin: 0 0 var(--lx-space-1) 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.lx-cart-item__price {
  font-size: var(--lx-text-sm);
  color: var(--lx-text-tertiary);
  margin: 0;
}

.lx-cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: var(--lx-space-1);
  border: 1px solid var(--lx-border-base);
  border-radius: var(--lx-radius-md);
  background: var(--lx-surface-deep);
}

.lx-cart-item__qty-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: var(--lx-text-secondary);
  font-size: var(--lx-text-md);
  font-weight: var(--lx-font-weight-bold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--lx-transition-fast), background var(--lx-transition-fast);
}
.lx-cart-item__qty-btn:hover {
  color: var(--lx-text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.lx-cart-item__qty-value {
  min-width: 22px;
  text-align: center;
  font-size: var(--lx-text-sm);
  font-weight: var(--lx-font-weight-medium);
  color: var(--lx-text-primary);
}

.lx-cart-item__remove {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--lx-radius-md);
  color: var(--lx-text-tertiary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--lx-transition-fast),
              background var(--lx-transition-fast),
              border-color var(--lx-transition-fast);
}
.lx-cart-item__remove:hover {
  color: var(--lx-color-danger);
  background: rgba(244, 63, 94, 0.08);
  border-color: rgba(244, 63, 94, 0.30);
}

.lx-cart-item__empty {
  text-align: center;
  color: var(--lx-text-tertiary);
  padding-block: var(--lx-space-12);
  font-size: var(--lx-text-sm);
}

@media (max-width: 768px) {
  .lx-cart-button { width: 48px; height: 48px; bottom: var(--lx-space-4); left: var(--lx-space-4); }
}

/* ============================================================
   PAGE LOADER (NoIndexLayout için, opsiyonel)
   ============================================================ */
.lx-page-loader {
  position: fixed;
  inset: 0;
  background: var(--lx-surface-base);
  z-index: var(--lx-z-tooltip);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 500ms var(--lx-ease-out);
}

.lx-page-loader.lx-fade-out {
  opacity: 0;
  pointer-events: none;
}

.lx-page-loader__inner {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lx-page-loader__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(80, 227, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: lx-wave-expand 2s var(--lx-ease-out) infinite;
}

.lx-page-loader__ring:nth-child(1) { animation-delay: 0s; }
.lx-page-loader__ring:nth-child(2) { animation-delay: -0.5s; }
.lx-page-loader__ring:nth-child(3) { animation-delay: -1s; }
.lx-page-loader__ring:nth-child(4) { animation-delay: -1.5s; }

.lx-page-loader__logo {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   SVG FILTERS (mevcut #pixelate koruması için)
   ============================================================ */
.lx-svg-filters {
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
}
