/* ========== BASE ========== */
:root{
  --mx-blue:#0b4ea2;
  --mx-blue2:#0a3f86;
  --mx-sky:#1b76d1;
  --mx-bg:#e9eef6;
  --mx-card:#ffffff;
  --mx-line:rgba(7,25,55,.10);
  --mx-text:#0b1b33;
  --mx-muted:rgba(11,27,51,.65);
  --mx-radius:14px;
  --mx-shadow:0 10px 22px rgba(11,27,51,.10);
}
/* ANA GENİŞLİK SİSTEMİ */
.mx-wrap,
.mx-grid,
.pmx-wrap{
  width: 100%;
  max-width: 1520px; /* istersen 1280px de yapabiliriz */
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.mx-grid{
  display:grid;
  grid-template-columns: 280px 1fr 330px;
  gap: 12px;
  align-items:start;
}

.mx-body{ background: var(--mx-bg); color: var(--mx-text); }
.mx-page{ padding: 14px 0 90px; }

/* max genişlik: görseldeki gibi ekranı doldursun ama taşmasın */

/* max genişlik */
.mx-wrap{
  width: min(100%, calc(100% - 20px));
  margin: 0 auto;
}

/* ========== HEADER ========== */
.mx-header{ position: sticky; top: 0; z-index: 50; box-shadow: 0 4px 14px rgba(0,0,0,.08); }

.mx-topbar{
  background: linear-gradient(90deg, var(--mx-blue2), var(--mx-blue));
  color:#fff;
  font-size: 13px;
}
.mx-topbar .mx-wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap: 10px; padding: 10px 0;
}

.mx-brand{ display:flex; align-items:center; gap:10px; color:#fff; text-decoration:none; font-weight:800; letter-spacing:.4px; }
.mx-brand-mark{
  width:26px;height:26px;border-radius:8px;
  display:inline-flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
}
.mx-brand-text{ font-size:16px; }

.mx-topbar-center{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; opacity:.95; }
.mx-top-item{ display:flex; gap:8px; align-items:center; }

.mx-topbar-right{ display:flex; gap:12px; align-items:center; }
.mx-toplink{ color:#fff; text-decoration:none; display:flex; gap:8px; align-items:center; opacity:.92; }
.mx-toplink:hover{ opacity:1; text-decoration:underline; }

.mx-badge{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:18px; height:18px; padding:0 6px;
  border-radius: 999px; background:#ff3b30; color:#fff; font-size:12px; margin-left:6px;
}

.mx-iconbtn{
  width:38px;height:38px;border-radius:12px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  text-decoration:none;
  position:relative;
}
.mx-iconbtn:hover{ background: rgba(255,255,255,.16); }
.mx-dot{
  position:absolute; right:7px; top:7px;
  width:8px; height:8px; border-radius:50%;
  background:#ff3b30;
}

/* mainbar */
.mx-mainbar{ background: #f8fbff; border-top: 1px solid rgba(255,255,255,.16); }
.mx-mainrow{
  display:flex; gap:12px; align-items:center;
  padding: 10px 0;
}
.mx-left{ width: 210px; }

.mx-menu-btn{
  width:100%; height:40px;
  border:1px solid var(--mx-line);
  background:#fff;
  border-radius:12px;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 12px;
  font-weight:900; color: var(--mx-text);
}
.mx-menu-btn i{ color: var(--mx-blue); }

.mx-dd{
  border-radius: 14px;
  border: 1px solid var(--mx-line);
  box-shadow: 0 18px 40px rgba(11,27,51,.18);
  padding: 8px;
}
.mx-dd .dropdown-item{
  border-radius: 12px;
  font-weight:800;
  padding: 10px 10px;
}
.mx-dd .dropdown-item:hover{
  background: rgba(11,78,162,.08);
}

.mx-search{ flex:1; }
.mx-search-form{
  position:relative; display:flex; align-items:center;
  height:40px; background:#fff; border:1px solid var(--mx-line);
  border-radius: 12px; overflow:hidden;
}
.mx-search-ico{ position:absolute; left:12px; color: rgba(11,27,51,.55); }
.mx-search-input{
  width:100%; height:100%;
  padding: 0 92px 0 38px;
  border:0; outline:0;
  font-weight:700;
}
.mx-search-btn{
  position:absolute; right:6px; top:6px;
  height:28px; padding:0 14px;
  border:0; border-radius:10px;
  background: var(--mx-blue); color:#fff; font-weight:900;
}

.mx-right{ display:flex; gap:10px; align-items:center; }
.mx-action{
  border:1px solid var(--mx-line);
  background:#fff;
  height:40px;
  padding: 0 12px;
  border-radius: 12px;
  display:inline-flex; gap:8px; align-items:center;
  text-decoration:none; color: var(--mx-text); font-weight:900;
}
.mx-action:hover{ box-shadow: 0 8px 18px rgba(11,27,51,.10); }
.mx-action.primary{ background: var(--mx-blue); color:#fff; border-color: transparent; }
.mx-action.cart{ position:relative; }

/* ========== SHOP GRID ========== */
.mx-shop{ padding: 12px 0 0; }

/* cards */
.mx-card{
  background: var(--mx-card);
  border:1px solid var(--mx-line);
  border-radius: var(--mx-radius);
  box-shadow: var(--mx-shadow);
}
.mx-card-h{
  padding: 12px 14px;
  border-bottom: 1px solid var(--mx-line);
  display:flex; align-items:center; justify-content:space-between;
}
.mx-card-title{ font-weight:900; display:flex; gap:10px; align-items:center; }
.mx-card-title i{ color: var(--mx-blue); }
.mx-card-b{ padding: 14px; }

.mx-sidebox{ padding:0; }
.mx-side-links{ padding: 10px; display:flex; flex-direction:column; gap:6px; }
.mx-side-links a{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--mx-text);
  font-weight:900;
  border: 1px solid rgba(0,0,0,0);
}
.mx-side-links a i{ color: var(--mx-blue); }
.mx-side-links a:hover{ background: rgba(11,78,162,.06); border-color: rgba(11,78,162,.14); }
.mx-check{ display:flex; gap:10px; align-items:center; font-weight:800; color: rgba(11,27,51,.78); }
.mx-check input{ transform: translateY(1px); }

/* HERO */
.mx-hero{
  position:relative;
  border-radius: var(--mx-radius);
  overflow:hidden;
  border:1px solid var(--mx-line);
  box-shadow: var(--mx-shadow);
  min-height: 220px;
  background: #0b4ea2;
}

.mx-hero-inner{
  position:relative;
  padding: 18px;
  color:#fff;
  max-width: 620px;
}
.mx-hero-badges{ display:flex; gap:8px; flex-wrap:wrap; }
.mx-pill{
  display:inline-flex; align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-weight:900;
  font-size: 12px;
}
.mx-pill-discount{ background: rgba(255,193,7,.22); border-color: rgba(255,193,7,.28); }

.mx-hero-title{ font-size: 34px; font-weight: 1000; line-height: 1.1; margin-top: 12px; }
.mx-hero-sub{ opacity: .92; font-weight: 800; margin-top: 6px; }

.mx-countdown{
  margin-top: 14px;
  display:flex; gap:10px; align-items:center;
}
.mx-countdown > div{
  width: 68px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  padding: 10px 8px;
  text-align:center;
}
.mx-countdown b{ display:block; font-size: 18px; }
.mx-countdown span{ display:block; font-size: 12px; opacity:.90; margin-top:2px; }

/* tabs row */
.mx-tabs{
  margin-top: 10px;
  background:#fff;
  border:1px solid var(--mx-line);
  border-radius: var(--mx-radius);
  box-shadow: var(--mx-shadow);
  padding: 10px;
  display:flex; gap:8px; align-items:center; flex-wrap:wrap;
}
.mx-tab{
  border:1px solid rgba(11,78,162,.18);
  background: rgba(11,78,162,.06);
  color: var(--mx-blue);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight:900;
  display:inline-flex; gap:8px; align-items:center;
}
.mx-tab.active{
  background: var(--mx-blue);
  border-color: transparent;
  color:#fff;
}
.mx-tab-search{
  margin-left:auto;
  display:flex; align-items:center; gap:8px;
  height: 36px;
  padding: 0 10px;
  border:1px solid var(--mx-line);
  border-radius: 12px;
  color: rgba(11,27,51,.60);
  background:#fff;
}
.mx-tab-search input{
  border:0; outline:0; width: 180px;
  font-weight:800;
}

/* products */
.mx-products{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mx-product{
  background:#fff;
  border:1px solid var(--mx-line);
  border-radius: var(--mx-radius);
  box-shadow: var(--mx-shadow);
  padding: 12px;
  display:flex; flex-direction:column;
  min-height: 220px;
}
.mx-prod-top{ display:flex; align-items:center; justify-content:space-between; }
.mx-stock{
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.22);
  color: #0f7a35;
  font-weight:900;
  padding: 5px 10px;
  border-radius: 999px;
  font-size:12px;
}
.mx-fav{
  width:34px; height:34px;
  border-radius: 12px;
  border:1px solid var(--mx-line);
  background:#fff;
}
.mx-prod-img{
  margin-top: 10px;
  height: 92px;
  border-radius: 14px;
  background:
  linear-gradient(135deg, rgba(11,78,162,.08), rgba(11,78,162,.02));
  border:1px dashed rgba(11,78,162,.18);
}
.mx-prod-title{ font-weight:1000; margin-top: 10px; }
.mx-prod-meta{ color: var(--mx-muted); font-weight:800; font-size: 12px; }
.mx-prod-bottom{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.mx-price{ font-weight:1000; color: var(--mx-text); }

/* strip */
.mx-strip{
  margin-top: 12px;
  display:flex; gap:14px; flex-wrap:wrap;
  background:#fff;
  border:1px solid var(--mx-line);
  border-radius: var(--mx-radius);
  box-shadow: var(--mx-shadow);
  padding: 12px 14px;
}
.mx-strip-item{ display:flex; gap:8px; align-items:center; font-weight:900; color: rgba(11,27,51,.80); }
.mx-strip-item i{ color: var(--mx-blue); }

/* right widgets */
.mx-widget .mx-note{ margin-top: 10px; color: rgba(11,27,51,.68); font-weight:800; font-size: 13px; }
.mx-doc{ display:flex; gap:10px; align-items:center; }
.mx-avatar{
  width:44px;height:44px;border-radius: 50%;
  background: linear-gradient(135deg, rgba(11,78,162,.14), rgba(11,78,162,.03));
  border:1px solid rgba(11,78,162,.18);
}
.mx-last{
  display:flex; gap:10px; align-items:center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(7,25,55,.12);
}
.mx-last:last-child{ border-bottom:0; }
.mx-last-img{
  width:56px;height:44px;border-radius: 12px;
  background: rgba(11,78,162,.06);
  border:1px solid rgba(11,78,162,.14);
}
.mx-last-body{ flex:1; }

/* ========== MOBILE ========== */
@media (max-width: 1199.98px){
  .mx-products{ grid-template-columns: repeat(3, 1fr); }
  .mx-grid{ grid-template-columns: 260px 1fr; }
  .mx-rightcol{ grid-column: 1 / -1; }
}
@media (max-width: 991.98px){
  .mx-left{ width: 170px; }
  .mx-products{ grid-template-columns: repeat(2, 1fr); }
  .mx-grid{ grid-template-columns: 1fr; }
  .mx-hero-inner{ max-width: 100%; }
  .mx-tab-search input{ width: 140px; }
  .mx-topbar-center{ display:none !important; }
}
@media (max-width: 575.98px){
  .mx-wrap,
  .mx-grid,
  .pmx-wrap{
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .mx-mainrow{ gap:8px; }
  .mx-left{ width: auto; }
  .mx-search-btn{ padding: 0 10px; }
  .mx-hero-title{ font-size: 26px; }
  .mx-countdown > div{ width: 62px; }
}

.mx-menu-btn{
  width:100%; height:40px;
  border:1px solid var(--mx-line);
  background:#fff;
  border-radius:12px;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 12px;
  font-weight:700; color: var(--mx-text);
}

.mx-search-input{
  width:100%; height:100%;
  padding: 0 92px 0 38px;
  border:0; outline:0;
  font-weight:600;
}
.mx-search-btn{
  position:absolute; right:6px; top:6px;
  height:28px; padding:0 14px;
  border:0; border-radius:10px;
  background: var(--mx-blue); color:#fff; font-weight:700;
}

.mx-action{
  border:1px solid var(--mx-line);
  background:#fff;
  height:40px;
  padding: 0 12px;
  border-radius: 12px;
  display:inline-flex; gap:8px; align-items:center;
  text-decoration:none; color: var(--mx-text); font-weight:700;
}

.mx-grid{
  width: min(100%, calc(100% - 20px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 280px 1fr 330px;
  gap: 12px;
  align-items:start;
}

.mx-side-links a{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--mx-text);
  font-weight:700;
  border: 1px solid rgba(0,0,0,0);
}

.mx-check{ display:flex; gap:10px; align-items:center; font-weight:700; color: rgba(11,27,51,.78); }

.mx-mini-service{ display:flex; flex-direction:column; gap:8px; }
.mx-mini-item{ display:flex; gap:10px; align-items:center; font-weight:900; color: rgba(11,27,51,.82); }
.mx-mini-item i{ color: var(--mx-blue); }

.mx-hero{
  position:relative;
  border-radius: var(--mx-radius);
  overflow:hidden;
  border:1px solid var(--mx-line);
  box-shadow: var(--mx-shadow);
  min-height: 240px;
  background: #0b4ea2;
}

.mx-hero-inner{
  position:relative;
  padding: 18px;
  color:#fff;
  max-width: 640px;
}

.mx-pill{
  display:inline-flex; align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-weight:800;
  font-size: 12px;
}

.mx-hero-sub{ opacity: .92; font-weight: 700; margin-top: 6px; }

.mx-tab-search input{
  border:0; outline:0; width: 180px;
  font-weight:700;
}

.mx-prod-meta{ color: var(--mx-muted); font-weight:700; font-size: 12px; }

/* promo row */
.mx-promo-row{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mx-promo{
  border-radius: var(--mx-radius);
  border:1px solid var(--mx-line);
  box-shadow: var(--mx-shadow);
  overflow:hidden;
  min-height: 110px;
  padding: 14px;
  position:relative;
  color:#fff;
}
.mx-promo::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(0,0,0,.18), rgba(0,0,0,.34));
}
.mx-promo-1{
  background: url("/medikal/public/assets/img/shop-hero.jpg") center/cover no-repeat;
}
.mx-promo-2{
  background: url("/medikal/public/assets/img/shop-hero.jpg") center/cover no-repeat;
}
.mx-promo-title{ position:relative; font-weight:1000; font-size:18px; }
.mx-promo-sub{ position:relative; opacity:.92; font-weight:700; margin-top:4px; }

/* section + horizontal list */
.mx-section{ margin-top: 12px; }
.mx-section-h{
  display:flex; align-items:center; justify-content:space-between;
  gap: 10px;
  padding: 10px 0 8px;
}
.mx-section-title{ font-weight:1000; font-size: 18px; }
.mx-section-actions{ display:flex; gap:8px; }
.mx-chip{
  border:1px solid rgba(11,78,162,.18);
  background:#fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight:900;
  color: rgba(11,27,51,.80);
}
.mx-chip.active{ background: var(--mx-blue); color:#fff; border-color: transparent; }

.mx-hlist{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mx-hitem{
  background:#fff;
  border:1px solid var(--mx-line);
  border-radius: var(--mx-radius);
  box-shadow: var(--mx-shadow);
  overflow:hidden;
  display:flex;
  min-height: 120px;
}
.mx-himg{
  width: 120px;
  background: linear-gradient(135deg, rgba(11,78,162,.12), rgba(11,78,162,.03));
  border-right:1px solid var(--mx-line);
}
.mx-hbody{ padding: 12px; flex:1; display:flex; flex-direction:column; }
.mx-htitle{ font-weight:1000; }
.mx-hmeta{ color: var(--mx-muted); font-weight:700; font-size: 12px; margin-top:2px; }
.mx-hbottom{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.mx-hprice{ font-weight:1000; }

.mx-widget .mx-note{ margin-top: 10px; color: rgba(11,27,51,.68); font-weight:700; font-size: 13px; }

/* reviews */
.mx-review{ padding: 10px 0; border-bottom: 1px dashed rgba(7,25,55,.12); }
.mx-review:last-child{ border-bottom:0; }
.mx-review-top{ display:flex; gap:10px; align-items:center; }
.mx-review-avatar{
  width:40px;height:40px;border-radius: 50%;
  background: rgba(11,78,162,.08);
  border:1px solid rgba(11,78,162,.14);
}
.mx-review-name{ font-weight:1000; font-size: 13px; }
.mx-stars{ color: #f6b100; font-size: 12px; margin-top:2px; }
.mx-review-text{ margin-top: 8px; color: rgba(11,27,51,.72); font-weight:700; font-size: 13px; }

/* blog blocks */
.mx-blog-area{ margin-top: 12px; }
.mx-blog-item{
  display:flex; gap:10px; align-items:flex-start;
  padding: 12px 0;
  text-decoration:none;
  border-bottom: 1px dashed rgba(7,25,55,.12);
  color: var(--mx-text);
}
.mx-blog-item:last-child{ border-bottom:0; }
.mx-blog-ico{
  width:38px;height:38px;border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(11,78,162,.06);
  border:1px solid rgba(11,78,162,.14);
  color: var(--mx-blue);
}
.mx-blog-title{ font-weight:1000; }
.mx-blog-desc{ color: rgba(11,27,51,.68); font-weight:700; font-size: 13px; margin-top:2px; }
.mx-blog-go{ margin-left:auto; color: rgba(11,27,51,.40); padding-top: 6px; }

.mx-rblog{
  display:flex; gap:10px; align-items:flex-start;
  padding: 10px 0;
  text-decoration:none;
  border-bottom: 1px dashed rgba(7,25,55,.12);
  color: var(--mx-text);
}
.mx-rblog:last-child{ border-bottom:0; }
.mx-rblog-ico{
  width:34px;height:34px;border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(11,78,162,.06);
  border:1px solid rgba(11,78,162,.14);
  color: var(--mx-blue);
}
.mx-rblog-title{ font-weight:1000; font-size: 13px; }
.mx-rblog-desc{ color: rgba(11,27,51,.68); font-weight:700; font-size: 12px; margin-top:2px; }

/* ========== FOOTER (görseldeki mavi şerit + alt footer) ========== */
.mx-footer-strip{
  margin-top: 16px;
  background: linear-gradient(90deg, var(--mx-blue2), var(--mx-blue));
  color:#fff;
}
.mx-footer-strip .mx-wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
  flex-wrap:wrap;
}
.mx-footer-strip .mx-fitem{
  display:flex; gap:10px; align-items:center;
  font-weight:900;
  opacity:.95;
}
.mx-footer-strip .mx-fitem i{
  width:30px;height:30px;border-radius: 10px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
}

.mx-footer-bottom{
  background:#fff;
  border-top: 1px solid var(--mx-line);
}
.mx-footer-bottom .mx-wrap{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items:center;
  padding: 14px 0;
}
.mx-foot-links{
  display:flex; gap:12px; flex-wrap:wrap;
  color: rgba(11,27,51,.70);
  font-weight:800;
  font-size: 13px;
}
.mx-foot-links a{ color: inherit; text-decoration:none; }
.mx-foot-links a:hover{ text-decoration:underline; }

.mx-pay{
  display:flex; gap:10px; align-items:center; justify-content:center;
  font-weight:1000;
}
.mx-pay span{
  padding: 6px 10px;
  border-radius: 10px;
  border:1px solid var(--mx-line);
  background:#f7f9ff;
}
.mx-contact{
  display:flex; gap:14px; justify-content:flex-end; flex-wrap:wrap;
  font-weight:900; color: rgba(11,27,51,.72);
}
.mx-contact a{ color: inherit; text-decoration:none; }
.mx-contact a:hover{ text-decoration:underline; }

/* Sabit canlı destek */
.mx-livechat{
  position: fixed;
  right: 14px;
  bottom: 90px;
  z-index: 70;
  background: #0f7a35;
  color:#fff;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 12px 26px rgba(0,0,0,.20);
  display:flex; gap:10px; align-items:center;
  text-decoration:none;
  font-weight:1000;
  display:none;
}
.mx-livechat i{
  width:34px;height:34px;border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
}

@media (max-width: 991.98px){
  .mx-left{ width: 170px; }
  .mx-products{ grid-template-columns: repeat(2, 1fr); }
  .mx-grid{ grid-template-columns: 1fr; }
  .mx-hero-inner{ max-width: 100%; }
  .mx-tab-search input{ width: 140px; }
  .mx-topbar-center{ display:none; }
  .mx-promo-row{ grid-template-columns: 1fr; }
  .mx-hlist{ grid-template-columns: 1fr; }
  .mx-footer-bottom .mx-wrap{ grid-template-columns: 1fr; text-align:center; }
  .mx-contact{ justify-content:center; }
}
@media (max-width: 575.98px){
  .mx-wrap{ width: calc(100% - 16px); }
  .mx-mainrow{ gap:8px; }
  .mx-left{ width: auto; }
  .mx-menu-btn span{ display:none; }
  .mx-search-btn{ padding: 0 10px; }
  .mx-hero-title{ font-size: 26px; }
  .mx-countdown > div{ width: 62px; }
}

@media (max-width: 575.98px){
  .mx-wrap{ width: calc(100% - 16px); }
  .mx-mainrow{ gap:8px; }
  .mx-left{ width: auto; }
  .mx-search-btn{ padding: 0 10px; }
  .mx-hero-title{ font-size: 26px; }
  .mx-countdown > div{ width: 62px; }
}

/* =========================================================
MX OVERRIDES — TIPOGRAFİ / İKON / RENK YUMUŞATMA
(Mevcut kodları SİLMEDEN en alta eklenecek)
========================================================= */

/* 1) Global font + daha premium “naif” görünüm */
:root{
  --mx-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mx-font-head: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

/* renkleri hafif yumuşat */
--mx-bg: #eef3fb;                 /* biraz daha temiz */
--mx-text: #0b1b33;
--mx-muted: rgba(11,27,51,.58);
--mx-line: rgba(7,25,55,.08);
--mx-shadow: 0 12px 28px rgba(11,27,51,.10);

/* mavi tonları daha modern */
--mx-blue2:#0a3f86;
--mx-blue:#0b4ea2;
--mx-sky:#1b76d1;
}

/* body ve temel tipografi */
.mx-body{
  font-family: var(--mx-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  letter-spacing: -0.01em;
  font-weight: 500;
}

/* Bootstrap metinleri de uyumlasın */
:root{
  --bs-body-font-family: var(--mx-font);
}

/* 2) “Kabalığı” yaratan aşırı font-weight’leri yumuşat */
.mx-card-title,
.mx-tab,
.mx-action,
.mx-top-item,
.mx-toplink,
.mx-side-links a,
.mx-mini-item,
.mx-strip-item,
.mx-pill,
.mx-chip,
.mx-htitle,
.mx-prod-title{
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}

/* Başlıklar daha “heading font” ile */
.mx-hero-title,
.mx-section-title{
  font-family: var(--mx-font-head);
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

/* Alt metinler daha ince/şık */
.mx-hero-sub,
.mx-prod-meta,
.mx-hmeta,
.mx-widget .mx-note,
.mx-blog-desc,
.mx-rblog-desc,
.mx-review-text,
.text-muted,
.small{
  font-weight: 500 !important;
  color: var(--mx-muted) !important;
  letter-spacing: -0.005em;
  line-height: 1.45;
}

/* 3) İkonları daha dengeli yap (kaba görünümü azaltır) */
.bi{
  line-height: 1;
  vertical-align: -0.12em;
}

/* ikonlu butonlar daha şık */
.mx-iconbtn{
  border-color: rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.08) !important;
}
.mx-iconbtn:hover{
  background: rgba(255,255,255,.14) !important;
}

/* 4) Kart/çizgi kontrastını yumuşat — “sert” görünüm gider */
.mx-card,
.mx-product,
.mx-tabs,
.mx-strip,
.mx-hitem{
  border-color: var(--mx-line) !important;
  box-shadow: var(--mx-shadow) !important;
}

/* 5) Butonlar daha premium */
.btn,
.mx-search-btn{
  font-family: var(--mx-font);
  font-weight: 700 !important;
  letter-spacing: -0.01em;
  border-radius: 12px;
}

/* 6) Menü linkleri: kaba kalınlık yerine modern hover */
.mx-side-links a{
  font-weight: 650 !important;
}
.mx-side-links a:hover{
  background: rgba(11,78,162,.055) !important;
  border-color: rgba(11,78,162,.12) !important;
}

/* 7) Tab bar input daha naif */
.mx-tab-search{
  border-color: rgba(7,25,55,.10) !important;
}
.mx-tab-search input{
  font-weight: 600 !important;
}

/* 8) Ürün fiyatı “tok” ama bağırmasın */
.mx-price,
.mx-hprice{
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

/* 9) Küçük görsel dokunuş: hero içindeki badge’ler daha rafine */
.mx-pill{
  backdrop-filter: blur(6px);
}

/* 10) Mobilde metin kalabalık hissini azalt */
@media (max-width: 575.98px){
  .mx-hero-title{ font-size: 24px !important; }
  .mx-hero-sub{ font-size: 13px !important; }
  .mx-tab{ padding: 7px 10px !important; }
}

/* ========== TRUST STRIP PREMIUM UPDATE ========== */
.mx-strip{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
  background: linear-gradient(90deg,#fff9e6,#fffdf5);
  border:1px solid #f4e2b0;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  padding:18px;
}

.mx-strip-item{
  background:#fff;
  border-radius:14px;
  padding:14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  font-weight:700;
  font-size:14px;
  transition:.25s ease;
  border:1px solid #f1e4c4;
}

.mx-strip-item:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 22px rgba(0,0,0,.08);
}

.mx-strip-item i{
  font-size:22px;
  background:linear-gradient(135deg,#ffcc4d,#f6b100);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ========== PROMO PREMIUM UPDATE ========== */
.mx-promo{
  border-radius:20px;
  overflow:hidden;
  position:relative;
  transition:.3s ease;
}

.mx-promo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(0,0,0,.25),rgba(0,0,0,.55));
}

.mx-promo-title{
  position:relative;
  z-index:2;
  font-size:20px;
  font-weight:800;
}

.mx-promo-sub{
  position:relative;
  z-index:2;
  font-size:14px;
}

.mx-promo:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 30px rgba(0,0,0,.15);
}

/* ========== SIDEBAR TRUST UPDATE ========== */
.mx-mini-service{
  background:linear-gradient(180deg,#fffdf5,#fff7e0);
  padding:14px;
  border-radius:14px;
  border:1px solid #f3e2b8;
}

.mx-mini-item{
  font-size:13px;
  padding:8px 0;
  border-bottom:1px dashed #f0dfb2;
}

.mx-mini-item:last-child{
  border-bottom:0;
}

.mx-mini-item i{
  color:#f6b100;
  font-size:16px;
}

/* ========== PAYMENT BADGES UPDATE ========== */
.mx-pay span{
  padding:8px 14px;
  border-radius:12px;
  font-weight:700;
  font-size:13px;
}

.mx-pay .visa{
  background:#1a1f71;
  color:#fff;
}

.mx-pay .mastercard{
  background:linear-gradient(90deg,#eb001b,#f79e1b);
  color:#fff;
}

.mx-pay .troy{
  background:#00a859;
  color:#fff;
}

/* ========== SCROLL TOP BUTTON ========== */
.mx-scrolltop{
  position:fixed;
  right:18px;
  bottom:40%;
  width:44px;
  height:44px;
  border-radius:50%;
  border:0;
  background:var(--mx-blue);
  color:#fff;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 24px rgba(0,0,0,.20);
  z-index:999;
}
.mx-scrolltop.show{
  display:flex;
}

/* ===========================
EK: A) Premium Product Cards
EK: B) Real Hero Carousel
(Silme yok — sadece override/ek)
=========================== */

/* HERO Carousel fixes */
.mx-hero-carousel.carousel { position: relative; }
.mx-hero-carousel .carousel-inner,
.mx-hero-carousel .carousel-item { height: auto; }
@media (max-width: 575.98px){
  .mx-hero-carousel .carousel-inner,
  .mx-hero-carousel .carousel-item { height: auto; }
}
.mx-hero-carousel .carousel-item { position: relative; overflow: hidden; }
.mx-hero-carousel .mx-hero-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.06);
}
.mx-hero-carousel .mx-hero-inner{ position:relative; z-index: 2; }
.mx-hero-cta{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; }
.mx-hero-cta .btn{ border-radius: 12px; }

/* Premium product card */
.mx-product-premium{ transition: transform .18s ease, box-shadow .18s ease; }
.mx-product-premium:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11,27,51,.14);
}
.mx-product-premium .mx-prod-top{ position:relative; }
.mx-sale-badge{
  position:absolute;
  left: 0;
  top: 36px;
  background: rgba(255,193,7,.92);
  color: #111;
  font-weight: 1000;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
}
.mx-prod-media{
  position: relative;
  display:block;
  margin-top: 10px;
  height: 110px;
  border-radius: 14px;
  overflow:hidden;
  text-decoration:none;
}
.mx-prod-media .mx-prod-img{
  position:absolute;
  inset:0;
  height: 100%;
  border-radius: 14px;
  border:1px dashed rgba(11,78,162,.18);
  background:
  linear-gradient(135deg, rgba(11,78,162,.10), rgba(11,78,162,.02));
  transition: opacity .18s ease, transform .18s ease;
}
.mx-prod-media .mx-img-1{
  opacity:1;
  background-image:
  linear-gradient(135deg, rgba(255,255,255,.0), rgba(0,0,0,.04)),
  url("/medikal/public/assets/img/shop-hero.jpg");
  background-size: cover;
  background-position: center;
  border-style: solid;
}
.mx-prod-media .mx-img-2{
  opacity:0;
  transform: scale(1.02);
  background-image:
  linear-gradient(135deg, rgba(255,255,255,.0), rgba(0,0,0,.08)),
  url("/medikal/public/assets/img/shop-hero.jpg");
  background-size: cover;
  background-position: center;
  border-style: solid;
}
.mx-product-premium:hover .mx-prod-media .mx-img-1{ opacity:0; }
.mx-product-premium:hover .mx-prod-media .mx-img-2{ opacity:1; transform: scale(1.04); }

.mx-quickview{
  position:absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(7,25,55,.12);
  color: rgba(11,27,51,.86);
  font-weight: 1000;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}
.mx-product-premium:hover .mx-quickview{
  opacity: 1;
  transform: translateY(0);
}

.mx-rating{
  margin-top: 8px;
  display:flex;
  align-items:center;
  gap:8px;
}
.mx-rating .mx-stars{ color:#f6b100; font-size: 12px; }
.mx-rating-text{ color: rgba(11,27,51,.60); font-weight: 800; font-size: 12px; }

.mx-pricebox{ display:flex; flex-direction:column; line-height: 1.05; }
.mx-oldprice{
  color: rgba(11,27,51,.45);
  font-weight: 800;
  font-size: 12px;
  text-decoration: line-through;
  margin-top: 2px;
}
.mx-prod-actions{ display:flex; gap:8px; align-items:center; }
.mx-prod-actions .btn{ border-radius: 12px; }

/* ========== BOTTOM BAR ========== */
.mx-bottombar{
  position: fixed; left:0; right:0; bottom:0; z-index: 60;
  display:flex; justify-content:space-around;
  padding: 10px 6px;
  box-shadow: 0 -10px 22px rgba(11,27,51,.10);
  backdrop-filter: blur(10px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.mx-botitem{
  text-decoration:none; color: rgba(11,27,51,.78);
  display:flex; flex-direction:column; align-items:center; gap:4px;
  font-weight:900; font-size: 12px;
}
.mx-botitem i{ font-size: 18px; color: var(--mx-blue); }
.mx-botbadge{
  position:absolute; top:-6px; right:-10px;
  min-width:18px; height:18px; padding:0 6px;
  border-radius:999px;
  background:#ff3b30; color:#fff !important; font-size:12px;
  display:inline-flex; align-items:center; justify-content:center;
}

/* Slider görseli: desktop cover, mobile contain (tam sığsın) */
.mx-hero-bg{ background-size: cover; position:absolute; inset:0; filter: saturate(1.05) contrast(1.05);}
@media (max-width: 575.98px){
  .mx-hero-bg{
    position:absolute; inset:0;
    background-size: cover;
    background-repeat:no-repeat;
    background-position:center;
    background-color:#0b4ea2;
    filter: saturate(1.05) contrast(1.05);
  }
}

/* CTA butonları “altta görünmüyor” fix */
.mx-hero-inner{ padding-bottom: 18px; }
.mx-hero-cta{ padding-bottom: 6px; }

/* Ürün kartı üst alan: mobilde badge sığsın */
.mx-prod-top{ gap:8px; }
@media (max-width: 575.98px){
  .mx-prod-top{ flex-wrap:wrap; justify-content:flex-start; }
}

/* Premium sale badge: mobilde absolute yerine akışa girsin ki taşmasın */
@media (max-width: 575.98px){
  .mx-sale-badge{
    position: static;
    margin-top: 8px;
    max-width: 100%;
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
  }
}

/* Ürün kartları mobil taşma: padding & font biraz sıkılaştır */
@media (max-width: 575.98px){
  .mx-products{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap:10px; }
  .mx-product{ padding:10px; }
  .mx-prod-title{ font-size: 13px; }
  .mx-price{ font-size: 13px; }
  .mx-tab-search{ width:100%; margin-left:0; }
  .mx-tab-search input{ width:100%; }
}

/* Mobil menüde linkler “mavi altı çizili” olmasın (offcanvas vs.) */
.offcanvas a,
.offcanvas .nav-link,
.offcanvas-body a{
  color: var(--mx-text);
  text-decoration:none !important;
  font-weight:900;
}
.offcanvas a:hover{ text-decoration:underline !important; }

/* Footer strip: mobilde daha düzgün dizilim */
@media (max-width: 575.98px){
  .mx-footer-strip .mx-wrap{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:10px;
    justify-content:unset;
  }
  .mx-footer-strip .mx-fitem{
    justify-content:flex-start;
    font-size: 12px;
  }
}

/* Ödeme ikon row (visa/master/troy) — span içine svg koyacağız */
.mx-pay .mx-paybrand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 12px;
  border:1px solid var(--mx-line);
  background:#f7f9ff;
  font-weight:1000;
}
.mx-pay .mx-paybrand svg{ width:34px; height:22px; display:block; }
.mx-pay .mx-paybrand.visa{ background: rgba(26, 91, 255, .10); border-color: rgba(26,91,255,.20); }
.mx-pay .mx-paybrand.master{ background: rgba(255, 92, 0, .10); border-color: rgba(255,92,0,.20); }
.mx-pay .mx-paybrand.troy{ background: rgba(0, 168, 107, .10); border-color: rgba(0,168,107,.20); }

/* Sayfa içeriği bottom bar’a girmesin */
.page-pad-bottom{ padding-bottom: 60px; }

/* Üste çık butonu */
.mx-topbtn{
  position: fixed;
  right: 14px;
  bottom: calc(90px + env(safe-area-inset-bottom));
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(7,25,55,.12);
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
  display:none;
  align-items:center;
  justify-content:center;
  color: var(--mx-blue);
  text-decoration:none;
}
.mx-topbtn.show{ display:flex; }
.mx-topbtn:hover{ transform: translateY(-1px); }

/* =========================================================
(3) PRODUCT CARD ACTIONS — MOBILE TAŞMA FIX
Silme yok: sadece override
========================================================= */

/* Kart içinde butonlar taşmasın */
.mx-prod-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;              /* taşınca alt satıra insin */
  align-items:center;
  justify-content:flex-end;
}

/* Butonlar gereksiz genişlemesin */
.mx-prod-actions .btn{
  max-width:100%;
  white-space:nowrap;
}

/* XS ekranda: Detay + Sepet düzeni */
@media (max-width: 575.98px){

/* Kart padding biraz nefes */
.mx-product{ padding: 11px !important; }

/* Üst rozetler daralmada ezilmesin */
.mx-stock,
.mx-sale-badge{
  font-size:11px !important;
  padding: 5px 9px !important;
}

/* Alt alan daha stabil */
.mx-prod-bottom{
  flex-direction:column;
  align-items:stretch;
  gap:10px;
}

/* Aksiyonlar tam genişlik */
.mx-prod-actions{
  justify-content:space-between;
}

/* Detay yarım genişlik */
.mx-prod-actions .btn.mx-btn-detail{
  flex: 1 1 48%;
  padding: 10px 10px;
  font-size: 13px;
}

/* Sepet yarım genişlik; sığmazsa alt satıra düşer */
.mx-prod-actions .btn.mx-btn-cart{
  flex: 1 1 48%;
  padding: 10px 10px;
  font-size: 13px;
}

/* İkonlar çok büyüyüp kaba durmasın */
.mx-prod-actions .btn i{ font-size: 16px; }
}

/* =========================================================
(4) CRO CAMPAIGN + CATEGORY BLOCKS — PREMIUM
Silme yok: sadece yeni blok stilleri
========================================================= */

/* Kampanya şeridi: 2 büyük CTA kart */
.mx-campaign-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mx-campaign-card{
  position:relative;
  overflow:hidden;
  border-radius: 20px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(11,27,51,.10);
  min-height: 150px;
  color:#fff;
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.mx-campaign-card::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(0,0,0,.22), rgba(0,0,0,.55));
}

.mx-campaign-card .mx-c-body{
  position:relative; z-index:2;
  max-width: 80%;
}
.mx-campaign-card .mx-c-title{
  font-weight: 1000;
  font-size: 20px;
  line-height: 1.1;
}
.mx-campaign-card .mx-c-sub{
  margin-top:6px;
  opacity:.92;
  font-weight: 650;
  font-size: 13px;
}
.mx-campaign-card .mx-c-cta{
  margin-top: 12px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.mx-campaign-card .btn{
  border-radius: 12px;
  font-weight: 900;
  padding: 10px 12px;
}

/* Kategori hızlı kutular */
.mx-cat-tiles{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.mx-cat-tile{
  background: linear-gradient(180deg,#fffdf5,#ffffff);
  border: 1px solid rgba(7,25,55,.08);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(11,27,51,.08);
  padding: 12px 10px;
  text-decoration:none;
  color: var(--mx-text);
  display:flex;
  gap:10px;
  align-items:center;
  transition: .18s ease;
}
.mx-cat-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11,27,51,.12);
}
.mx-cat-ico{
  width:36px;height:36px;border-radius: 14px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(135deg,#ffcc4d,#f6b100);
  color:#111;
  flex: 0 0 auto;
}
.mx-cat-txt b{ display:block; font-weight: 1000; font-size: 13px; }
.mx-cat-txt span{ display:block; font-weight: 650; font-size: 12px; color: rgba(11,27,51,.62); }

/* Mobil kırılımlar */
@media (max-width: 991.98px){
  .mx-campaign-grid{ grid-template-columns: 1fr; }
  .mx-cat-tiles{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575.98px){
  .mx-cat-tiles{ grid-template-columns: repeat(2, 1fr); }
  .mx-campaign-card .mx-c-body{ max-width: 100%; }
}

/* =========================
MOBILE PRODUCT FIX
========================= */

@media (max-width: 575.98px){

  .mx-product{
    padding: 10px;
  }

  .mx-prod-title{
    font-size: 14px;
    line-height: 1.3;
  }

  .mx-prod-bottom{
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .mx-prod-bottom .btn{
    width: 100%;
    font-size: 13px;
    padding: 8px 10px;
  }

  .mx-price{
    font-size: 15px;
  }

}

/* =========================
PAYMENT LOGO REAL STYLE
========================= */

.mx-pay{
  gap:14px;
}

.mx-pay span{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:8px 16px;
  border-radius:14px;
  font-size:13px;
  font-weight:700;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* VISA */

/* MASTERCARD */
.mx-pay .mastercard{
  background:#000;
  color:#fff;
  position:relative;
}
.mx-pay .mastercard::before{
  content:"";
  width:14px;
  height:14px;
  background:#eb001b;
  border-radius:50%;
  position:absolute;
  left:8px;
}
.mx-pay .mastercard::after{
  content:"";
  width:14px;
  height:14px;
  background:#f79e1b;
  border-radius:50%;
  position:absolute;
  left:16px;
}

/* TROY */

/* =========================
HERO MOBILE FIX
========================= */

.mx-hero{
  height:auto !important;
}

.mx-hero-inner{
  padding: 24px !important;
}

@media (max-width: 575.98px){
  .mx-hero-inner{
    padding: 18px !important;
  }
}

/* === (1) Görsel standardı: ürün görselleri daha “çekim gibi” dursun === */
.mx-prod-media, .mx-prod-img{
  background-color:#fff !important;
}

.mx-prod-media{
  aspect-ratio: 1 / 1;
  height: auto !important;
  display:block;
}

.mx-prod-media .mx-prod-img,
.mx-prod-img{
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  border-style: solid !important;
  border-color: rgba(7,25,55,.08) !important;
}

/* Premium hissiyat: çok hafif gölge */
.mx-prod-media{
  box-shadow: 0 10px 18px rgba(11,27,51,.06);
}

/* =========================================================
MX PREMIUM SHOP UI PATCH (ADD-ON)
- Slider text visibility + height tweak helpers
- Category tiles white bg + amber icon bg + black icon
- Product card badges/fav alignment + overflow fixes
- Reviews section more vivid
- Popular list premium card look
- FAB menu (old style) + Cart Drawer (left)
========================================================= */

/* --- Slider visibility tweaks (doesn't change structure) --- */
.mx-hero.mx-hero-carousel .mx-hero-inner{
  max-width: 980px;
}
.mx-hero.mx-hero-carousel .mx-hero-title{
  text-shadow: 0 8px 26px rgba(0,0,0,.55);
}
.mx-hero.mx-hero-carousel .mx-hero-sub{
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
  opacity: .95;
}
.mx-hero.mx-hero-carousel .mx-hero-badges .mx-pill{
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}
.mx-hero.mx-hero-carousel .mx-hero-cta .btn{
  border-width: 2px;
}
.mx-hero.mx-hero-carousel .mx-hero-cta .btn.btn-outline-light{
  background: rgba(0,0,0,.18);
}
.mx-hero.mx-hero-carousel .mx-hero-cta .btn.btn-outline-light:hover{
  background: rgba(0,0,0,.30);
}
.mx-hero.mx-hero-carousel .carousel-inner .carousel-item{
/* Slider uzun geliyorsa bunu düşürür */
min-height: 360px;
}
@media (max-width: 768px){
  .mx-hero.mx-hero-carousel .carousel-inner .carousel-item{ min-height: 300px; }
}

/* --- Category tiles: white background + amber icon bg + black icon --- */
.mx-cat-tiles .mx-cat-tile{
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.mx-cat-tiles .mx-cat-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.mx-cat-tiles .mx-cat-ico{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ffcc33; /* amber */
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.mx-cat-tiles .mx-cat-ico i{
  color: #111; /* black icon */
  font-size: 20px;
}

/* --- Product cards: fix star row overflow + badges visibility + fav style --- */
.mx-product-card .mx-rating i,
.mx-product-card .mx-rating .bi{
  font-size: 12px !important; /* yıldız küçük, taşma çözülür */
  line-height: 1;
}
.mx-product-card .mx-meta-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;  /* taşarsa alt satıra iner */
}
.mx-product-card .mx-meta-row .mx-views,
.mx-product-card .mx-meta-row .mx-comments{
  font-size: 12px;
  opacity: .85;
  white-space: nowrap;
}

/* Üst şerit badge alanı: tek satır/çok satır uyumlu */
.mx-product-card .mx-badges-top{
  position: absolute;
  top: 10px;
  left: 10px;
  right: 46px; /* fav için yer bırak */
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap; /* sığmazsa alta */
  pointer-events: none;
  z-index: 3;
}
.mx-product-card .mx-badge{
  pointer-events: none;
  font-size: 11px;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.55);
  color: #fff;
}
.mx-product-card .mx-badge.mx-badge-hot{ background: rgba(220,53,69,.88); }
.mx-product-card .mx-badge.mx-badge-featured{ background: rgba(13,110,253,.88); }
.mx-product-card .mx-badge.mx-badge-new{ background: rgba(25,135,84,.88); }

/* Favori butonu: beyaz boş arkaplan, kırmızı dolma active */
.mx-product-card .mx-fav-btn{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.10);
  display: grid;
  place-items: center;
  z-index: 4;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(0,0,0,.10);
}
.mx-product-card .mx-fav-btn i{
  color: #111;
  font-size: 16px;
}
.mx-product-card .mx-fav-btn.is-active i{
  color: #dc3545;
}

/* Ürün başlığı: tek satır + Baş Harfleri Büyük hissi */
.mx-product-card .mx-title{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  text-transform: capitalize; /* baş harfleri büyük hissi */
  letter-spacing: .2px;
}

/* Açıklama alanı: ticket değil, düz açıklama (tek satır) */
.mx-product-card .mx-desc{
  font-size: 12px;
  opacity: .85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Görsel büyütme */
.mx-product-card .mx-img-wrap{
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 14px;
}
.mx-product-card .mx-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.06);
}

/* Sepete ekle/detay butonları taşma fix + daha iyi görünüm */
.mx-product-card .mx-actions{
  display:flex;
  gap: 8px;
  align-items: center;
}
.mx-product-card .mx-actions .btn{
  padding: 8px 10px;
  font-weight: 800;
  border-radius: 12px;
  white-space: nowrap;
}
.mx-product-card .mx-actions .btn.mx-btn-cart{
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px; /* metin taşmasın */
}
.mx-product-card .mx-actions .btn.mx-btn-detail{
  flex: 0 0 auto;
  font-size: 12px;
}

/* --- Campaign boxes: more premium, better spacing --- */
.mx-campaign-grid{
  gap: 14px;
}
.mx-campaign-card{
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.mx-campaign-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.55));
}
.mx-campaign-card .mx-c-body{
  position: relative;
  padding: 26px 22px;
  color: #fff;
}
.mx-campaign-card .mx-c-title{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .2px;
}
.mx-campaign-card .mx-c-sub{
  margin-top: 6px;
  max-width: 460px;
  opacity: .92;
}
.mx-campaign-card .mx-c-cta{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mx-campaign-card .mx-c-cta .btn{
  border-radius: 12px;
  font-weight: 900;
  padding: 10px 12px;
}

/* --- Reviews section: more vivid --- */
.mx-reviews-wrap{
  background: linear-gradient(180deg, rgba(255,204,51,.10), rgba(255,255,255,.0));
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
.mx-review-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
}
.mx-review-card .mx-r-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.mx-review-card .mx-r-name{
  font-weight: 900;
}
.mx-review-card .mx-r-stars i{
  font-size: 12px;
}
.mx-review-card .mx-r-text{
  margin-top: 8px;
  font-size: 12px;
  opacity: .9;
}

/* --- Popular list premium --- */
.mx-popular-box{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  overflow: hidden;
}
.mx-popular-box .mx-popular-head{
  padding: 12px 14px;
  font-weight: 900;
  background: rgba(255,204,51,.20);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mx-popular-item{
  display:flex;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  align-items: center;
}
.mx-popular-item:last-child{ border-bottom: none; }
.mx-popular-thumb{
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(0,0,0,.03);
  overflow: hidden;
  display:grid;
  place-items:center;
}
.mx-popular-thumb img{
  width:100%; height:100%;
  object-fit: contain;
}
.mx-popular-meta{
  flex:1;
  min-width:0;
}
.mx-popular-title{
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mx-popular-sub{
  margin-top: 3px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items:center;
  font-size: 11px;
  opacity: .85;
}
.mx-popular-pill{
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 800;
}

/* --- OLD FAB MENU (fixed bottom left) --- */
.mx-fab-wrap{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9999;
}
.mx-fab-main{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: #111;
  color:#fff;
  cursor:pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.mx-fab-main i{ font-size: 20px; }
.mx-fab-items{
  position: absolute;
  left: 0;
  bottom: 62px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.mx-fab-wrap.is-open .mx-fab-items{ display:flex; }
.mx-fab-line{
  display:flex;
  align-items:center;
  gap: 10px;
}
.mx-fab-item{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color:#fff;
  cursor:pointer;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}
.mx-fab-item.blue{ background:#0d6efd; }
.mx-fab-item.green{ background:#198754; }
.mx-fab-item.amber{ background:#ffcc33; color:#111; }
.mx-fab-item.red{ background:#dc3545; }
.mx-fab-label{
  background: rgba(0,0,0,.82);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

/* --- CART DRAWER (left, 70% width, full height) --- */
.mx-cart-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9997;
  display: none;
}
.mx-cart-overlay.is-open{ display:block; }

.mx-cart-drawer{
  position: fixed;
  top: 0;
  left: 0;
  width: min(70vw, 520px);
  height: 100vh;
  background: #fff;
  z-index: 9998;
  transform: translateX(-102%);
  transition: transform .22s ease;
  box-shadow: 18px 0 60px rgba(0,0,0,.22);
  display:flex;
  flex-direction: column;
}
.mx-cart-drawer.is-open{ transform: translateX(0); }
.mx-cart-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.mx-cart-head .mx-cart-title{
  font-weight: 900;
  letter-spacing: .2px;
}
.mx-cart-close{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.mx-cart-body{
  padding: 12px 14px;
  overflow:auto;
  flex:1;
}
.mx-cart-item{
  display:flex;
  gap: 10px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}
.mx-cart-item .mx-ci-thumb{
  width: 62px; height: 62px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(0,0,0,.03);
  overflow:hidden;
  display:grid;
  place-items:center;
}
.mx-cart-item .mx-ci-thumb img{
  width:100%; height:100%;
  object-fit: contain;
}
.mx-cart-item .mx-ci-meta{
  flex:1; min-width:0;
}
.mx-cart-item .mx-ci-title{
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.mx-cart-item .mx-ci-sub{
  margin-top: 4px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  opacity: .85;
}
.mx-cart-item .mx-ci-price{
  font-weight: 900;
}
.mx-cart-foot{
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 12px 14px;
  background: rgba(0,0,0,.02);
}
.mx-cart-sum{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-weight: 900;
  margin-bottom: 10px;
}
.mx-cart-actions{
  display:flex;
  gap: 10px;
}
.mx-cart-actions .btn{
  flex:1;
  border-radius: 12px;
  font-weight: 900;
  padding: 10px 12px;
}
/* =========================================================
PMX REAL PREMIUM NAVBAR
========================================================= */

.pmx-header{
  position:sticky;
  top:0;
  z-index:1200;
  backdrop-filter:blur(16px);
}

.pmx-topbar{
  position:relative;
  overflow:hidden;
  color:#e7eefb;
  background:
  radial-gradient(900px 220px at 0% 0%, rgba(255,255,255,.08), transparent 58%),
  radial-gradient(760px 220px at 100% 100%, rgba(255,193,7,.10), transparent 56%),
  linear-gradient(90deg, #071a35 0%, #0a2244 45%, #0f2e5b 100%);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.pmx-topbar::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  pointer-events:none;
}

.pmx-topbar .pmx-wrap{
  position:relative;
  z-index:1;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.pmx-topbar-left,
.pmx-topbar-right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.pmx-top-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:30px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-size:11.5px;
  font-weight:900;
  white-space:nowrap;
}

.pmx-top-pill i{
  color:#85c8ff;
}

.pmx-top-link{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:30px;
  padding:6px 10px;
  border-radius:999px;
  color:#e7eefb;
  text-decoration:none;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-size:11.5px;
  font-weight:900;
}

.pmx-mainbar{
  position:relative;
  background:
  radial-gradient(900px 240px at 0% 0%, rgba(13,110,253,.06), transparent 58%),
  radial-gradient(760px 220px at 100% 100%, rgba(255,193,7,.08), transparent 56%),
  linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,250,255,.98));
  border-bottom:1px solid rgba(8,25,47,.08);
  box-shadow:
  0 10px 24px rgba(11,27,51,.05),
  0 20px 42px rgba(11,27,51,.06);
}

.pmx-mainbar .pmx-wrap{
  position:relative;
  z-index:1;
}

.pmx-main-grid{
  display:grid;
  grid-template-columns:auto auto minmax(260px,1fr) auto;
  align-items:center;
  gap:14px;
  min-height:84px;
}

.pmx-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  text-decoration:none;
  color:#0b1b33;
}

.pmx-brand-mark{
  width:48px;
  height:48px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:
  linear-gradient(135deg, #0b4ea2 0%, #1b76d1 100%);
  color:#fff;
  box-shadow:0 16px 30px rgba(11,78,162,.24);
  flex:0 0 auto;
}

.pmx-brand-mark i{
  font-size:18px;
}

.pmx-brand-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.pmx-brand-copy strong{
  font-size:19px;
  line-height:1;
  font-weight:1000;
  color:#08192f;
  letter-spacing:.02em;
}

.pmx-brand-copy small{
  margin-top:5px;
  font-size:11px;
  line-height:1.1;
  font-weight:800;
  color:rgba(8,25,47,.58);
  white-space:nowrap;
}

.pmx-catalog .dropdown{
  position:relative;
}

.pmx-catalog-btn{
  height:54px;
  min-width:248px;
  padding:0 14px;
  border:1px solid rgba(8,25,47,.08);
  border-radius:18px;
  background:
  linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  box-shadow:
  0 12px 24px rgba(12,28,54,.05),
  inset 0 1px 0 rgba(255,255,255,.72);
  display:flex;
  align-items:center;
  gap:12px;
  color:#0b1b33;
}

.pmx-catalog-btn-icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#edf4fc;
  color:#0b4ea2;
  flex:0 0 auto;
}

.pmx-catalog-btn-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  min-width:0;
  flex:1 1 auto;
}

.pmx-catalog-btn-copy b{
  font-size:13px;
  line-height:1.05;
  font-weight:1000;
}

.pmx-catalog-btn-copy small{
  margin-top:4px;
  font-size:10.5px;
  line-height:1.1;
  font-weight:800;
  color:rgba(8,25,47,.56);
}

.pmx-catalog-btn-chevron{
  font-size:12px;
  color:rgba(8,25,47,.48);
}

.pmx-mega-menu{
  min-width:760px;
  margin-top:12px !important;
  padding:12px !important;
  border:1px solid rgba(8,25,47,.08) !important;
  border-radius:24px !important;
  background:
  radial-gradient(700px 200px at 0% 0%, rgba(13,110,253,.06), transparent 58%),
  linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  box-shadow:0 28px 52px rgba(12,28,54,.14) !important;
}

.pmx-mega-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.1fr;
  gap:12px;
}

.pmx-mega-col{
  border:1px solid rgba(8,25,47,.06);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  padding:12px;
}

.pmx-mega-col-highlight{
  background:
  radial-gradient(520px 180px at 100% 100%, rgba(255,193,7,.10), transparent 58%),
  linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,255,.98));
}

.pmx-mega-title{
  margin-bottom:10px;
  font-size:12px;
  font-weight:1000;
  color:rgba(8,25,47,.54);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.pmx-mega-link{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px;
  border-radius:16px;
  text-decoration:none;
  color:#0b1b33;
}

.pmx-mega-link:hover{
  background:#f4f8fd;
}

.pmx-mega-link > i{
  width:36px;
  height:36px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#edf4fc;
  color:#0b4ea2;
  flex:0 0 auto;
}

.pmx-mega-link b{
  display:block;
  font-size:13px;
  line-height:1.08;
  font-weight:1000;
}

.pmx-mega-link small{
  display:block;
  margin-top:4px;
  font-size:11px;
  line-height:1.35;
  font-weight:700;
  color:rgba(8,25,47,.60);
}

.pmx-mega-feature{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.pmx-mega-feature span{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:8px 10px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(8,25,47,.06);
  font-size:12px;
  font-weight:900;
  color:#0b1b33;
}

.pmx-mega-feature i{
  color:#0b4ea2;
}

.pmx-mega-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}

.pmx-search-zone{
  min-width:0;
}

.pmx-search-form{
  margin:0;
}

.pmx-search-shell{
  position:relative;
  height:56px;
}

.pmx-search-shell input{
  width:100%;
  height:100%;
  border:1px solid rgba(8,25,47,.08);
  border-radius:20px;
  background:
  linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  padding:0 112px 0 50px;
  font-size:13px;
  font-weight:900;
  color:#08192f;
  outline:none;
  box-shadow:
  0 14px 28px rgba(12,28,54,.05),
  inset 0 1px 0 rgba(255,255,255,.72);
}

.pmx-search-shell input::placeholder{
  color:rgba(8,25,47,.48);
}

.pmx-search-icon{
  position:absolute;
  left:17px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(8,25,47,.46);
  font-size:15px;
}

.pmx-search-shell button{
  position:absolute;
  top:7px;
  right:7px;
  height:42px;
  min-width:88px;
  border:0;
  border-radius:15px;
  background:
  linear-gradient(135deg, #0b4ea2 0%, #1b76d1 100%);
  color:#fff;
  font-size:12px;
  font-weight:1000;
  box-shadow:0 14px 24px rgba(11,78,162,.24);
}

.pmx-search-chips{
  position:absolute;
  right:104px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  gap:6px;
}

.pmx-search-chips a{
  display:inline-flex;
  align-items:center;
  height:28px;
  padding:0 10px;
  border-radius:999px;
  text-decoration:none;
  font-size:10.5px;
  font-weight:900;
  color:#0b4ea2;
  background:#eef4fc;
  border:1px solid rgba(11,78,162,.10);
}

.pmx-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.pmx-action-card{
  position:relative;
  height:54px;
  padding:0 14px;
  border-radius:18px;
  border:1px solid rgba(8,25,47,.08);
  background:
  linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  box-shadow:
  0 12px 24px rgba(12,28,54,.05),
  inset 0 1px 0 rgba(255,255,255,.72);
  text-decoration:none;
  color:#0b1b33;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.pmx-action-card-icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#edf4fc;
  color:#0b4ea2;
  flex:0 0 auto;
}

.pmx-action-card-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.pmx-action-card-copy b{
  font-size:12.5px;
  line-height:1.05;
  font-weight:1000;
}

.pmx-action-card-copy small{
  margin-top:4px;
  font-size:10.5px;
  line-height:1.1;
  font-weight:800;
  color:rgba(8,25,47,.56);
  white-space:nowrap;
}

.pmx-action-badge,
.pmx-cart-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-style:normal;
  font-size:11px;
  font-weight:1000;
}

.pmx-action-badge{
  background:#ffcc33;
  color:#111;
}

.pmx-cart-btn{
  position:relative;
  height:54px;
  padding:0 18px;
  border-radius:18px;
  border:0;
  background:
  linear-gradient(135deg, #0b4ea2 0%, #1b76d1 100%);
  color:#fff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12.5px;
  font-weight:1000;
  box-shadow:0 16px 28px rgba(11,78,162,.24);
}

.pmx-cart-badge{
  background:#ff3b30;
  color:#fff;
}

.pmx-square-btn{
  width:46px;
  height:46px;
  border:1px solid rgba(8,25,47,.08);
  border-radius:16px;
  background:#fff;
  color:#0b1b33;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 10px 20px rgba(12,28,54,.05);
}

.pmx-subnav{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:50px;
  padding:0 0 12px;
}

.pmx-subnav a{
  display:inline-flex;
  align-items:center;
  height:38px;
  padding:0 14px;
  border-radius:999px;
  text-decoration:none;
  font-size:12px;
  font-weight:900;
  color:#0b1b33;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(8,25,47,.06);
  box-shadow:0 8px 18px rgba(12,28,54,.03);
}

.pmx-mobile-offcanvas{
  border-top-right-radius:22px;
  border-bottom-right-radius:22px;
}

.pmx-mobile-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:1000;
  color:#08192f;
}

.pmx-mobile-title-mark{
  width:36px;
  height:36px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #0b4ea2 0%, #1b76d1 100%);
  color:#fff;
}

.pmx-mobile-search{
  position:relative;
  margin-bottom:16px;
}

.pmx-mobile-search i{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(8,25,47,.46);
}

.pmx-mobile-search input{
  width:100%;
  height:48px;
  border:1px solid rgba(8,25,47,.08);
  border-radius:15px;
  background:#f7faff;
  padding:0 14px 0 40px;
  font-size:13px;
  font-weight:900;
  outline:none;
}

.pmx-mobile-section{
  margin-top:16px;
}

.pmx-mobile-label{
  margin-bottom:10px;
  font-size:11px;
  font-weight:1000;
  color:rgba(8,25,47,.52);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.pmx-mobile-section a,
.pmx-mobile-logout{
  width:100%;
  min-height:50px;
  padding:0 14px;
  margin-bottom:8px;
  border:1px solid rgba(8,25,47,.08);
  border-radius:15px;
  background:#fff;
  color:#0b1b33;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  box-shadow:0 10px 20px rgba(12,28,54,.04);
}

.pmx-mobile-section a i,
.pmx-mobile-logout i{
  width:32px;
  height:32px;
  border-radius:11px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#edf4fc;
  color:#0b4ea2;
}

.pmx-mobile-line-badge{
  margin-left:auto;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-style:normal;
  font-size:11px;
  font-weight:1000;
  background:#ff3b30;
  color:#fff;
}

.pmx-mobile-logout-form{
  margin:0;
}

.pmx-mobile-logout{
  appearance:none;
  cursor:pointer;
}

.pmx-mobile-call{
  width:100%;
  min-height:52px;
  margin-top:18px;
  border-radius:16px;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(135deg, #12a150 0%, #10b55a 100%);
  color:#fff;
  font-size:13px;
  font-weight:1000;
  box-shadow:0 16px 28px rgba(16,181,90,.24);
}

@media (max-width: 1399.98px){
  .pmx-search-chips{
    display:none !important;
  }
}

@media (max-width: 1199.98px){
  .pmx-main-grid{
    grid-template-columns:auto minmax(240px,1fr) auto;
  }

  .pmx-catalog{
    display:none !important;
  }

  .pmx-action-card{
    display:none !important;
  }
}

@media (max-width: 991.98px){
  .pmx-wrap{
    width:min(100%, calc(100% - 16px));
  }

  .pmx-main-grid{
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:10px;
    min-height:72px;
  }

  .pmx-brand-mark{
    width:42px;
    height:42px;
    border-radius:15px;
  }

  .pmx-brand-copy strong{
    font-size:16px;
  }

  .pmx-brand-copy small{
    font-size:10px;
  }

  .pmx-search-zone{
    grid-column:1 / -1;
    padding-bottom:12px;
  }

  .pmx-search-shell{
    height:48px;
  }

  .pmx-search-shell input{
    border-radius:17px;
    padding:0 94px 0 44px;
    font-size:12.5px;
  }

  .pmx-search-shell button{
    height:36px;
    min-width:74px;
    border-radius:13px;
  }

  .pmx-cart-btn{
    width:46px;
    height:46px;
    padding:0;
    justify-content:center;
    border-radius:16px;
  }

  .pmx-subnav{
    display:none !important;
  }
}

@media (max-width: 575.98px){
  .pmx-main-grid{
    min-height:66px;
    gap:8px;
  }

  .pmx-brand{
    gap:10px;
  }

  .pmx-brand-mark{
    width:40px;
    height:40px;
    border-radius:14px;
  }

  .pmx-brand-copy strong{
    font-size:15px;
  }

  .pmx-search-shell input{
    font-size:12px;
  }
}
/* =========================================================
PMX ULTRA PREMIUM NAVBAR EXTENSION
========================================================= */

.pmx-meta-rail{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:10px;
  padding:0 0 14px;
}

.pmx-meta-card{
  min-height:68px;
  padding:12px 14px;
  border-radius:18px;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid rgba(8,25,47,.08);
  background:
  radial-gradient(420px 140px at 0% 0%, rgba(13,110,253,.06), transparent 58%),
  linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,255,.98));
  color:#0b1b33;
  box-shadow:
  0 10px 22px rgba(12,28,54,.04),
  inset 0 1px 0 rgba(255,255,255,.72);
}

.pmx-meta-card-ico{
  width:38px;
  height:38px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#edf4fc;
  color:#0b4ea2;
  flex:0 0 auto;
}

.pmx-meta-card-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.pmx-meta-card-copy b{
  font-size:12.5px;
  line-height:1.05;
  font-weight:1000;
}

.pmx-meta-card-copy small{
  margin-top:4px;
  font-size:10.5px;
  line-height:1.1;
  font-weight:800;
  color:rgba(8,25,47,.56);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.pmx-mobile-quick{
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 0 12px;
}

.pmx-mobile-quick-btn{
  position:relative;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(8,25,47,.08);
  background:#fff;
  color:#0b1b33;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 10px 20px rgba(12,28,54,.05);
}

.pmx-mobile-dot{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-weight:1000;
  font-style:normal;
  background:#ff3b30;
  color:#fff;
}

@media (max-width: 1199.98px){
  .pmx-meta-rail{
    display:none !important;
  }
}
/* =========================================================
PMX NAVBAR MOBILE + DRAWER FIX
========================================================= */

/* drawer ve mobile offcanvas navbarın üstünde açılsın */
#mxCartDrawer.offcanvas,
#pmxMobileMenu.offcanvas{
  z-index: 2005 !important;
}

.offcanvas-backdrop.show{
  z-index: 2000 !important;
}

.pmx-header{
  z-index: 1200 !important;
}

/* desktop topbar biraz daha kompakt */
.pmx-topbar .pmx-wrap{
  min-height: 36px !important;
}

.pmx-top-pill,
.pmx-top-link{
  min-height: 28px !important;
  padding: 5px 9px !important;
  font-size: 11px !important;
}

/* desktop navbar genel ritim */
.pmx-main-grid{
  min-height: 78px !important;
}

.pmx-meta-rail{
  padding-bottom: 12px !important;
}

/* =========================
MOBILE REBUILD
========================= */
@media (max-width: 991.98px){

  .pmx-mainbar .pmx-wrap{
    display:block !important;
  }

  .pmx-main-grid{
    display:grid !important;
    grid-template-columns: 44px minmax(0,1fr) 46px !important;
    align-items:center !important;
    gap:10px !important;
    min-height: 68px !important;
    padding: 10px 0 8px !important;
  }

  .pmx-mobile-menu{
    display:flex !important;
    align-items:center;
    justify-content:flex-start;
  }

  .pmx-brand{
    min-width:0 !important;
    overflow:hidden;
    gap:10px !important;
  }

  .pmx-brand-mark{
    width:40px !important;
    height:40px !important;
    border-radius:14px !important;
    flex:0 0 auto;
  }

  .pmx-brand-copy{
    min-width:0 !important;
    overflow:hidden;
  }

  .pmx-brand-copy strong{
    font-size:15px !important;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .pmx-brand-copy small{
    font-size:10px !important;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .pmx-actions{
    display:flex !important;
    justify-content:flex-end !important;
    align-items:center !important;
    gap:0 !important;
  }

  .pmx-cart-btn{
    width:46px !important;
    height:46px !important;
    padding:0 !important;
    border-radius:16px !important;
    justify-content:center !important;
  }

  .pmx-cart-btn .d-none.d-lg-inline{
    display:none !important;
  }

  .pmx-search-zone{
    display:block !important;
    width:100%;
    padding: 0 0 10px !important;
  }

  .pmx-search-shell{
    height:46px !important;
  }

  .pmx-search-shell input{
    height:46px !important;
    border-radius:16px !important;
    padding:0 88px 0 42px !important;
    font-size:12px !important;
  }

  .pmx-search-icon{
    left:14px !important;
  }

  .pmx-search-shell button{
    top:5px !important;
    right:5px !important;
    height:36px !important;
    min-width:70px !important;
    border-radius:12px !important;
    font-size:11.5px !important;
  }

  .pmx-search-chips{
    display:none !important;
  }

  .pmx-meta-rail{
    display:none !important;
  }

/* eski mobile quick row tamamen gizle */
.pmx-mobile-quick{
  display:none !important;
}

.pmx-square-btn{
  width:44px !important;
  height:44px !important;
  border-radius:14px !important;
}

.pmx-mobile-offcanvas{
  width:min(86vw, 380px) !important;
  border-top-right-radius:22px !important;
  border-bottom-right-radius:22px !important;
}
}

@media (max-width: 575.98px){
  .pmx-wrap{
    width:min(100%, calc(100% - 14px)) !important;
  }

  .pmx-main-grid{
    gap:8px !important;
    min-height:64px !important;
    padding:8px 0 8px !important;
  }

  .pmx-brand{
    gap:9px !important;
  }

  .pmx-brand-mark{
    width:38px !important;
    height:38px !important;
    border-radius:13px !important;
  }

  .pmx-brand-copy strong{
    font-size:14px !important;
  }

  .pmx-brand-copy small{
    font-size:9.5px !important;
  }

  .pmx-cart-btn{
    width:44px !important;
    height:44px !important;
  }

  .pmx-search-shell,
  .pmx-search-shell input{
    height:44px !important;
  }

  .pmx-search-shell button{
    height:34px !important;
    min-width:66px !important;
  }
}
/* =========================================================
PMX MOBILE NAVBAR HARD FIX
========================================================= */

@media (max-width: 991.98px){

/* header ve drawer sıralaması */
.pmx-header{
  z-index: 1200 !important;
}

#mxCartDrawer.offcanvas,
#pmxMobileMenu.offcanvas{
  z-index: 2005 !important;
}

.offcanvas-backdrop.show{
  z-index: 2000 !important;
}

/* ana alan tek düzgün mobil akış */
.pmx-mainbar .pmx-wrap{
  display: grid !important;
  grid-template-columns: 44px minmax(0,1fr) 44px !important;
  grid-template-areas:
  "menu brand cart"
  "search search search" !important;
  align-items: center !important;
  column-gap: 8px !important;
  row-gap: 8px !important;
  padding: 8px 0 10px !important;
}

/* masaüstü grid yapısını mobilde iptal et */
.pmx-main-grid{
  display: contents !important;
  min-height: auto !important;
}

.pmx-mobile-menu{
  grid-area: menu !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.pmx-brand{
  grid-area: brand !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  overflow: hidden !important;
}

.pmx-actions{
  grid-area: cart !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  min-width: 0 !important;
}

.pmx-search-zone{
  grid-area: search !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
}

/* mobilde gereksiz alanları kapat */
.pmx-catalog,
.pmx-meta-rail,
.pmx-topbar,
.pmx-mobile-quick{
  display: none !important;
}

/* mobil menü butonu */
.pmx-square-btn{
  width: 44px !important;
  height: 44px !important;
  border-radius: 14px !important;
  padding: 0 !important;
}

/* logo daha kompakt */
.pmx-brand-mark{
  width: 40px !important;
  height: 40px !important;
  border-radius: 14px !important;
  flex: 0 0 auto !important;
}

.pmx-brand-mark i{
  font-size: 16px !important;
}

.pmx-brand-copy{
  min-width: 0 !important;
  overflow: hidden !important;
}

.pmx-brand-copy strong{
  display: block !important;
  font-size: 15px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* mobilde alt sloganı kaldır */
.pmx-brand-copy small{
  display: none !important;
}

/* sepet butonu tek kare ikon */
.pmx-cart-btn{
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  padding: 0 !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pmx-cart-btn .d-none.d-lg-inline{
  display: none !important;
}

.pmx-cart-btn i{
  font-size: 16px !important;
}

.pmx-cart-badge{
  top: -5px !important;
  right: -5px !important;
  min-width: 18px !important;
  height: 18px !important;
  padding: 0 5px !important;
  font-size: 10px !important;
}

/* search tek satır, düzgün yükseklik */
.pmx-search-form{
  margin: 0 !important;
}

.pmx-search-shell{
  height: 44px !important;
  position: relative !important;
}

.pmx-search-shell input{
  width: 100% !important;
  height: 44px !important;
  border-radius: 15px !important;
  padding: 0 76px 0 40px !important;
  font-size: 12px !important;
}

.pmx-search-icon{
  left: 13px !important;
  font-size: 14px !important;
}

.pmx-search-shell button{
  top: 5px !important;
  right: 5px !important;
  height: 34px !important;
  min-width: 64px !important;
  border-radius: 11px !important;
  font-size: 11px !important;
  padding: 0 12px !important;
}

.pmx-search-chips{
  display: none !important;
}

/* offcanvas mobil menü görünümü */
.pmx-mobile-offcanvas{
  width: min(86vw, 380px) !important;
  border-top-right-radius: 22px !important;
  border-bottom-right-radius: 22px !important;
}
}

@media (max-width: 575.98px){

  .pmx-wrap{
    width: min(100%, calc(100% - 14px)) !important;
  }

  .pmx-mainbar .pmx-wrap{
    grid-template-columns: 42px minmax(0,1fr) 42px !important;
    column-gap: 8px !important;
    row-gap: 8px !important;
    padding: 8px 0 10px !important;
  }

  .pmx-square-btn,
  .pmx-cart-btn{
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 13px !important;
  }

  .pmx-brand{
    gap: 7px !important;
  }

  .pmx-brand-mark{
    width: 38px !important;
    height: 38px !important;
    border-radius: 13px !important;
  }

  .pmx-brand-copy strong{
    font-size: 14px !important;
  }

  .pmx-search-shell,
  .pmx-search-shell input{
    height: 42px !important;
  }

  .pmx-search-shell input{
    font-size: 11.8px !important;
    padding: 0 72px 0 38px !important;
  }

  .pmx-search-shell button{
    height: 32px !important;
    min-width: 60px !important;
    font-size: 10.8px !important;
  }
}
/* =========================================================
PMX MOBILE NAVBAR REFINEMENT
Favori + Hesap geri gelir, mobil search premiumlaşır
========================================================= */

@media (max-width: 991.98px){

/* mobil üst sıra: menü | logo | aksiyonlar */
.pmx-mainbar .pmx-wrap{
  grid-template-columns: 42px minmax(0,1fr) auto !important;
  grid-template-areas:
  "menu brand actions"
  "search search search" !important;
  column-gap: 8px !important;
  row-gap: 8px !important;
  align-items: center !important;
}

.pmx-actions{
  grid-area: actions !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  min-width: 0 !important;
}

/* desktop action kartlarını mobilde küçük ikon butonlara çevir */
.pmx-action-card{
  display: inline-flex !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  border-radius: 13px !important;
  justify-content: center !important;
  position: relative !important;
  box-shadow: 0 10px 20px rgba(12,28,54,.06) !important;
}

.pmx-action-card-copy{
  display: none !important;
}

.pmx-action-card-icon{
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: #0b4ea2 !important;
}

.pmx-action-card-icon i{
  font-size: 16px !important;
}

.pmx-action-badge{
  top: -4px !important;
  right: -4px !important;
  min-width: 16px !important;
  height: 16px !important;
  padding: 0 4px !important;
  font-size: 9px !important;
}

/* admin kare butonu mobilde gizli kalsın */
.pmx-square-btn.d-none.d-lg-inline-flex{
  display: none !important;
}

/* sepet de aynı ikon setiyle dengelensin */
.pmx-cart-btn{
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 13px !important;
  padding: 0 !important;
  justify-content: center !important;
}

.pmx-cart-btn i{
  font-size: 16px !important;
}

.pmx-cart-badge{
  top: -4px !important;
  right: -4px !important;
  min-width: 16px !important;
  height: 16px !important;
  padding: 0 4px !important;
  font-size: 9px !important;
}

/* logo biraz daha dengeli */
.pmx-brand{
  padding-right: 4px !important;
}

.pmx-brand-copy strong{
  letter-spacing: .01em !important;
}

/* mobil search daha premium */
.pmx-search-shell{
  height: 46px !important;
}

.pmx-search-shell::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 17px;
  background:
  radial-gradient(260px 90px at 0% 0%, rgba(13,110,253,.07), transparent 60%),
  linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,253,.98));
  pointer-events: none;
  z-index: 0;
}

.pmx-search-shell input{
  position: relative !important;
  z-index: 1 !important;
  height: 46px !important;
  border-radius: 17px !important;
  border: 1px solid rgba(8,25,47,.07) !important;
  background: transparent !important;
  box-shadow:
  0 12px 24px rgba(12,28,54,.05),
  inset 0 1px 0 rgba(255,255,255,.82) !important;
  padding: 0 80px 0 42px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.pmx-search-shell input::placeholder{
  color: rgba(8,25,47,.42) !important;
  font-weight: 800 !important;
}

.pmx-search-icon{
  z-index: 2 !important;
  left: 14px !important;
  color: rgba(8,25,47,.42) !important;
}

.pmx-search-shell button{
  z-index: 2 !important;
  top: 5px !important;
  right: 5px !important;
  height: 36px !important;
  min-width: 66px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #0b4ea2 0%, #1b76d1 100%) !important;
  box-shadow: 0 12px 24px rgba(11,78,162,.20) !important;
}

/* mobil offcanvas yine üstte kalsın */
#pmxMobileMenu.offcanvas,
#mxCartDrawer.offcanvas{
  z-index: 2005 !important;
}

.offcanvas-backdrop.show{
  z-index: 2000 !important;
}
}

@media (max-width: 575.98px){

  .pmx-mainbar .pmx-wrap{
    grid-template-columns: 40px minmax(0,1fr) auto !important;
    column-gap: 7px !important;
    row-gap: 8px !important;
  }

  .pmx-action-card,
  .pmx-cart-btn{
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 12px !important;
  }

  .pmx-action-card-icon i,
  .pmx-cart-btn i{
    font-size: 15px !important;
  }

  .pmx-brand-mark{
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
  }

  .pmx-brand-copy strong{
    font-size: 13.5px !important;
  }

  .pmx-search-shell,
  .pmx-search-shell input{
    height: 44px !important;
  }

  .pmx-search-shell input{
    border-radius: 16px !important;
    padding: 0 74px 0 38px !important;
    font-size: 11.8px !important;
  }

  .pmx-search-shell button{
    height: 34px !important;
    min-width: 60px !important;
    font-size: 10.8px !important;
    border-radius: 11px !important;
  }
}
/* =========================================================
MX PREMIUM FOOTER
========================================================= */

.mx-footerLight{
  width:100%;
  margin-top:28px;
  background:linear-gradient(180deg,#fbfdff 0%,#f4f7fb 100%);
  border-top:1px solid rgba(15,23,42,.06);
  box-shadow:0 -8px 28px rgba(15,23,42,.04);
}

/* WRAP → MOBİLDE FULL EDGE */
.mx-footerWrap{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:20px 16px 12px;
}

/* TRUST BAR */
.mx-footerTrust{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  font-size:11px;
  font-weight:800;
  color:#64748b;
  margin-bottom:14px;
}

.mx-footerTrust div{
  display:flex;
  align-items:center;
  gap:6px;
}

.mx-footerTrust i{
  color:#2563eb;
}

/* TOP */
.mx-footerTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(15,23,42,.06);
}

/* BRAND */
.mx-footerBrand{
  display:flex;
  align-items:center;
  gap:12px;
}

.mx-footerLogo{
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(180deg,#eef4ff,#f8fbff);
  border:1px solid rgba(37,99,235,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 20px rgba(37,99,235,.08);
}

.mx-footerLogo i{
  font-size:20px;
  color:#2563eb;
}

/* TEXT */
.mx-footerTitle{
  font-size:15px;
  font-weight:1000;
  color:#0f172a;
}

.mx-footerDesc{
  font-size:11px;
  color:#64748b;
  font-weight:700;
}

/* PAYMENTS */
.mx-footerPayments{
  display:flex;
  gap:10px;
}

.mx-footerPayments span{
  height:38px;
  min-width:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
}

.mx-footerPayments img{
  max-height:18px;
}

/* BOTTOM */
.mx-footerBottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding-top:12px;
}

.mx-footerCopy{
  font-size:11px;
  color:#64748b;
  font-weight:800;
}

/* LINKS */
.mx-footerLinks{
  display:flex;
  gap:14px;
}

.mx-footerLinks a{
  font-size:11px;
  font-weight:900;
  color:#64748b;
  text-decoration:none;
  position:relative;
  transition:.2s;
}

.mx-footerLinks a:hover{
  color:#0f172a;
}

.mx-footerLinks a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:1px;
  background:#0f172a;
  transition:.2s;
}

.mx-footerLinks a:hover::after{
  width:100%;
}

/* MOBILE */
@media (max-width:575px){

  .mx-footerWrap{
    padding:16px 6px 10px; /* 🔥 SAĞ SOL BOŞLUK FIX */
  }

  .mx-footerTop{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:14px;
  }

  .mx-footerBrand{
    justify-content:center;
  }

  .mx-footerPayments{
    justify-content:center;
    width:100%;
  }

  .mx-footerPayments span{
    height:34px;
    min-width:56px;
  }

  .mx-footerBottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:6px;
  }

  .mx-footerLinks{
    justify-content:center;
    flex-wrap:wrap;
  }

}

.mx-bottombar-premium{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1085;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  align-items:end;
  gap:0;
  padding:6px 4px calc(8px + env(safe-area-inset-bottom, 0px));
  background:rgba(255,255,255,.90);
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
  border-top:1px solid rgba(15,23,42,.08);
  box-shadow:0 -10px 24px rgba(15,23,42,.06);
  transition:background .22s ease, box-shadow .22s ease;
}

.mx-botitem{
  position:relative;
  min-width:0;
  height:56px;
  padding:6px 2px 8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  text-decoration:none;
  color:#64748b;
}

.mx-boticon{
  width:27px;
  height:27px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mx-boticon i{
  font-size:17px;
  line-height:1;
  color:currentColor;
}

.mx-bottext{
  font-size:10px;
  line-height:1;
  font-weight:500; /* 🔴 önemli değişiklik */
  letter-spacing:0;
  color:#6b7280; /* daha soft gri */
}

.mx-botitem.is-active .mx-bottext{
  color:#2563eb;
  font-weight:600; /* hafif artış */
}

.mx-botitem.is-active{
  color:#2563eb;
}

.mx-botitem:not(.is-active) .mx-boticon{
  color:#6b7280;
}

.mx-botitem.is-active .mx-boticon{
  color:#2563eb;
}

.mx-botglowline{
  position:absolute;
  left:50%;
  bottom:1px;
  width:0;
  height:3px;
  border-radius:999px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,#60a5fa,#2563eb);
  box-shadow:0 0 10px rgba(37,99,235,.18);
  transition:width .18s ease;
}

.mx-botitem.is-active .mx-botglowline{
  width:22px;
}

/* GENEL BADGE */
.mx-botbadge{
  position:absolute;
  top:5px;
  right:8px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#ef4444,#dc2626);
  color:#ffffff !important;
  font-size:9px;
  line-height:1;
  font-weight:1100;
  border:2px solid #fff;
  box-shadow:0 6px 14px rgba(220,38,38,.18);
}

/* BİLDİRİM BADGE */
.mx-botbadge-notif{
  background:linear-gradient(180deg,#2563eb,#1d4ed8);
  color:#ffffff !important;
  box-shadow:0 6px 14px rgba(37,99,235,.16);
}

/* ORTA SEPET */
.mx-botitem-center{
  height:56px;
  justify-content:flex-end;
  gap:4px;
  background:transparent !important;
  overflow:visible;
}

.mx-botcenter-pulse{
  position:absolute;
  top:-18px;
  left:50%;
  width:50px;
  height:50px;
  transform:translateX(-50%);
  border-radius:999px;
  background:radial-gradient(circle, rgba(37,99,235,.14), rgba(37,99,235,0) 68%);
  pointer-events:none;
  animation:mxCartPulse 2.2s ease-in-out infinite;
}

.mx-botcenter-btn{
  position:absolute;
  top:-16px;
  left:50%;
  width:50px;
  height:50px;
  transform:translateX(-50%);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#2563eb 0%, #1d4ed8 100%);
  color:#fff;
  border:1px solid rgba(37,99,235,.18);
  box-shadow:
  0 14px 24px rgba(37,99,235,.20),
  0 3px 8px rgba(15,23,42,.08);
}

.mx-botcenter-btn i{
  font-size:20px;
  line-height:1;
  color:#ffffff !important;
}

.mx-bottext-center{
  margin-top:auto;
  color:#2563eb;
  font-weight:1100;
}

/* SEPET BADGE: SAĞ ÜSTE SABİT VE YAPIŞIK */
.mx-botbadge-center{
  top:-8px;
  right:calc(50% - 30px);
  transform:none;
  min-width:20px;
  height:20px;
  padding:0 6px;
  font-size:9.5px;
  font-weight:1100;
  color:#ffffff !important;
  border-width:2px;
  box-shadow:0 8px 16px rgba(220,38,38,.20);
}

@keyframes mxCartPulse{
  0%,100%{
    opacity:.65;
    transform:translateX(-50%) scale(1);
  }
  50%{
    opacity:1;
    transform:translateX(-50%) scale(1.08);
  }
}

@media (max-width:575.98px){
  .mx-bottombar-premium{
    padding:5px 2px calc(7px + env(safe-area-inset-bottom, 0px));
    background:rgba(255,255,255,.92);
  }

  .mx-botitem{
    height:52px;
    padding:5px 1px 7px;
    gap:4px;
  }

  .mx-boticon{
    width:25px;
    height:25px;
    border-radius:9px;
  }

  .mx-boticon i{
    font-size:15px;
  }

  .mx-bottext{
    font-size:9px;
  }

  .mx-botitem-center{
    height:52px;
  }

  .mx-botcenter-pulse{
    top:-16px;
    width:46px;
    height:46px;
  }

  .mx-botcenter-btn{
    top:-14px;
    width:46px;
    height:46px;
    border-radius:15px;
  }

  .mx-botcenter-btn i{
    font-size:18px;
    color:#ffffff !important;
  }

  .mx-botbadge{
    top:4px;
    right:5px;
    min-width:17px;
    height:17px;
    font-size:8.5px;
    color:#ffffff !important;
  }

  .mx-botbadge-center{
    top:-19px;
    right:calc(47% - 27px);
    min-width:18px;
    height:18px;
    font-size:8.5px;
    padding:0 5px;
    color:#ffffff !important;
  }

  .mx-botitem.is-active .mx-botglowline{
    width:20px;
  }
}

.pmx-wrap{
  width:min(100%, calc(100% - 22px));
  margin:0 auto;
}

/* =========================================================
FMX PREMIUM FOOTER
========================================================= */

.fmx-footer{
  position:relative;
  margin-top:28px;
  background:
  radial-gradient(900px 220px at 50% 0%, rgba(37,99,235,.05), transparent 60%),
  linear-gradient(180deg,#0f172a 0%, #111827 100%);
  color:#e5eefc;
  border-top:1px solid rgba(255,255,255,.06);
}

.fmx-wrap{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding-left:18px;
  padding-right:18px;
}

.fmx-main{
  padding:22px 0 16px;
}

.fmx-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:16px;
  margin-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.fmx-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#fff;
  min-width:0;
}

.fmx-brand-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#2563eb 0%, #1d4ed8 100%);
  box-shadow:0 14px 28px rgba(37,99,235,.22);
  flex:0 0 auto;
}

.fmx-brand-mark i{
  font-size:16px;
  color:#fff;
}

.fmx-brand-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.fmx-brand-copy strong{
  font-size:15px;
  line-height:1;
  font-weight:1100;
  letter-spacing:-.2px;
  color:#fff;
}

.fmx-brand-copy small{
  margin-top:4px;
  font-size:11px;
  line-height:1.2;
  color:rgba(255,255,255,.68);
  font-weight:900;
}

.fmx-topbar-badges{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.fmx-topbar-badges span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  font-size:11px;
  font-weight:1000;
  color:#f8fbff;
  white-space:nowrap;
}

.fmx-main-grid{
  display:grid;
  grid-template-columns:1.15fr .9fr .9fr 1fr;
  gap:18px;
}

.fmx-col{
  min-width:0;
}

.fmx-title{
  font-size:13px;
  line-height:1.2;
  font-weight:1100;
  letter-spacing:-.2px;
  color:#fff;
  margin-bottom:12px;
}

.fmx-brand-text{
  margin:0;
  max-width:40ch;
  font-size:12px;
  line-height:1.6;
  font-weight:900;
  color:rgba(255,255,255,.72);
}

.fmx-links{
  display:grid;
  gap:8px;
}

.fmx-links a{
  text-decoration:none;
  color:rgba(255,255,255,.78);
  font-size:12px;
  line-height:1.4;
  font-weight:900;
  transition:all .16s ease;
}

.fmx-links a:hover{
  color:#fff;
  transform:translateX(2px);
}

.fmx-contact-mini{
  display:grid;
  gap:8px;
}

.fmx-contact-line{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  transition:all .16s ease;
}

.fmx-contact-line:hover{
  background:rgba(255,255,255,.09);
  color:#fff;
}

.fmx-contact-line i{
  font-size:14px;
  line-height:1;
  flex:0 0 auto;
}

.fmx-contact-line span{
  font-size:12px;
  line-height:1.2;
  font-weight:1000;
}

.fmx-pay-title{
  margin-top:14px;
  margin-bottom:8px;
  font-size:11px;
  font-weight:1100;
  color:rgba(255,255,255,.64);
  text-transform:uppercase;
  letter-spacing:.3px;
}

.fmx-payments{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.fmx-payments span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  height:38px;
  padding:6px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}

.fmx-payments img{
  max-height:17px;
  width:auto;
  display:block;
  filter:brightness(0) invert(1);
  opacity:.92;
}

.fmx-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:12px 0;
}

.fmx-bottom-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.fmx-copy{
  font-size:11px;
  line-height:1.4;
  color:rgba(255,255,255,.60);
  font-weight:900;
}

.fmx-bottom-links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.fmx-bottom-links a{
  text-decoration:none;
  color:rgba(255,255,255,.74);
  font-size:11px;
  font-weight:1000;
  transition:color .16s ease;
}

.fmx-bottom-links a:hover{
  color:#fff;
}

@media (max-width:1199.98px){
  .fmx-main-grid{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
}

@media (max-width:767.98px){
  .fmx-footer{
    margin-top:22px;
  }

  .fmx-wrap{
    padding-left:14px;
    padding-right:14px;
  }

  .fmx-main{
    padding:16px 0 12px;
  }

  .fmx-topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding-bottom:12px;
    margin-bottom:14px;
  }

  .fmx-topbar-badges{
    justify-content:flex-start;
    gap:6px;
  }

  .fmx-topbar-badges span{
    font-size:9.8px;
    padding:7px 9px;
  }

  .fmx-main-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .fmx-col{
    padding:12px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
  }

  .fmx-title{
    font-size:12px;
    margin-bottom:10px;
  }

  .fmx-brand-text{
    font-size:10.8px;
    line-height:1.5;
    max-width:none;
  }

  .fmx-links{
    gap:7px;
  }

  .fmx-links a{
    font-size:10.8px;
  }

  .fmx-contact-line{
    padding:9px 10px;
    border-radius:12px;
  }

  .fmx-contact-line span{
    font-size:10.8px;
  }

  .fmx-pay-title{
    margin-top:12px;
    margin-bottom:7px;
    font-size:10px;
  }

  .fmx-payments span{
    min-width:50px;
    height:34px;
    border-radius:10px;
  }

  .fmx-payments img{
    max-height:15px;
  }

  .fmx-bottom{
    padding:10px 0 14px;
  }

  .fmx-bottom-row{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .fmx-copy{
    font-size:9.8px;
  }

  .fmx-bottom-links{
    gap:10px;
    justify-content:flex-start;
  }

  .fmx-bottom-links a{
    font-size:10px;
  }
}

:root{
  --mx-auth-bg:#f4f7fb;
  --mx-auth-card:#ffffff;
  --mx-auth-ink:#0f172a;
  --mx-auth-muted:#64748b;
  --mx-auth-line:rgba(15,23,42,.08);
  --mx-auth-line-strong:rgba(15,23,42,.12);
  --mx-auth-blue:#2563eb;
  --mx-auth-blue-2:#1d4ed8;
  --mx-auth-violet:#7c3aed;
  --mx-auth-green:#16a34a;
  --mx-auth-shadow-sm:0 10px 24px rgba(15,23,42,.05);
  --mx-auth-shadow-md:0 18px 42px rgba(15,23,42,.08);
  --mx-auth-shadow-lg:0 30px 70px rgba(15,23,42,.12);
}

.text-white-50{
  color:rgba(255,255,255,.82) !important;
}

body{
  background:
  radial-gradient(900px 260px at 50% -10%, rgba(37,99,235,.08), transparent 60%),
  linear-gradient(180deg,#f7f9fd 0%, #f4f7fb 100%);
}

.container.py-4.py-lg-5{
  position:relative;
}

.container.py-4.py-lg-5::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(37,99,235,.06), transparent 65%);
  pointer-events:none;
  filter:blur(2px);
}

.container.py-4.py-lg-5::after{
  content:"";
  position:absolute;
  inset:auto 0 0 auto;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(124,58,237,.05), transparent 65%);
  pointer-events:none;
  filter:blur(2px);
}

.card.border-0.shadow-sm.rounded-4.overflow-hidden{
  border-radius:28px !important;
  background:rgba(255,255,255,.98);
  box-shadow:var(--mx-auth-shadow-lg) !important;
  border:1px solid var(--mx-auth-line) !important;
  backdrop-filter:blur(10px);
}

.card.border-0.shadow-sm.rounded-4.overflow-hidden > .row.g-0{
  min-height:680px;
}

.col-lg-5.d-none.d-lg-block > div{
  position:relative;
  overflow:hidden;
  border-top-left-radius:28px;
  border-bottom-left-radius:28px;
  background:
  radial-gradient(300px 140px at 0% 0%, rgba(255,255,255,.10), transparent 58%),
  radial-gradient(280px 140px at 100% 100%, rgba(255,255,255,.08), transparent 58%),
  linear-gradient(135deg, #0b1220 0%, #15357a 50%, #1d4ed8 100%) !important;
}

.col-lg-5.d-none.d-lg-block > div::before{
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.12), transparent 62%);
  pointer-events:none;
}

.col-lg-5.d-none.d-lg-block > div::after{
  content:"";
  position:absolute;
  left:-50px;
  bottom:-70px;
  width:240px;
  height:240px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.10), transparent 62%);
  pointer-events:none;
}

.col-lg-5.d-none.d-lg-block .rounded-4.p-3{
  border-radius:20px !important;
  background:rgba(255,255,255,.10) !important;
  border:1px solid rgba(255,255,255,.14) !important;
  box-shadow:0 14px 28px rgba(0,0,0,.10);
  backdrop-filter:blur(10px);
}

.col-lg-5.d-none.d-lg-block h2{
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.9px;
  max-width:12ch;
}

.col-lg-5.d-none.d-lg-block p{
  max-width:46ch;
  line-height:1.55;
  font-size:14px;
}

.col-lg-7 > .p-3.p-md-4.p-xl-5{
  padding:28px !important;
}

.text-muted.small.mb-1{
  font-size:11px !important;
  line-height:1;
  letter-spacing:.2px;
  font-weight:1000;
  color:var(--mx-auth-muted) !important;
}

h3.mb-1{
  font-size:30px;
  line-height:1.04;
  letter-spacing:-.7px;
  font-weight:1100;
  color:var(--mx-auth-ink);
}

.d-flex.gap-2.auth-tabs{
  background:rgba(248,250,252,.96);
  border:1px solid var(--mx-auth-line);
  border-radius:999px;
  padding:4px;
  box-shadow:var(--mx-auth-shadow-sm);
}

.auth-tabs .btn{
  min-width:116px;
  border-radius:999px !important;
  font-weight:1100;
  font-size:12px;
  padding:10px 14px;
  border:0;
}

.auth-tabs .btn.btn-primary{
  box-shadow:0 10px 22px rgba(37,99,235,.24);
}

#authGlobalAlert .alert,
#forgotAlert .alert{
  border-radius:18px !important;
  box-shadow:var(--mx-auth-shadow-sm);
  padding:12px 14px;
  font-size:13px;
  font-weight:900;
}

.row.g-3.mb-4 > .col-md-6 a.btn{
  min-height:56px;
  border-radius:18px !important;
  font-weight:1100;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--mx-auth-shadow-sm);
}

.small.text-muted.mb-4{
  font-size:11.2px !important;
  line-height:1.45;
  color:var(--mx-auth-muted) !important;
}

.auth-panel form{
  gap:14px !important;
}

.form-label.fw-semibold{
  font-size:12.2px;
  color:var(--mx-auth-ink);
  margin-bottom:8px;
  font-weight:1100 !important;
}

.form-control.form-control-lg.rounded-4{
  min-height:58px;
  border-radius:18px !important;
  border:1px solid var(--mx-auth-line-strong);
  background:linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
  color:var(--mx-auth-ink);
  font-size:14px;
  font-weight:900;
  padding:14px 16px;
}

.form-control.form-control-lg.rounded-4:focus{
  border-color:rgba(37,99,235,.30);
  box-shadow:0 0 0 .22rem rgba(37,99,235,.12);
}

.form-text{
  font-size:11px;
  font-weight:900;
  color:var(--mx-auth-muted);
}

.btn.btn-link.btn-sm.text-decoration-none.p-0{
  font-weight:1100;
  color:var(--mx-auth-blue);
}

.btn.btn-primary.btn-lg.rounded-4.w-100{
  min-height:58px;
  border-radius:18px !important;
  font-weight:1100;
  font-size:14px;
  box-shadow:0 16px 32px rgba(37,99,235,.24);
}

.rounded-4.border.p-3.bg-light-subtle{
  border-radius:20px !important;
  border:1px solid var(--mx-auth-line) !important;
  background:
  radial-gradient(240px 90px at 0% 0%, rgba(37,99,235,.05), transparent 58%),
  linear-gradient(180deg, rgba(248,250,252,.96), rgba(255,255,255,.98)) !important;
  box-shadow:var(--mx-auth-shadow-sm);
  padding:16px !important;
}

.form-check{
  margin-bottom:10px !important;
}

.form-check:last-child{
  margin-bottom:0 !important;
}

.form-check-input{
  margin-top:.2rem;
  border-color:rgba(15,23,42,.20);
}

.form-check-input:checked{
  background-color:var(--mx-auth-blue);
  border-color:var(--mx-auth-blue);
}

.form-check-label.small{
  font-size:11.4px !important;
  line-height:1.5;
  color:#334155;
  font-weight:900;
}

.form-check-label a{
  font-weight:1100;
  color:var(--mx-auth-blue);
}

.mt-4.pt-3.border-top.small.text-muted{
  font-size:11px !important;
  line-height:1.45;
  color:var(--mx-auth-muted) !important;
  border-color:var(--mx-auth-line) !important;
}

.text-center.small.text-muted.mt-3{
  font-size:11px !important;
  font-weight:1000;
  color:var(--mx-auth-muted) !important;
}

/* MODAL FIX */
.modal{
  z-index:3000 !important;
  padding-right:0 !important;
}

.modal.show{
  display:block;
}

.modal::before{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.50);
  backdrop-filter:blur(3px);
  z-index:0;
}

.modal-dialog{
  position:relative;
  z-index:1;
  margin-top:2rem;
  margin-bottom:2rem;
}

.modal-content{
  border-radius:24px !important;
  border:1px solid var(--mx-auth-line) !important;
  box-shadow:0 24px 70px rgba(15,23,42,.22) !important;
  overflow:hidden;
}

.modal-header{
  padding:18px 20px 10px;
}

.modal-title{
  font-size:22px;
  line-height:1.05;
  font-weight:1100;
  color:var(--mx-auth-ink);
}

.modal-body{
  padding:16px 20px 20px;
}

.modal-body p{
  font-size:13px;
  line-height:1.6;
  color:#334155;
  font-weight:900;
}

.btn-close{
  box-shadow:none !important;
  opacity:.75;
}

body.modal-open{
  overflow:hidden;
}

@media (max-width: 1199.98px){
  .card.border-0.shadow-sm.rounded-4.overflow-hidden > .row.g-0{
    min-height:auto;
  }

  h3.mb-1{
    font-size:28px;
  }
}

@media (max-width: 991.98px){
  .card.border-0.shadow-sm.rounded-4.overflow-hidden{
    border-radius:22px !important;
  }

  .col-lg-7 > .p-3.p-md-4.p-xl-5{
    padding:18px !important;
  }

  h3.mb-1{
    font-size:24px;
    line-height:1.04;
  }

  .d-flex.gap-2.auth-tabs{
    width:100%;
    justify-content:stretch;
  }

  .auth-tabs .btn{
    flex:1 1 0;
    min-width:0;
  }

  .row.g-3.mb-4 > .col-md-6 a.btn{
    min-height:50px;
    border-radius:16px !important;
    font-size:12px;
  }

  .form-control.form-control-lg.rounded-4{
    min-height:52px;
    border-radius:16px !important;
    font-size:13px;
    padding:12px 14px;
  }

  .btn.btn-primary.btn-lg.rounded-4.w-100{
    min-height:52px;
    border-radius:16px !important;
    font-size:13px;
  }

  .rounded-4.border.p-3.bg-light-subtle{
    border-radius:18px !important;
    padding:14px !important;
  }

  .modal-dialog{
    margin:1rem;
  }
}

@media (max-width: 575.98px){
  .container.py-4.py-lg-5{
    padding-top:12px !important;
    padding-bottom:18px !important;
  }

  .card.border-0.shadow-sm.rounded-4.overflow-hidden{
    border-radius:18px !important;
  }

  .col-lg-7 > .p-3.p-md-4.p-xl-5{
    padding:12px !important;
  }

  .text-muted.small.mb-1{
    font-size:9.8px !important;
    margin-bottom:4px !important;
  }

  h3.mb-1{
    font-size:20px;
    line-height:1.02;
    margin-bottom:4px !important;
  }

  .d-flex.justify-content-between.align-items-start.gap-3.flex-wrap.mb-4{
    margin-bottom:14px !important;
    gap:10px !important;
  }

  .auth-tabs{
    width:100%;
    padding:3px;
    gap:4px !important;
  }

  .auth-tabs .btn{
    min-height:38px;
    padding:8px 10px;
    font-size:10.5px;
  }

  #authGlobalAlert .alert,
  #forgotAlert .alert{
    border-radius:14px !important;
    padding:10px 12px;
    font-size:11.3px;
  }

  .row.g-3.mb-4{
    margin-bottom:12px !important;
  }

  .row.g-3.mb-4 > .col-md-6 a.btn{
    min-height:44px;
    border-radius:14px !important;
    font-size:10.8px;
    padding:10px 12px;
  }

  .small.text-muted.mb-4{
    font-size:9.8px !important;
    line-height:1.35;
    margin-bottom:12px !important;
  }

  .auth-panel form{
    gap:10px !important;
  }

  .form-label.fw-semibold{
    font-size:10.6px;
    margin-bottom:6px;
  }

  .form-control.form-control-lg.rounded-4{
    min-height:44px;
    border-radius:14px !important;
    font-size:12px;
    padding:10px 12px;
  }

  .btn.btn-link.btn-sm.text-decoration-none.p-0{
    font-size:10px;
  }

  .btn.btn-primary.btn-lg.rounded-4.w-100{
    min-height:46px;
    border-radius:14px !important;
    font-size:11.8px;
  }

  .rounded-4.border.p-3.bg-light-subtle{
    border-radius:14px !important;
    padding:10px !important;
  }

  .form-check-label.small{
    font-size:10px !important;
    line-height:1.4;
  }

  .mt-4.pt-3.border-top.small.text-muted{
    margin-top:12px !important;
    padding-top:10px !important;
    font-size:9.6px !important;
    line-height:1.35;
  }

  .text-center.small.text-muted.mt-3{
    margin-top:10px !important;
    font-size:9.6px !important;
  }

  .modal-content{
    border-radius:18px !important;
  }

  .modal-header{
    padding:14px 14px 8px;
  }

  .modal-title{
    font-size:18px;
  }

  .modal-body{
    padding:12px 14px 14px;
  }

  .modal-body p{
    font-size:11.6px;
    line-height:1.5;
  }
}

.mx-field{
  display:grid;
  gap:7px;
}

.mx-inputWrap{
  position:relative;
}

.mx-inputIcon{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#64748b;
  pointer-events:none;
  z-index:2;
}

.mx-inputIcon i{
  font-size:15px;
  line-height:1;
}

.mx-inputWrap .form-control{
  padding-left:44px !important;
}

.mx-passToggle{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border:0;
  background:transparent;
  color:#64748b;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  z-index:3;
}

.mx-passToggle:hover{
  background:rgba(15,23,42,.06);
  color:#0f172a;
}

.mx-inputWrap.has-toggle .form-control{
  padding-right:44px !important;
}

@media (max-width:575.98px){
  .mx-inputIcon{
    left:12px;
    width:18px;
    height:18px;
  }

  .mx-inputIcon i{
    font-size:13px;
  }

  .mx-inputWrap .form-control{
    padding-left:39px !important;
  }

  .mx-passToggle{
    width:30px;
    height:30px;
    right:8px;
  }

  .mx-inputWrap.has-toggle .form-control{
    padding-right:38px !important;
  }
}

.auth-tabs .btn{
  transition:all .18s ease;
}

.auth-tabs .btn:hover{
  transform:translateY(-1px);
}

.auth-tabs .btn.btn-outline-secondary{
  background:transparent;
  color:#475569;
}

.auth-tabs .btn.btn-primary{
  background:linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color:#fff;
}

.mx-authLeftPremium{
  position:relative;
  min-height:100%;
  padding:30px 26px;
  border-top-left-radius:28px;
  border-bottom-left-radius:28px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:22px;
  background:
  radial-gradient(320px 140px at 0% 0%, rgba(255,255,255,.10), transparent 58%),
  radial-gradient(260px 120px at 100% 100%, rgba(255,255,255,.08), transparent 58%),
  linear-gradient(135deg, #0b1220 0%, #15357a 52%, #1d4ed8 100%);
}

.mx-authLeftPremium::before{
  content:"";
  position:absolute;
  right:-55px;
  top:-55px;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.12), transparent 62%);
  pointer-events:none;
}

.mx-authLeftPremium::after{
  content:"";
  position:absolute;
  left:-70px;
  bottom:-70px;
  width:240px;
  height:240px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.08), transparent 62%);
  pointer-events:none;
}

.mx-authLeftTop,
.mx-authLeftCards,
.mx-authLeftBottom{
  position:relative;
  z-index:2;
}

.mx-authLeftBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:11px;
  font-weight:1100;
  backdrop-filter:blur(10px);
  margin-bottom:18px;
}

.mx-authLeftLogoWrap{
  display:grid;
  gap:16px;
}

.mx-authLeftLogo{
  width:62px;
  height:62px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 16px 30px rgba(0,0,0,.14);
}

.mx-authLeftLogo i{
  font-size:24px;
  color:#fff;
}

.mx-authLeftKicker{
  font-size:11px;
  line-height:1;
  letter-spacing:.3px;
  text-transform:uppercase;
  font-weight:1100;
  color:rgba(255,255,255,.76);
  margin-bottom:10px;
}

.mx-authLeftTitle{
  margin:0 0 12px;
  font-size:25px;
  line-height:1.06;
  letter-spacing:-.8px;
  font-weight:1100;
  color:#fff;
  max-width:50ch;
}

.mx-authLeftText{
  margin:0;
  max-width:40ch;
  font-size:13px;
  line-height:1.56;
  font-weight:900;
  color:rgba(255,255,255,.82);
}

.mx-authLeftCards{
  display:grid;
  gap:12px;
}

.mx-authLeftCard{
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  gap:12px;
  align-items:start;
  padding:14px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.10);
  box-shadow:0 14px 28px rgba(0,0,0,.10);
  backdrop-filter:blur(10px);
}

.mx-authLeftCardIcon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.mx-authLeftCardIcon i{
  font-size:18px;
  line-height:1;
}

.mx-authLeftCardTitle{
  font-size:13.5px;
  line-height:1.2;
  font-weight:1100;
  color:#fff;
  margin-bottom:5px;
}

.mx-authLeftCardText{
  font-size:11.2px;
  line-height:1.48;
  font-weight:900;
  color:rgba(255,255,255,.78);
}

.mx-authLeftBottom{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}

.mx-authLeftMini{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.10);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  backdrop-filter:blur(10px);
}

.mx-authLeftMini i{
  font-size:15px;
  line-height:1;
  color:#fff;
  flex:0 0 auto;
}

.mx-authLeftMini strong{
  display:block;
  font-size:13px;
  line-height:1;
  font-weight:1100;
  color:#fff;
}

.mx-authLeftMini span{
  display:block;
  margin-top:4px;
  font-size:9.8px;
  line-height:1.2;
  font-weight:1000;
  color:rgba(255,255,255,.76);
}

.mx-authLeftTitle,
.mx-authLeftCardTitle,
.mx-authLeftMini strong{
  letter-spacing:-.3px;
}

.mx-authLeftBadgeRow{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.mx-authLeftBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:11px;
  font-weight:1100;
  backdrop-filter:blur(10px);
}

.mx-authLeftBadge.ghost{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.12);
}

.mx-authHeadText{
  min-width:0;
}

.mx-authHeadKicker{
  font-size:10px;
  line-height:1;
  letter-spacing:.2px;
  font-weight:1100;
  color:var(--mx-auth-muted);
  margin-bottom:4px;
}

.mx-authHeadTitle{
  font-size:26px;
  line-height:1.04;
  letter-spacing:-.5px;
  font-weight:1100;
  color:var(--mx-auth-ink);
  margin-bottom:4px !important;
}

.mx-authHeadSub{
  font-size:11.2px;
  line-height:1.4;
  font-weight:900;
  color:var(--mx-auth-muted);
  max-width:34ch;
}

.mx-loginMiniNote{
  font-size:10.6px;
  line-height:1.35;
  font-weight:900;
  color:var(--mx-auth-muted);
}

@media (max-width:575.98px){
  .mx-authHeadKicker{
    font-size:9px;
    margin-bottom:3px;
  }

  .mx-authHeadTitle{
    font-size:11px;
    line-height:1.03;
    margin-bottom:3px !important;
  }

  .mx-authHeadSub{
    font-size:9.8px;
    line-height:1.32;
    max-width:none;
  }

  .mx-loginMiniNote{
    font-size:9.5px;
    line-height:1.28;
  }
}

.mx-authCard{
  background:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition:all .25s ease;
}

/* masaüstü biraz daha güçlü */
@media (min-width:992px){
  .mx-authCard{
    box-shadow:0 28px 70px rgba(0,0,0,.12);
  }
}

/* mobilde en önemli ayar */
@media (max-width:575.98px){

  .container.py-4.py-lg-5{
    padding-top:12px !important;
    padding-bottom:18px !important;
  }

  .mx-authCard{
    border-radius:22px !important;
    box-shadow:0 14px 30px rgba(0,0,0,.10);
    margin-top:10px;
  }

}

@media (max-width:575.98px){

  body{
    background:#f6f8fb;
  }

  .mx-authCard{
    border:1px solid rgba(0,0,0,.04);
  }

}

.mx-submitBtn{
  position:relative;
  overflow:hidden;
  transition:transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.mx-submitBtn:hover{
  transform:translateY(-1px);
}

.mx-submitBtn.is-loading{
  pointer-events:none;
  opacity:.92;
}

.mx-submitBtn.is-loading .mx-submitBtnText{
  opacity:0;
}

.mx-submitBtn.is-loading::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:18px;
  height:18px;
  margin-left:-9px;
  margin-top:-9px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.35);
  border-top-color:#fff;
  animation:mxSpin .7s linear infinite;
}

@keyframes mxSpin{
  to{ transform:rotate(360deg); }
}

@keyframes mxShake{
  0%,100%{ transform:translateX(0); }
  20%{ transform:translateX(-4px); }
  40%{ transform:translateX(4px); }
  60%{ transform:translateX(-3px); }
  80%{ transform:translateX(3px); }
}

.mx-authShake{
  animation:mxShake .34s ease;
}

.mx-inputWrap{
  transition:transform .16s ease;
}

.mx-inputWrap .form-control{
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.mx-inputWrap .form-control:focus{
  border-color:rgba(37,99,235,.34) !important;
  box-shadow:
  0 0 0 .24rem rgba(37,99,235,.12),
  0 8px 24px rgba(37,99,235,.08) !important;
  background:#fff !important;
}

.mx-inputWrap.is-valid .form-control{
  border-color:rgba(22,163,74,.30) !important;
  box-shadow:0 0 0 .18rem rgba(22,163,74,.10);
}

.mx-inputWrap.is-invalid .form-control{
  border-color:rgba(220,38,38,.30) !important;
  box-shadow:0 0 0 .18rem rgba(220,38,38,.10);
}

.mx-fieldHint{
  margin-top:6px;
  font-size:10.5px;
  line-height:1.35;
  font-weight:1000;
  display:none;
}

.mx-fieldHint.is-show{
  display:block;
}

.mx-fieldHint.is-error{
  color:#b91c1c;
}

.mx-fieldHint.is-ok{
  color:#166534;
}

@media (max-width:575.98px){
  .mx-fieldHint{
    font-size:9.6px;
  }
}

.mx-submitBtnText i{
  font-size:15px;
  line-height:1;
  transition:transform .18s ease;
}

/* hover efekti */
.mx-submitBtn:hover .mx-submitBtnText i{
  transform:translateX(2px);
}

/* loading sırasında ikon kaybolsun */
.mx-submitBtn.is-loading .mx-submitBtnText i{
  opacity:0;
}

.mx-submitBtn{
  box-shadow:0 10px 22px rgba(37,99,235,.18);
}

.mx-submitBtn:hover{
  box-shadow:0 14px 30px rgba(37,99,235,.26);
}

/* Offcanvas / drawer katman düzeltmesi */
#mxCartDrawer,
#pmxMobileMenu,
.my-mobile-menu,
.pmx-mobile-offcanvas,
.offcanvas,
.offcanvas.show {
  z-index: 1060 !important;
}

.offcanvas-backdrop,
.offcanvas-backdrop.show {
  z-index: 1050 !important;
}

#live-toast-wrap{
  position:fixed;
  bottom:20px;
  left:20px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.live-toast{
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(15,23,42,.92);
  color:#fff;
  padding:10px 14px;
  border-radius:14px;
  font-size:13px;
  font-weight:600;
  opacity:0;
  transform:translateY(10px);
  transition:.3s;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.live-toast.show{
  opacity:1;
  transform:translateY(0);
}

.live-toast-icon{
  font-size:14px;
}

/* =========================================================
CSX NAVBAR – FINAL CONSOLIDATED V6
Bu bloğu app.css içinde eski CSX navbar bloklarının YERİNE kullan.
========================================================= */

:root{
  --csx-blue:#0b4ea2;
  --csx-blue-2:#2b7de3;
  --csx-green:#39a935;
  --csx-green-dark:#2d8f2a;
  --csx-text:#1f2937;
  --csx-muted:#6b7280;
  --csx-line:rgba(17,24,39,.10);
  --csx-top:#dcefdc;
}

/* HEADER */
.csx-header{
  position:sticky;
  top:0;
  z-index:1300;
  background:#fff;
  border-bottom:1px solid rgba(17,24,39,.06);
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}
.csx-shell{
  width:min(100%, calc(100% - 22px));
  margin:0 auto;
}

/* DESKTOP TOP */
.csx-topbar{
  background:var(--csx-top);
  border-bottom:1px solid rgba(57,169,53,.10);
}
.csx-topbar .csx-shell{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.csx-topbar-left,
.csx-topbar-right{
  display:flex;
  align-items:center;
  gap:12px;
}
.csx-topbar-right a{
  color:#4b5563;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
}
.csx-top-tab{
  min-width:130px;
  min-height:50px;
  border-radius:5px 5px 5px 5px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#4b5563;
  padding:6px 12px 4px;
}
.csx-top-tab strong{
  font-size:13px;
  line-height:1;
  font-weight:1000;
  text-transform:lowercase;
}
.csx-top-tab small{
  margin-top:4px;
  font-size:10px;
  line-height:1.1;
  color:#6b7280;
  font-weight:700;
}
.csx-top-tab.is-active strong{ color:var(--csx-blue); }

/* DESKTOP MAIN */
.csx-mainbar{ background:#fff; }
.csx-mainrow{
  display:grid;
  grid-template-columns:minmax(220px,260px) minmax(360px,1fr) auto;
  align-items:center;
  gap:18px;
  min-height:74px;
  padding:10px 0;
}
.csx-brand{
  display:flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  color:var(--csx-text);
  min-width:0;
}
.csx-brand-mark{
  width:46px;
  height:46px;
  border-radius:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--csx-blue), var(--csx-blue-2));
  color:#fff;
  box-shadow:0 12px 24px rgba(11,78,162,.18);
}
.csx-brand-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.csx-brand-copy strong{
  font-size:17px;
  line-height:1;
  font-weight:1000;
  color:#0f172a;
  text-transform:lowercase;
}
.csx-brand-copy small{
  margin-top:4px;
  font-size:10.5px;
  font-weight:700;
  color:var(--csx-muted);
}

.csx-search-col{ min-width:0; }
.csx-search-box{
  position:relative;
  min-width:0;
}
.csx-search-input{
  width:100%;
  height:44px;
  border:1px solid rgba(17,24,39,.30);
  border-radius:10px;
  background:#fff;
  padding:0 60px 0 16px;
  font-size:13px;
  font-weight:700;
  color:#111827;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease;
}
.csx-search-input:focus{
  border-color:var(--csx-blue);
  box-shadow:0 0 0 4px rgba(11,78,162,.08);
}
.csx-search-icon{ display:none; }
.csx-search-btn{
  position:absolute;
  top:1px;
  right:1px;
  width:50px;
  height:42px;
  border:0;
  border-radius:0 9px 9px 0;
  background:linear-gradient(135deg,var(--csx-green),var(--csx-green-dark));
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:none;
}
.csx-search-btn i{ font-size:20px; }

.csx-search-panel{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
  background:#fff;
  border:1px solid var(--csx-line);
  border-radius:18px;
  box-shadow:0 20px 40px rgba(15,23,42,.12);
  padding:12px;
  z-index:30;
}
.csx-search-grid{
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:12px;
}
.csx-search-colbox{
  border:1px solid rgba(17,24,39,.06);
  border-radius:14px;
  padding:10px;
  background:#fff;
}
.csx-search-title{
  font-size:10.5px;
  font-weight:1000;
  color:#6b7280;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}
.csx-search-list{
  display:grid;
  gap:7px;
}
.csx-search-item{
  width:100%;
  min-height:42px;
  border:1px solid rgba(17,24,39,.06);
  border-radius:12px;
  background:#fff;
  color:#111827;
  display:flex;
  align-items:center;
  gap:9px;
  padding:8px 10px;
  text-align:left;
  font-size:12px;
  font-weight:800;
}
.csx-search-item i{
  width:28px;
  height:28px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(11,78,162,.10);
  color:var(--csx-blue);
  flex:0 0 auto;
}
.csx-chip-list{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.csx-chip{
  min-height:30px;
  border-radius:999px;
  border:1px solid rgba(17,24,39,.08);
  background:#fff;
  color:#374151;
  padding:0 10px;
  font-size:11px;
  font-weight:800;
}

.csx-actions{
  display:flex;
  align-items:center;
  gap:16px;
}
.csx-link-action{
  text-decoration:none;
  color:#374151;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  position:relative;
}
.csx-link-action i{
  font-size:18px;
  color:#111827;
}
.csx-inline-badge{
  position:absolute;
  top:-7px;
  right:-10px;
  min-width:18px;
  height:18px;
  border-radius:999px;
  background:#ffb400;
  color:#111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-style:normal;
  font-weight:1000;
}
.csx-cart-btn{
  position:relative;
  min-height:42px;
  padding:0 16px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--csx-green),var(--csx-green-dark));
  color:#fff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:900;
}
.csx-cart-btn i{ font-size:18px; }
.csx-cart-badge,
.csx-mini-badge,
.csx-mobile-line-badge{
  background:#ff6a00;
  color:#fff;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  font-style:normal;
}
.csx-cart-badge{
  position:absolute;
  top:-7px;
  right:-7px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  font-size:10px;
}

/* HIDE OLD CATEGORY STRIPS */
.csx-cats,
.csx-mobile-cats{
  display:none !important;
}

/* MOBILE COMMON */
.csx-mobile-top{ display:none; }

.csx-mobile-menu,
.csx-mobile-cart{
  border:0;
  color:#111827;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  text-decoration:none;
}

.csx-mobile-menu{
  background:transparent;
  border-radius:0;
}
.csx-mobile-cart{
  background:linear-gradient(135deg,var(--csx-green),var(--csx-green-dark));
  color:#fff;
  border-radius:13px;
}

.csx-mobile-tabs{
  min-width:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:end;
}

.csx-mobile-tab{
  text-decoration:none;
  color:#374151;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:#fff;
  box-shadow:none;
  border:0;
}
.csx-mobile-tab strong{
  text-transform:lowercase;
  font-weight:1000;
  text-align:center;
}
.csx-mobile-tab small{
  color:#6b7280;
  font-weight:700;
  text-align:center;
}
.csx-mobile-tab.is-active strong{ color:var(--csx-blue); }

.csx-mobile-search-wrap{
  background:#fff;
}
.csx-mobile-search-box{
  position:relative;
}
.csx-mobile-search-box input{
  width:100%;
  background:#fff;
  outline:none;
  box-shadow:none;
}
.csx-mobile-search-box > i{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  color:#5b6472;
  opacity:.92;
}
.csx-mobile-search-box button{
  position:absolute;
  border:0;
  background:linear-gradient(135deg,var(--csx-green),var(--csx-green-dark));
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  outline:none;
  box-shadow:none;
}
.csx-mobile-search-box button,
.csx-mobile-search-box button:focus,
.csx-mobile-search-box button:active{
  border:none !important;
}
.csx-mobile-offcanvas{
  width:min(86vw, 390px) !important;
  border-top-right-radius:22px;
  border-bottom-right-radius:22px;
  z-index:2005 !important;
}
.offcanvas-backdrop{
  z-index:2000 !important;
}
.csx-mobile-brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.csx-mobile-brand-mark{
  width:36px;
  height:36px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--csx-blue), var(--csx-blue-2));
  color:#fff;
}
.csx-mobile-brand strong{
  display:block;
  font-size:15px;
  line-height:1;
  font-weight:1000;
  color:#0f172a;
}
.csx-mobile-brand small{
  display:block;
  margin-top:4px;
  font-size:10px;
  color:#6b7280;
  font-weight:700;
}
.csx-mobile-drawer-search{
  position:relative;
  margin-bottom:16px;
}
.csx-mobile-drawer-search i{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#4b5563;
}
.csx-mobile-drawer-search input{
  width:100%;
  height:44px;
  border:1px solid rgba(17,24,39,.22);
  border-radius:10px;
  padding:0 72px 0 38px;
  font-size:12px;
  font-weight:700;
  outline:none;
}
.csx-mobile-drawer-search button{
  position:absolute;
  top:2px;
  right:2px;
  height:40px;
  min-width:54px;
  border:0;
  border-radius:0 8px 8px 0;
  background:var(--csx-green);
  color:#fff;
  font-size:10.8px;
  font-weight:900;
}
.csx-mobile-group{ margin-top:16px; }
.csx-mobile-label{
  margin-bottom:10px;
  font-size:10.5px;
  font-weight:1000;
  color:#6b7280;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.csx-mobile-group a,
.csx-mobile-logout{
  width:100%;
  min-height:46px;
  border:1px solid rgba(17,24,39,.08);
  border-radius:13px;
  background:#fff;
  color:#111827;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 13px;
  margin-bottom:8px;
  font-size:12px;
  font-weight:800;
}
.csx-mobile-group a i,
.csx-mobile-logout i{
  width:28px;
  height:28px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eef4fc;
  color:var(--csx-blue);
}
.csx-mobile-line-badge{
  margin-left:auto;
  min-width:18px;
  height:18px;
  padding:0 5px;
  font-size:10px;
}
.csx-mobile-logout{
  appearance:none;
  cursor:pointer;
}

/* MOBILE LAYOUT – FINAL */
@media (max-width: 991.98px){
  .csx-topbar,
  .csx-topbar-left,
  .csx-topbar-right{
    display:none !important;
  }

  .csx-mainrow{ display:none; }

  .csx-mainbar{
    background:var(--csx-top) !important;
  }

  .csx-shell{
    width:100% !important;
    margin:0 !important;
    padding:0 0 6px 0 !important;
  }

  .csx-mobile-top{
    display:grid !important;
    grid-template-columns:48px minmax(0,1fr) 58px;
    gap:10px;
    min-height:82px;
    padding:0 10px 0 0;
    align-items:end;
    background:var(--csx-top);
  }

  .csx-mobile-menu{
    width:48px;
    height:82px;
    align-self:stretch;
    justify-self:start;
  }
  .csx-mobile-menu i{
    font-size:28px;
    line-height:1;
    color:#111827;
  }

  .csx-mobile-tabs{
    gap:10px;
    width:100%;
    padding-top:4px;
  }

  .csx-mobile-tab{
    min-height:56px;
    padding:10px 10px 8px;
    margin:0;
  }

  .csx-mobile-tab.is-active{
    min-height:62px;
    margin-top:8px;
    border-radius:18px 18px 0 0;
  }

  .csx-mobile-tab:not(.is-active){
    min-height:56px;
    margin-top:8px;
    margin-bottom:6px;
    border-radius:16px;
    /* çok hafif 3D hissi */
    box-shadow:0 1px 0 rgba(255,255,255,.9) inset, 0 2px 6px rgba(15,23,42,.05);
  }

  .csx-mobile-tab strong{
    font-size:13.8px;
    line-height:1.03;
  }

  .csx-mobile-tab small{
    margin-top:4px;
    font-size:9.5px;
    line-height:1.08;
  }

  .csx-mobile-cart{
    width:56px;
    height:56px;
    margin-left:20px;   /* fırsat&ekstra ile eşit boşluk */
    margin-bottom:6px;
    align-self:end;
    justify-self:end;
  }

  .csx-mobile-cart i{
    font-size:22px;
    line-height:1;
  }

  /* adet rozeti ikonun sol üstünde */
  .csx-mini-badge{
    top:-5px;
    left:-5px;
    right:auto;
    min-width:16px;
    height:16px;
    padding:0 5px;
    font-size:8.5px;
  }

  .csx-mobile-search-wrap{
    padding:8px 10px 0 10px; /* sitenin iç boşluğu */
    background:#fff;
  }

  .csx-mobile-search-box input{
    width:100%;
    height:42px;
    border:1px solid rgba(17,24,39,.26);
    border-radius:10px;
    padding:0 58px 0 40px;
    font-size:12.4px;
    line-height:42px;
    font-weight:700;
    color:#111827;
    background:#fff;
  }

  .csx-mobile-search-box input::placeholder{
    color:#a0a4ac;
    font-weight:700;
  }

  /* sol ikon geri geldi */
  .csx-mobile-search-box > i{
    display:block !important;
    left:13px;
    font-size:14px;
    color:#5b6472;
    opacity:.92;
  }

  .csx-mobile-search-box button{
    top:1px;
    right:1px;
    width:52px;
    height:40px;
    border-radius:0 9px 9px 0;
  }

  .csx-mobile-search-box button i{
    font-size:20px;
    color:#fff;
  }
}

@media (max-width: 575.98px){
  .csx-mobile-top{
    grid-template-columns:44px minmax(0,1fr) 54px;
    gap:8px;
    min-height:76px;
    padding-right:10px;
  }

  .csx-mobile-menu{
    width:44px;
    height:76px;
  }

  .csx-mobile-menu i{
    font-size:26px;
  }

  .csx-mobile-tab.is-active{
    min-height:58px;
    margin-top:6px;
    border-radius:16px 16px 0 0;
  }

  .csx-mobile-tab:not(.is-active){
    min-height:54px;
    margin-top:6px;
    margin-bottom:5px;
    border-radius:14px;
  }

  .csx-mobile-tab strong{ font-size:13.4px; }
  .csx-mobile-tab small{ font-size:9.2px; }

  .csx-mobile-cart{
    width:52px;
    height:52px;
    margin-bottom:5px;
    margin-left:20px;
    border-radius:12px;
  }

  .csx-mobile-cart i{
    font-size:21px;
  }

  .csx-mobile-search-wrap{
    padding:8px 10px 0 10px;
  }

  .csx-mobile-search-box input{
    height:40px;
    border-radius:10px;
    padding-left:38px;
    padding-right:56px;
    font-size:12px;
  }

  .csx-mobile-search-box > i{
    left:12px;
    font-size:14px;
  }

  .csx-mobile-search-box button{
    width:50px;
    height:38px;
    border-radius:0 9px 9px 0;
  }

  .csx-mobile-search-box button i{
    font-size:18px;
  }
}

/* =========================
CSX MENU Z-INDEX HARD FIX
========================= */

/* header altta kalsın */
.csx-header{
  z-index: 1200 !important;
}

/* mobil sol menü en üste çıksın */
#csxMobileMenu.offcanvas,
.csx-mobile-offcanvas.offcanvas{
  z-index: 3005 !important;
}

/* sepet drawer da üstte kalsın */
#mxCartDrawer.offcanvas{
  z-index: 3006 !important;
}

/* backdrop navbar ve bottombar üstüne gelsin */
.offcanvas-backdrop,
.offcanvas-backdrop.show{
  z-index: 3000 !important;
}

/* alt sabit menü ve alt buybar altta kalsın */
.mx-bottombar,
.pd-buybar,
.bottom-fixed-bar,
[class*="bottombar"],
[class*="buybar"]{
  z-index: 1100 !important;
}

/* =========================
NAVBAR HEIGHT REDUCE - FINAL
========================= */

/* DESKTOP MAIN BAR */
.csx-mainrow{
  min-height:64px !important; /* önce 74'tü */
  padding:6px 0 !important;
}

/* LOGO BLOĞU */
.csx-brand-mark{
  width:42px !important;
  height:42px !important;
}

/* SEARCH */
.csx-search-input{
  height:40px !important;
}

.csx-search-btn{
  height:38px !important;
}

/* ACTION BUTTONLAR */
.csx-cart-btn{
  min-height:38px !important;
  padding:0 14px !important;
}

/* =========================
MOBİL NAVBAR
========================= */

/* ÜST BLOK */
.csx-mobile-top{
  min-height:72px !important; /* önce ~82 */
}

/* HAMBURGER */
.csx-mobile-menu{
  height:72px !important;
}

/* SEPET */
.csx-mobile-cart{
  width:50px !important;
  height:50px !important;
}

/* TAB BUTONLAR */
.csx-mobile-tab{
  min-height:52px !important;
}

.csx-mobile-tab.is-active{
  min-height:56px !important;
}

.csx-mobile-search-box input{
  height:38px !important;
}

.csx-mobile-search-box button{
  height:36px !important;
}
.csx-header{
  box-shadow:0 6px 16px rgba(15,23,42,.06) !important;
}

.csx-mobile-tab .tab-flex{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:100%;
}

.csx-mobile-tab .tab-ico{
  flex:0 0 auto;
  font-size:15px;
  line-height:1;
  color:#5f6b7a;
}

.csx-mobile-tab .tab-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  min-width:0;
  line-height:1.05;
}

.csx-mobile-tab strong{
  font-size:13.6px;
  line-height:1.02;
  font-weight:900;
  margin:0;
}

.csx-mobile-tab small{
  margin-top:2px;
  font-size:9.2px;
  line-height:1.05;
  color:#6b7280;
}

.csx-mobile-tab.is-active .tab-ico{
  color:var(--csx-blue);
}

/* =========================================================
SITE WIDTH RESET — FULL WIDTH'TEN SABİT CONTAINER'A DÖNÜŞ
========================================================= */

.mx-wrap,
.mx-grid,
.pmx-wrap{
  width: 100% !important;
  max-width: 1520px !important;
  margin: 0 auto !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  box-sizing: border-box !important;
}

.mx-grid{
  display:grid !important;
  grid-template-columns: 280px 1fr 330px !important;
  gap: 12px !important;
  align-items:start !important;
}

@media (max-width: 1199.98px){
  .mx-grid{
    grid-template-columns: 260px 1fr !important;
  }
}

@media (max-width: 991.98px){
  .mx-grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 575.98px){
  .mx-wrap,
  .mx-grid,
  .pmx-wrap{
    max-width: 100% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

/* =========================================================
GLOBAL CONTAINER RESET
Siteyi full-width'ten sabit container yapıya döndürür
========================================================= */

.mx-wrap,
.mx-grid,
.pmx-wrap,
.csx-shell{
  width: 100% !important;
  max-width: 1520px !important;
  margin: 0 auto !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  box-sizing: border-box !important;
}

/* mx-grid kendi kolon yapısını korusun */
.mx-grid{
  display: grid !important;
  grid-template-columns: 280px 1fr 330px !important;
  gap: 12px !important;
  align-items: start !important;
}

@media (max-width: 575.98px){
  .mx-wrap,
  .mx-grid,
  .pmx-wrap,
  .csx-shell{
    max-width: 100% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

/* =========================================================
CSX DESKTOP PREMIUM REBUILD
========================================================= */

/* üst yeşil alan */
.csx-topbar{
  min-height:65px !important;
  background:var(--csx-top) !important;
  border-bottom:1px solid rgba(11,78,162,.08) !important;
}

.csx-topbar .csx-shell{
  min-height:65px !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:space-between !important;
  gap:16px !important;
  padding-top:10px !important;
  padding-bottom:0 !important;
}

.csx-topbar-left{
  display:flex !important;
  align-items:flex-end !important;
  gap:12px !important;
}

.csx-topbar-right{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  padding-bottom:10px !important;
}

.csx-topbar-right a{
  min-height:36px !important;
  padding:0 12px !important;
  border-radius:12px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  color:#334155 !important;
  text-decoration:none !important;
  font-size:12.5px !important;
  font-weight:800 !important;
  background:rgba(255,255,255,.58) !important;
  border:1px solid rgba(11,78,162,.08) !important;
}

.csx-topbar-right a i{
  font-size:14px !important;
  color:var(--csx-blue) !important;
}

.csx-topbar-right a:hover{
  background:#fff !important;
  box-shadow:0 10px 24px rgba(11,78,162,.08) !important;
}

/* üst sekmeler */
.csx-top-tab{
  min-width:168px !important;
  min-height:54px !important;
  margin-top:10px !important;
  margin-bottom:0 !important;
  padding:10px 14px 10px !important;
  border-radius:16px 16px 0 0 !important;
  background:#ffffff !important;
  border:1px solid rgba(11,78,162,.08) !important;
  border-bottom-color:#ffffff !important;
  box-shadow:0 10px 24px rgba(11,78,162,.06) !important;
  color:#334155 !important;
}

.csx-top-tab.is-active{
  position:relative !important;
  top:1px !important;
}

.csx-top-tab-row{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  width:100% !important;
}

.csx-top-tab-row i{
  flex:0 0 auto !important;
  font-size:17px !important;
  color:var(--csx-blue) !important;
}

.csx-top-tab-row .txt{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  line-height:1.04 !important;
}

.csx-top-tab strong{
  font-size:13.8px !important;
  line-height:1.02 !important;
  font-weight:1000 !important;
  text-transform:none !important;
  margin:0 !important;
}

.csx-top-tab small{
  margin-top:3px !important;
  font-size:10.2px !important;
  line-height:1.08 !important;
  color:#64748b !important;
  font-weight:700 !important;
}

/* alt beyaz navbar alanı */
.csx-mainbar{
  background:#fff !important;
}

.csx-mainrow{
  min-height:65px !important;
  padding:12px 0 !important;
  grid-template-columns:minmax(220px,260px) minmax(420px,1fr) auto !important;
  gap:18px !important;
  align-items:center !important;
}

/* logo */
.csx-brand{
  gap:12px !important;
}

.csx-brand-mark{
  width:46px !important;
  height:46px !important;
  border-radius:16px !important;
}

.csx-brand-copy strong{
  font-size:17px !important;
  line-height:1 !important;
}

.csx-brand-copy small{
  margin-top:4px !important;
  font-size:10.6px !important;
}

/* search desktop biraz büyük kalsın */
.csx-search-input{
  height:46px !important;
  border-radius:12px !important;
  padding:0 64px 0 16px !important;
  font-size:13.4px !important;
  font-weight:800 !important;
}

.csx-search-btn{
  top:2px !important;
  right:2px !important;
  width:52px !important;
  height:42px !important;
  border-radius:0 10px 10px 0 !important;
}

/* sağ action alanları büyük ve premium */
.csx-actions{
  gap:14px !important;
}

.csx-link-action{
  min-height:46px !important;
  padding:0 2px !important;
  gap:9px !important;
  font-size:13.5px !important;
  font-weight:900 !important;
  color:#334155 !important;
}

.csx-link-action i{
  font-size:20px !important;
  color:var(--csx-blue) !important;
}

.csx-cart-btn{
  min-height:46px !important;
  padding:0 16px !important;
  border-radius:12px !important;
  font-size:13.5px !important;
}

.csx-cart-btn i{
  font-size:19px !important;
}

/* üyelik dropdown */
.csx-account-dd{
  position:relative !important;
}

.csx-link-action-account{
  padding-right:4px !important;
}

.csx-dd-caret{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-style:normal !important;
}

.csx-dd-caret i{
  font-size:12px !important;
  color:#64748b !important;
}

.csx-account-menu{
  position:absolute !important;
  top:calc(100% + 10px) !important;
  right:0 !important;
  min-width:220px !important;
  background:#fff !important;
  border:1px solid rgba(17,24,39,.08) !important;
  border-radius:16px !important;
  box-shadow:0 18px 40px rgba(15,23,42,.12) !important;
  padding:8px !important;
  display:none !important;
  z-index:3100 !important;
}

.csx-account-dd:hover .csx-account-menu{
  display:block !important;
}

.csx-account-menu a,
.csx-account-menu button{
  width:100% !important;
  min-height:42px !important;
  padding:0 12px !important;
  border:0 !important;
  border-radius:12px !important;
  background:#fff !important;
  color:#111827 !important;
  text-decoration:none !important;
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  font-size:12.8px !important;
  font-weight:800 !important;
}

.csx-account-menu a:hover,
.csx-account-menu button:hover{
  background:#f8fbff !important;
}

.csx-account-menu button{
  appearance:none !important;
  cursor:pointer !important;
}

.csx-account-menu i{
  width:18px !important;
  text-align:center !important;
  color:var(--csx-blue) !important;
}

/* mobil search biraz yüksek olsun */
@media (max-width: 991.98px){
  .csx-mobile-search-box input{
    height:44px !important;
    line-height:44px !important;
  }

  .csx-mobile-search-box button{
    height:42px !important;
  }
}

@media (max-width: 575.98px){
  .csx-mobile-search-box input{
    height:42px !important;
    line-height:42px !important;
  }

  .csx-mobile-search-box button{
    height:40px !important;
  }
}

/* =========================================================
CSX DESKTOP NAVBAR FINAL PATCH
Masaüstü için daha büyük, daha güçlü, daha premium yapı
========================================================= */

@media (min-width: 992px){

  /* ÜST YEŞİL ALAN */
  .csx-topbar{
    min-height: 65px !important;
  }

  .csx-topbar .csx-shell{
    min-height: 65px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:16px !important;
    padding-top:10px !important;
    padding-bottom:10px !important;
  }

  /* ÜST SOL BUTONLAR */
  .csx-topbar-left{
    display:flex !important;
    align-items:center !important;
    gap:12px !important;
  }

  .csx-top-tab{
    min-width: 180px !important;
    min-height: 50px !important;
    padding: 8px 14px !important;
    margin: 0 !important;
    border-radius: 14px !important;   /* tüm kenarlar radius */
    border: 1px solid rgba(11,78,162,.10) !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(11,78,162,.06) !important;
  }

  /* Medikal aktif ama alt alana yapışık değil */
  .csx-top-tab.is-active{
    top: 0 !important;
    position: relative !important;
  }

  .csx-top-tab-row{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:10px !important;
    width:100% !important;
  }

  .csx-top-tab-row i{
    font-size:18px !important;
    color:var(--csx-blue) !important;
    flex:0 0 auto !important;
  }

  .csx-top-tab-row .txt{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;
    line-height:1.05 !important;
  }

  .csx-top-tab strong{
    font-size:14px !important;
    line-height:1.02 !important;
    font-weight:1000 !important;
    text-transform:none !important;
    margin:0 !important;
  }

  .csx-top-tab small{
    margin-top:3px !important;
    font-size:10.4px !important;
    line-height:1.08 !important;
    color:#64748b !important;
    font-weight:700 !important;
  }

  /* ÜST SAĞ BUTONLAR */
  .csx-topbar-right{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
  }

  .csx-topbar-right a{
    min-height: 40px !important;
    padding: 0 14px !important;
    border-radius: 12px !important;
    display:inline-flex !important;
    align-items:center !important;
    gap:8px !important;
    font-size:13px !important;
    font-weight:800 !important;
    color:#334155 !important;
    background:rgba(255,255,255,.68) !important;
    border:1px solid rgba(11,78,162,.08) !important;
    text-decoration:none !important;
  }

  .csx-topbar-right a i{
    font-size:15px !important;
    color:var(--csx-blue) !important;
  }

  /* ANA BEYAZ ALAN */
  .csx-mainbar{
    background:#fff !important;
  }

  .csx-mainbar .csx-shell{
    min-height: 85px !important;   /* senin istediğin */
    display:flex !important;
    align-items:center !important;
  }

  .csx-mainrow{
    width:100% !important;
    min-height: 85px !important;
    padding: 10px 0 !important;
    display:grid !important;
    grid-template-columns:minmax(220px,260px) minmax(420px,1fr) auto !important;
    gap:18px !important;
    align-items:center !important;
  }

  /* LOGO */
  .csx-brand{
    gap:12px !important;
  }

  .csx-brand-mark{
    width:48px !important;
    height:48px !important;
    border-radius:16px !important;
  }

  .csx-brand-copy strong{
    font-size:17px !important;
    line-height:1 !important;
  }

  .csx-brand-copy small{
    margin-top:4px !important;
    font-size:10.6px !important;
    font-weight:700 !important;
  }

  /* SEARCH ALANI */
  .csx-search-input{
    height: 52px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(17,24,39,.20) !important;
    padding: 0 68px 0 18px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important; /* kalınlığı yumuşattık */
    color:#111827 !important;
  }

  .csx-search-input::placeholder{
    font-size:13.2px !important;
    font-weight:600 !important;
    color:#8b97a8 !important;
    letter-spacing:.01em !important;
  }

  .csx-search-btn{
    top: 2px !important;
    right: 2px !important;
    width: 56px !important;
    height: 48px !important;
    border-radius: 0 12px 12px 0 !important;
  }

  .csx-search-btn i{
    font-size:20px !important;
  }

  /* SAĞ AKSİYONLAR */
  .csx-actions{
    display:flex !important;
    align-items:center !important;
    gap:16px !important;
  }

  .csx-link-action{
    min-height: 52px !important;
    padding: 0 4px !important;
    display:inline-flex !important;
    align-items:center !important;
    gap:10px !important;
    font-size:14px !important;
    font-weight:900 !important;
    color:#334155 !important;
  }

  .csx-link-action i{
    font-size:22px !important;
    color:var(--csx-blue) !important;
  }

  .csx-cart-btn{
    min-height: 52px !important;
    padding: 0 18px !important;
    border-radius: 14px !important;
    display:inline-flex !important;
    align-items:center !important;
    gap:10px !important;
    font-size:14px !important;
    font-weight:1000 !important;
  }

  .csx-cart-btn i{
    font-size:21px !important;
  }

  /* DROPDOWN KAPANMA SORUNU FIX */
  .csx-account-dd{
    position:relative !important;
    padding-bottom: 12px !important; /* hover köprüsü */
    margin-bottom: -12px !important;
  }

  .csx-account-menu{
    position:absolute !important;
    top:100% !important;           /* boşluk kaldırıldı */
    right:0 !important;
    margin-top: 0 !important;
    min-width:220px !important;
    background:#fff !important;
    border:1px solid rgba(17,24,39,.08) !important;
    border-radius:16px !important;
    box-shadow:0 18px 40px rgba(15,23,42,.12) !important;
    padding:8px !important;
    display:none !important;
    z-index:3100 !important;
  }

  /* hover köprüsü */
  .csx-account-dd::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:14px;
  }

  .csx-account-dd:hover .csx-account-menu,
  .csx-account-menu:hover{
    display:block !important;
  }

  .csx-account-menu a,
  .csx-account-menu button{
    width:100% !important;
    min-height:44px !important;
    padding:0 12px !important;
    border:0 !important;
    border-radius:12px !important;
    background:#fff !important;
    color:#111827 !important;
    text-decoration:none !important;
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    font-size:13px !important;
    font-weight:800 !important;
  }

  .csx-account-menu a:hover,
  .csx-account-menu button:hover{
    background:#f8fbff !important;
  }

  .csx-account-menu button{
    appearance:none !important;
    cursor:pointer !important;
  }

  .csx-account-menu i{
    width:18px !important;
    text-align:center !important;
    color:var(--csx-blue) !important;
  }
}

/* =========================================================
CSX DESKTOP TOPBAR POLISH FINAL
========================================================= */

@media (min-width: 992px){

  /* üst yeşil alan: katman/gölge hissi kalksın */
  .csx-topbar{
    min-height:65px !important;
    background:var(--csx-top) !important;
    border-bottom:0 !important;
    box-shadow:none !important;
  }

  .csx-topbar .csx-shell{
    min-height:65px !important;
    display:flex !important;
    align-items:flex-end !important;
    justify-content:space-between !important;
    gap:16px !important;
    padding-top:10px !important;
    padding-bottom:0 !important;
  }

  /* sol taraf mobil mantığına yakın */
  .csx-topbar-left{
    display:flex !important;
    align-items:flex-end !important;
    gap:12px !important;
  }

  /* Medikal butonu alt beyaz alana otursun */
  .csx-top-tab.is-active{
    min-width:176px !important;
    min-height:54px !important;
    padding:10px 14px 11px !important;
    margin:0 !important;
    border-radius:16px 16px 0 0 !important;
    background:#fff !important;
    border:1px solid rgba(11,78,162,.08) !important;
    border-bottom:0 !important;
    box-shadow:none !important;
    position:relative !important;
    top:1px !important;
    z-index:2 !important;
  }

  /* Fırsat ekstra: mobildeki ikinci kart mantığına yakın */
  .csx-top-tab:not(.is-active){
    min-width:176px !important;
    min-height:50px !important;
    padding:9px 14px !important;
    margin:0 0 8px 0 !important;
    border-radius:16px !important;
    background:#fff !important;
    border:1px solid rgba(11,78,162,.08) !important;
    box-shadow:none !important;
    position:relative !important;
    top:0 !important;
  }

  .csx-top-tab-row{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:10px !important;
    width:100% !important;
  }

  .csx-top-tab-row i{
    flex:0 0 auto !important;
    font-size:18px !important;
    color:var(--csx-blue) !important;
  }

  .csx-top-tab-row .txt{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    line-height:1.04 !important;
  }

  .csx-top-tab strong{
    font-size:14px !important;
    line-height:1.02 !important;
    font-weight:1000 !important;
    text-transform:none !important;
    margin:0 !important;
  }

  .csx-top-tab small{
    margin-top:3px !important;
    font-size:10.2px !important;
    line-height:1.08 !important;
    color:#64748b !important;
    font-weight:700 !important;
  }

  /* sağ linkler büyüsün ama gömülü, katman gibi olmasın */
  .csx-topbar-right{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    padding-bottom:8px !important;
  }

  .csx-topbar-right a{
    min-height:40px !important;
    padding:0 14px !important;
    border-radius:12px !important;
    display:inline-flex !important;
    align-items:center !important;
    gap:8px !important;
    color:#334155 !important;
    text-decoration:none !important;
    font-size:13px !important;
    font-weight:800 !important;
    background:rgba(255,255,255,.82) !important;
    border:1px solid rgba(11,78,162,.08) !important;
    box-shadow:none !important;
  }

  .csx-topbar-right a i{
    font-size:15px !important;
    color:var(--csx-blue) !important;
  }

  /* ana beyaz alan */
  .csx-mainbar .csx-shell{
    min-height:85px !important;
    display:flex !important;
    align-items:center !important;
  }

  .csx-mainrow{
    width:100% !important;
    min-height:85px !important;
    padding:10px 0 !important;
    display:grid !important;
    grid-template-columns:minmax(220px,260px) minmax(360px,1fr) auto !important;
    gap:18px !important;
    align-items:center !important;
  }

  /* search full değil 85% hissi */
  .csx-search-col{
    display:flex !important;
    justify-content:center !important;
  }

  .csx-search-box{
    width:85% !important;
    max-width:85% !important;
  }

  .csx-search-input{
    height:52px !important;
    border-radius:14px !important;
    padding:0 68px 0 18px !important;
    font-size:13.5px !important;
    font-weight:600 !important;
  }

  .csx-search-input::placeholder{
    font-size:13.2px !important;
    font-weight:600 !important;
    color:#8b97a8 !important;
  }

  .csx-search-btn{
    top:2px !important;
    right:2px !important;
    width:56px !important;
    height:48px !important;
    border-radius:0 12px 12px 0 !important;
  }
}
@media (min-width: 992px){

  .csx-topbar .csx-shell{
    padding-bottom:0 !important;
    align-items:flex-end !important;
  }

  /* Medikal: alttaki beyaz alana yapışık */
  .csx-top-tab.is-active{
    margin-bottom:0 !important;
    min-height:60px !important;
    padding:10px 14px 11px !important;
    border-radius:16px 16px 0 0 !important;
    position:relative !important;
    top:1px !important;
  }

  /* Fırsat: hafif yukarıda, ama üst hiza bozulmasın */
  .csx-top-tab:not(.is-active){
    margin-bottom:6px !important;
    min-height:54px !important;
    padding:10px 14px 11px !important;
    border-radius:16px !important;
    position:relative !important;
    top:0 !important;
  }
}
@media (max-width: 575.98px){
  .csx-shell{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}







/* =========================================================
RECOVERY PATCH
Temizleme sonrası bozulan mobile + grid hizasını geri toplar
========================================================= */

/* DESKTOP GRID tekrar net otursun */
@media (min-width: 1200px){
  .mx-grid{
    grid-template-columns: 280px minmax(0, 1fr) 330px !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .mx-grid > *{
    min-width: 0 !important;
  }

  .mx-rightcol{
    grid-column: auto !important;
  }
}

/* TABLET */
@media (max-width: 1199.98px){
  .mx-grid{
    grid-template-columns: 260px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .mx-rightcol{
    grid-column: 1 / -1 !important;
  }

  .mx-grid > *{
    min-width: 0 !important;
  }
}

/* MOBILE */
@media (max-width: 991.98px){

  .mx-wrap,
  .mx-grid,
  .pmx-wrap{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box !important;
  }

  .mx-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .mx-grid > *{
    width: 100% !important;
    min-width: 0 !important;
  }

  .mx-left,
  .mx-right,
  .mx-leftcol,
  .mx-rightcol{
    width: 100% !important;
    min-width: 0 !important;
  }

  .mx-rightcol{
    grid-column: auto !important;
  }

  /* CSX navbar mobil tekrar tam otursun */
  .csx-shell{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 0 6px 0 !important;
    box-sizing: border-box !important;
  }
}

/* SMALL MOBILE */
@media (max-width: 575.98px){

  .mx-wrap,
  .mx-grid,
  .pmx-wrap{
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .csx-shell{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


/* SADECE İÇERİK ALANI BEYAZ OLSUN */
:root{
  --mx-bg:#ffffff !important;
}

html,
body,
.mx-body,
.mx-page,
.mx-shop{
  background:#ffffff !important;
}

/* mobilde de aynı kalsın */
@media (max-width: 991.98px){
  html,
  body,
  .mx-body,
  .mx-page,
  .mx-shop{
    background:#ffffff !important;
  }
}



























/* =========================================================
WHITE BACKGROUND + CLEAN NAVBAR FIX
Amaç:
- içerik alanı full #ffffff
- mobil ve masaüstü aynı beyazlık
- navbar gölgesi kalksın
- navbar altına ince border gelsin
========================================================= */

:root{
  --mx-bg: #ffffff !important;
}

/* Genel zemin tamamen beyaz */
html,
body,
.mx-body,
.mx-page{
  background: #ffffff !important;
  background-image: none !important;
}

/* Bazı eski gradient tanımlarını kesin kapat */
body{
  background: #ffffff !important;
  background-image: none !important;
}

/* Ana içerik alanı */
.mx-page{
  padding-top: 8 !important;
  padding-bottom: 90px !important;
  background: #ffffff !important;
  background-image: none !important;
}

/* Shop ve genel içerik wrapper */
.mx-shop,
.mx-shop-shell,
.shop-page,
.shop-page main,
.shop-page main.container-fluid{
  background: #ffffff !important;
  background-image: none !important;
}

/* Navbar: gölgeyi kaldır */
.csx-header{
  background: #ffffff !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(15,23,42,.08) !important;
}

/* Desktop top area */
.csx-topbar{
  box-shadow: none !important;
  border-bottom: 1px solid rgba(15,23,42,.08) !important;
}

/* Main navbar area */
.csx-mainbar{
  background: #ffffff !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(15,23,42,.08) !important;
}

/* Mobilde de beyazlık sabit kalsın */
@media (max-width: 991.98px){
  html,
  body,
  .mx-body,
  .mx-page,
  .mx-shop,
  .mx-shop-shell,
  .shop-page,
  .shop-page main,
  .shop-page main.container-fluid{
    background: #ffffff !important;
    background-image: none !important;
  }

  .csx-header,
  .csx-topbar,
  .csx-mainbar{
    background: #ffffff !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(15,23,42,.08) !important;
  }
}

/* Çok küçük ekranlarda da aynı */
@media (max-width: 575.98px){
  html,
  body,
  .mx-body,
  .mx-page,
  .mx-shop,
  .mx-shop-shell{
    background: #ffffff !important;
    background-image: none !important;
  }
}
@media (max-width: 991.98px){
  .mx-page{
    padding-top: 6px !important;
  }
}

@media (max-width: 575.98px){
  .mx-page{
    padding-top: 5px !important;
  }
}































































































/* ANASAYFA BÜTÜN CSS BAŞLANGICI */
:root{
  --hp-ink:#0f172a;
  --hp-muted:#64748b;
  --hp-line:rgba(15,23,42,.08);
  --hp-line-strong:rgba(15,23,42,.12);
  --hp-primary:#0d6efd;
  --hp-shadow-sm:0 10px 24px rgba(15,23,42,.05);
  --hp-shadow-md:0 18px 42px rgba(15,23,42,.08);
  --hp-shadow-lg:0 26px 60px rgba(15,23,42,.12);
  --hp-shell:1530px;
}

.hp-home{
  background:#fff;
  padding:12px 0 24px;
}

.hp-shell{
  width:min(calc(100% - 22px), var(--hp-shell));
  margin:0 auto;
}

.hp-section{
  margin-top:18px;
}

.hp-kicker{
  font-size:.74rem;
  color:var(--hp-primary);
  font-weight:900;
  margin-bottom:6px;
}

.hp-section-head,
.hp-box-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}

.hp-section-title,
.hp-box-title{
  font-size:1.2rem;
  font-weight:900;
  line-height:1.05;
  letter-spacing:-.35px;
  color:var(--hp-ink);
  margin:0;
}

.hp-section-link{
  text-decoration:none;
  color:var(--hp-ink);
  font-weight:800;
  font-size:.82rem;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.hp-tab-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.hp-tab{
  height:40px;
  padding:0 13px;
  border-radius:999px;
  border:1px solid var(--hp-line);
  background:#fff;
  box-shadow:var(--hp-shadow-sm);
  font-size:.78rem;
  font-weight:900;
  color:var(--hp-ink);
}

.hp-tab.active{
  background:rgba(13,110,253,.1);
  color:var(--hp-primary);
  border-color:rgba(13,110,253,.16);
}

/* =========================================================
   HERO
========================================================= */

.hp-hero{
  margin-top:0px;
}

.hp-hero-slider-wrap{
  position:relative;
  border-radius:34px;
  padding:8px;
  background:linear-gradient(180deg, #eef4fb 0%, #e4edf7 100%);
  box-shadow:none;
  overflow:visible;
  isolation:isolate;
}

.hp-hero-slider-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:34px;
  pointer-events:none;
  z-index:3;
  border:2px solid rgba(222,228,236,.94);
  background:transparent;
  box-shadow:none;
}

.hp-hero-slider-wrap::after{
  content:none;
}

.hp-hero-slider-wrap .carousel,
.hp-hero-slider-wrap .carousel-inner,
.hp-hero-slider-wrap .carousel-item,
.hp-hero-slide-link,
.hp-hero-slide{
  border-radius:26px;
  overflow:hidden;
}

.hp-hero-slider-wrap .carousel,
.hp-hero-slider-wrap .carousel-inner,
.hp-hero-slider-wrap .carousel-item{
  height:100%;
}

.hp-hero-slide-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.hp-hero-slide{
  min-height:550px;
  position:relative;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  background-color:#eef4fb;
  transform:translateZ(0);
  backface-visibility:hidden;
  box-shadow:none;
  transition:none;
}

.hp-hero-slide::before,
.hp-hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:none;
  pointer-events:none;
}

.hp-hero-slide:hover{
  transform:none;
  box-shadow:none;
}

.hp-hero-glass-frame{
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  z-index:2;
  border:1px solid rgba(255,255,255,.72);
  background:transparent;
  box-shadow:none;
}

.hp-hero-indicators{
  display:none !important;
}

.hp-hero-control{
  width:64px;
  z-index:5;
  opacity:1;
}

.hp-hero-control .carousel-control-prev-icon,
.hp-hero-control .carousel-control-next-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  background-color:rgba(255,255,255,.26);
  border:2px solid rgba(226,232,239,.78);
  background-size:15px;
  box-shadow:none;
  transition:background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.hp-hero-control:hover .carousel-control-prev-icon,
.hp-hero-control:hover .carousel-control-next-icon{
  background-color:rgba(255,255,255,.38);
  border-color:rgba(226,232,239,.92);
  transform:scale(1.04);
}

.hp-hero-slider-wrap .carousel-item-next:not(.carousel-item-start),
.hp-hero-slider-wrap .active.carousel-item-end,
.hp-hero-slider-wrap .carousel-item-prev:not(.carousel-item-end),
.hp-hero-slider-wrap .active.carousel-item-start{
  border-radius:26px;
  overflow:hidden;
}

/* =========================================================
   CATEGORY SHOWCASE
========================================================= */

/* =========================================================
   CATEGORY SHOWCASE V2
========================================================= */

.hp-category-showcase{
  margin-top:18px;
}

.hp-category-shell{
  width:min(calc(100% - 22px), var(--hp-shell));
  margin:0 auto;
}

.hp-category-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.hp-category-kicker{
  font-size:.74rem;
  color:var(--hp-primary);
  font-weight:900;
  margin-bottom:6px;
}

.hp-category-title{
  margin:0;
  font-size:1.22rem;
  font-weight:900;
  line-height:1.05;
  letter-spacing:-.04em;
  color:var(--hp-ink);
}

.hp-category-head-link{
  text-decoration:none;
  color:var(--hp-ink);
  font-size:.82rem;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.hp-category-grid{
  display:grid;
  grid-template-columns:1.18fr .92fr;
  gap:14px;
}

/* HERO KART */

.hp-cat-hero{
  position:relative;
  min-height:280px;
  border-radius:30px;
  padding:20px;
  overflow:hidden;
  text-decoration:none;
  color:var(--hp-ink);
  border:1px solid rgba(214,223,233,.95);
  background:
    radial-gradient(circle at top right, rgba(13,110,253,.10), transparent 32%),
    linear-gradient(180deg,#f3f8fe 0%, #e7f0fa 100%);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.hp-cat-hero::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.82);
  pointer-events:none;
}

.hp-cat-hero:hover{
  transform:translateY(-3px);
  border-color:rgba(190,205,220,.98);
  background:
    radial-gradient(circle at top right, rgba(13,110,253,.12), transparent 34%),
    linear-gradient(180deg,#f5faff 0%, #eaf3fd 100%);
}

.hp-cat-hero-bg-shape{
  position:absolute;
  border-radius:999px;
  pointer-events:none;
}

.hp-cat-shape-1{
  width:180px;
  height:180px;
  right:-40px;
  top:-40px;
  background:radial-gradient(circle, rgba(255,255,255,.65) 0%, rgba(255,255,255,0) 70%);
}

.hp-cat-shape-2{
  width:160px;
  height:160px;
  left:-50px;
  bottom:-45px;
  background:radial-gradient(circle, rgba(13,110,253,.08) 0%, rgba(13,110,253,0) 72%);
}

.hp-cat-hero-top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.hp-cat-badge{
  min-height:31px;
  padding:0 11px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(220,228,237,.95);
  color:var(--hp-ink);
  display:inline-flex;
  align-items:center;
  font-size:.68rem;
  font-weight:900;
}

.hp-cat-count{
  min-height:31px;
  padding:0 11px;
  border-radius:999px;
  background:rgba(13,110,253,.08);
  border:1px solid rgba(13,110,253,.14);
  color:var(--hp-primary);
  display:inline-flex;
  align-items:center;
  font-size:.68rem;
  font-weight:900;
}

.hp-cat-hero-body{
  position:relative;
  z-index:2;
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-top:22px;
}

.hp-cat-hero-icon{
  width:68px;
  height:68px;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff 0%, #eef5fd 100%);
  border:1px solid rgba(216,225,234,.95);
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.45rem;
  flex:0 0 auto;
}

.hp-cat-hero-copy{
  max-width:520px;
}

.hp-cat-hero-copy h3{
  margin:0;
  font-size:1.72rem;
  font-weight:900;
  line-height:1.02;
  letter-spacing:-.05em;
  color:#0f172a;
}

.hp-cat-hero-copy p{
  margin:10px 0 0;
  font-size:.92rem;
  line-height:1.68;
  color:#5f6f84;
  max-width:48ch;
}

.hp-cat-hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.hp-cat-hero-meta span{
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(219,227,235,.92);
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.68rem;
  font-weight:800;
  color:#516073;
}

.hp-cat-hero-foot{
  position:relative;
  z-index:2;
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.hp-cat-hero-link{
  font-size:.84rem;
  font-weight:900;
  color:#0f172a;
}

.hp-cat-hero-arrow{
  width:42px;
  height:42px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(216,225,234,.95);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#2563eb;
  font-size:1rem;
}

/* SAĞ PANEL GRID */

.hp-cat-side-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.hp-cat-panel{
  position:relative;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:16px;
  min-height:104px;
  border-radius:22px;
  border:1px solid rgba(216,224,233,.95);
  background:linear-gradient(180deg,#f9fcff 0%, #f1f7fd 100%);
  text-decoration:none;
  color:var(--hp-ink);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
  overflow:hidden;
}

.hp-cat-panel::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.82);
  pointer-events:none;
}

.hp-cat-panel:hover{
  transform:translateY(-2px);
  border-color:rgba(192,206,220,.96);
  background:linear-gradient(180deg,#fbfdff 0%, #eef5fc 100%);
}

.hp-cat-panel-icon{
  width:50px;
  height:50px;
  border-radius:16px;
  background:linear-gradient(180deg,#ffffff 0%, #edf4fb 100%);
  border:1px solid rgba(216,224,233,.95);
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.08rem;
  flex:0 0 auto;
}

.hp-cat-panel-body{
  min-width:0;
  flex:1 1 auto;
}

.hp-cat-panel-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.hp-cat-panel-top h4{
  margin:0;
  font-size:1rem;
  font-weight:900;
  line-height:1.1;
  color:#0f172a;
}

.hp-cat-panel-chip{
  min-height:26px;
  padding:0 9px;
  border-radius:999px;
  background:rgba(13,110,253,.08);
  border:1px solid rgba(13,110,253,.14);
  color:var(--hp-primary);
  display:inline-flex;
  align-items:center;
  font-size:.62rem;
  font-weight:900;
  white-space:nowrap;
}

.hp-cat-panel p{
  margin:7px 0 0;
  font-size:.76rem;
  line-height:1.55;
  color:#64748b;
}

.hp-cat-panel-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  font-size:.72rem;
  font-weight:900;
  color:#0f172a;
}

/* ALT AKSİYON KARTLARI */

.hp-cat-action{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  min-height:78px;
  padding:14px 15px;
  border-radius:20px;
  text-decoration:none;
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease;
}

.hp-cat-action::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
}

.hp-cat-action:hover{
  transform:translateY(-2px);
}

.hp-cat-action-light{
  border:1px solid rgba(216,224,233,.95);
  background:linear-gradient(180deg,#ffffff 0%, #f5f9fd 100%);
  color:#0f172a;
}

.hp-cat-action-light::before{
  border:1px solid rgba(255,255,255,.80);
}

.hp-cat-action-strong{
  border:1px solid rgba(24,103,230,.92);
  background:linear-gradient(135deg,#1f6df0 0%, #0d6efd 100%);
  color:#fff;
}

.hp-cat-action-strong::before{
  border:1px solid rgba(255,255,255,.22);
}

.hp-cat-action-icon{
  width:46px;
  height:46px;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  flex:0 0 auto;
}

.hp-cat-action-light .hp-cat-action-icon{
  background:linear-gradient(180deg,#ffffff 0%, #edf4fb 100%);
  border:1px solid rgba(216,224,233,.95);
  color:#2563eb;
}

.hp-cat-action-strong .hp-cat-action-icon{
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.20);
  color:#fff;
}

.hp-cat-action-body{
  min-width:0;
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.hp-cat-action-body strong{
  font-size:.96rem;
  font-weight:900;
  line-height:1.08;
}

.hp-cat-action-body span{
  font-size:.72rem;
  line-height:1.4;
  opacity:.9;
}

.hp-cat-action-arrow{
  width:36px;
  height:36px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.92rem;
  flex:0 0 auto;
}

.hp-cat-action-light .hp-cat-action-arrow{
  background:#fff;
  border:1px solid rgba(216,224,233,.95);
  color:#2563eb;
}

.hp-cat-action-strong .hp-cat-action-arrow{
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.20);
  color:#fff;
}

/* RESPONSIVE */

@media (max-width:1199.98px){
  .hp-category-shell{
    width:min(calc(100% - 22px), var(--hp-shell));
  }

  .hp-category-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:991.98px){
  .hp-category-shell{
    width:min(calc(100% - 14px), var(--hp-shell));
  }

  .hp-category-head{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    margin-bottom:12px;
  }

  .hp-category-title{
    font-size:1.06rem;
  }

  .hp-cat-hero{
    min-height:230px;
    border-radius:24px;
    padding:16px;
  }

  .hp-cat-hero-body{
    margin-top:16px;
    gap:12px;
  }

  .hp-cat-hero-icon{
    width:58px;
    height:58px;
    border-radius:17px;
    font-size:1.22rem;
  }

  .hp-cat-hero-copy h3{
    font-size:1.34rem;
  }

  .hp-cat-hero-copy p{
    font-size:.82rem;
    line-height:1.55;
  }

  .hp-cat-panel{
    min-height:94px;
    border-radius:18px;
    padding:14px;
  }

  .hp-cat-panel-icon{
    width:44px;
    height:44px;
    border-radius:14px;
    font-size:.96rem;
  }

  .hp-cat-panel-top h4{
    font-size:.9rem;
  }

  .hp-cat-panel p{
    font-size:.72rem;
  }

  .hp-cat-action{
    min-height:70px;
    border-radius:17px;
    padding:12px 13px;
  }

  .hp-cat-action-icon{
    width:40px;
    height:40px;
    border-radius:13px;
    font-size:.92rem;
  }

  .hp-cat-action-body strong{
    font-size:.88rem;
  }

  .hp-cat-action-body span{
    font-size:.68rem;
  }

  .hp-cat-action-arrow{
    width:32px;
    height:32px;
    border-radius:11px;
    font-size:.82rem;
  }
}

@media (max-width:575.98px){
  .hp-category-shell{
    width:min(calc(100% - 10px), var(--hp-shell));
  }

  .hp-category-showcase{
    margin-top:14px;
  }

  .hp-category-head{
    margin-bottom:10px;
  }

  .hp-category-kicker{
    font-size:.66rem;
    margin-bottom:4px;
  }

  .hp-category-title{
    font-size:.92rem;
    line-height:1.08;
  }

  .hp-category-head-link{
    font-size:.72rem;
  }

  .hp-category-grid{
    gap:10px;
  }

  .hp-cat-hero{
    min-height:190px;
    border-radius:20px;
    padding:13px;
  }

  .hp-cat-hero-top{
    gap:8px;
  }

  .hp-cat-badge,
  .hp-cat-count{
    min-height:26px;
    padding:0 8px;
    font-size:.56rem;
  }

  .hp-cat-hero-body{
    margin-top:12px;
    gap:10px;
  }

  .hp-cat-hero-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    font-size:1.02rem;
  }

  .hp-cat-hero-copy h3{
    font-size:1.02rem;
    line-height:1.05;
  }

  .hp-cat-hero-copy p{
    margin-top:7px;
    font-size:.7rem;
    line-height:1.42;
  }

  .hp-cat-hero-meta{
    gap:6px;
    margin-top:10px;
  }

  .hp-cat-hero-meta span{
    min-height:24px;
    padding:0 7px;
    font-size:.56rem;
    gap:4px;
  }

  .hp-cat-hero-foot{
    margin-top:14px;
  }

  .hp-cat-hero-link{
    font-size:.68rem;
  }

  .hp-cat-hero-arrow{
    width:32px;
    height:32px;
    border-radius:10px;
    font-size:.76rem;
  }

  .hp-cat-side-grid{
    gap:8px;
  }

  .hp-cat-panel{
    min-height:82px;
    border-radius:16px;
    padding:11px;
    gap:9px;
  }

  .hp-cat-panel-icon{
    width:38px;
    height:38px;
    border-radius:12px;
    font-size:.84rem;
  }

  .hp-cat-panel-top{
    gap:6px;
  }

  .hp-cat-panel-top h4{
    font-size:.8rem;
  }

  .hp-cat-panel-chip{
    min-height:22px;
    padding:0 7px;
    font-size:.54rem;
  }

  .hp-cat-panel p{
    margin-top:5px;
    font-size:.64rem;
    line-height:1.36;
  }

  .hp-cat-panel-link{
    margin-top:7px;
    font-size:.62rem;
    gap:4px;
  }

  .hp-cat-action{
    min-height:62px;
    border-radius:15px;
    padding:10px 11px;
    gap:9px;
  }

  .hp-cat-action-icon{
    width:34px;
    height:34px;
    border-radius:11px;
    font-size:.78rem;
  }

  .hp-cat-action-body strong{
    font-size:.76rem;
  }

  .hp-cat-action-body span{
    font-size:.6rem;
  }

  .hp-cat-action-arrow{
    width:28px;
    height:28px;
    border-radius:9px;
    font-size:.72rem;
  }
}



/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.hp-featured-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.hp-featured-card{
  position:relative;
  border:1px solid rgba(221,229,237,.95);
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%, #f7fbff 100%);
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.hp-featured-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.72);
  pointer-events:none;
}

.hp-featured-card:hover{
  transform:translateY(-3px);
  border-color:rgba(196,210,225,.95);
  background:linear-gradient(180deg,#ffffff 0%, #f3f9ff 100%);
}

.hp-featured-top{
  position:absolute;
  inset:12px 12px auto 12px;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.hp-featured-media{
  display:block;
  aspect-ratio:1/0.86;
  background:linear-gradient(180deg,#f8fbff,#edf5fc);
  position:relative;
  overflow:hidden;
}

.hp-featured-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .28s ease;
}

.hp-featured-card:hover .hp-featured-media img{
  transform:scale(1.03);
}

.hp-featured-body{
  padding:14px;
}

.hp-featured-meta-row,
.hp-product-meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.hp-featured-cat,
.hp-product-cat{
  font-size:.68rem;
  color:var(--hp-primary);
  font-weight:900;
  margin-bottom:0;
  letter-spacing:.01em;
}

.hp-featured-name,
.hp-product-name{
  color:var(--hp-ink);
  text-decoration:none;
  display:block;
  font-size:.94rem;
  font-weight:900;
  line-height:1.22;
  min-height:2.48em;
  margin-top:9px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hp-featured-rating,
.hp-product-rating{
  display:flex;
  align-items:center;
  gap:7px;
  margin-top:0;
  flex:0 0 auto;
}

.hp-featured-rating .stars,
.hp-product-rating .stars{
  color:#f7b500;
  display:inline-flex;
  gap:2px;
  font-size:.74rem;
}

.hp-featured-rating small,
.hp-product-rating small{
  color:var(--hp-muted);
  font-size:.68rem;
  font-weight:800;
}

.hp-featured-subline,
.hp-product-subline{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:11px;
}

.hp-featured-subline span,
.hp-product-subline span{
  min-height:28px;
  padding:0 9px;
  border-radius:999px;
  border:1px solid rgba(223,230,238,.92);
  background:#fff;
  color:#516073;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.64rem;
  font-weight:800;
}

.hp-featured-bottom,
.hp-product-price-row{
  display:flex;
  align-items:flex-end;
  gap:10px;
  justify-content:space-between;
  margin-top:14px;
}

.hp-featured-price-group,
.hp-product-price-group{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.hp-featured-bottom .price,
.hp-product-price-row .price,
.hp-best-item .price{
  font-size:1rem;
  font-weight:900;
  color:var(--hp-ink);
  line-height:1;
}

.hp-featured-price-group .old,
.hp-product-price-group .old,
.hp-product-price-row .old{
  font-size:.72rem;
  color:#94a3b8;
  text-decoration:line-through;
  font-weight:800;
  line-height:1;
}

.hp-main-btn{
  min-height:40px;
  border-radius:12px;
  padding:0 14px;
  font-size:.74rem;
  font-weight:900;
  white-space:nowrap;
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.hp-product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.hp-product-card{
  position:relative;
  border:1px solid rgba(221,229,237,.95);
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%, #f7fbff 100%);
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.hp-product-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.70);
  pointer-events:none;
}

.hp-product-card:hover{
  transform:translateY(-3px);
  border-color:rgba(196,210,225,.95);
  background:linear-gradient(180deg,#ffffff 0%, #f3f9ff 100%);
}

.hp-product-top{
  position:absolute;
  inset:12px 12px auto 12px;
  z-index:3;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
}

.hp-stock-badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  font-size:.66rem;
  font-weight:900;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(220,228,236,.92);
  box-shadow:none;
}

.hp-stock-badge.in{color:#198754;}
.hp-stock-badge.out{color:#dc3545;}

.hp-fav-btn{
  width:36px;
  height:36px;
  border-radius:12px;
  border:1px solid rgba(220,228,236,.92);
  background:rgba(255,255,255,.96);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#6b7280;
}

.hp-product-media{
  display:block;
  aspect-ratio:1/0.9;
  background:linear-gradient(180deg,#f8fbff,#edf5fc);
  position:relative;
  overflow:hidden;
}

.hp-product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .28s ease;
}

.hp-product-card:hover .hp-product-media img{
  transform:scale(1.03);
}

.hp-product-body{
  padding:14px;
}

.hp-product-price-row{
  align-items:center;
}

.hp-discount-badge{
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(13,110,253,.10);
  color:var(--hp-primary);
  border:1px solid rgba(13,110,253,.16);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.68rem;
  font-weight:900;
  white-space:nowrap;
}

.hp-product-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:14px;
}

.hp-detail-btn,
.hp-product-actions .btn,
.hp-featured-bottom .btn{
  min-height:40px;
  border-radius:12px;
  font-size:.74rem;
  font-weight:900;
  padding:0 12px;
}

/* =========================================================
   TRUST
========================================================= */

.hp-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.hp-trust-card{
  border:1px solid var(--hp-line);
  border-radius:20px;
  background:linear-gradient(180deg,#fff,#f9fbff);
  padding:15px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:var(--hp-shadow-sm);
}

.hp-trust-card .icon{
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(13,110,253,.1);
  color:var(--hp-primary);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.05rem;
}

.hp-trust-card .title{
  font-size:.88rem;
  font-weight:900;
  color:var(--hp-ink);
  line-height:1.1;
}

.hp-trust-card .text{
  font-size:.74rem;
  color:var(--hp-muted);
  margin-top:4px;
}

/* =========================================================
   LOWER GRID
========================================================= */

.hp-lower-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:14px;
}

.hp-box{
  border:1px solid var(--hp-line);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--hp-shadow-sm);
  padding:16px;
}

.hp-guide-list{
  display:grid;
  gap:10px;
}

.hp-guide-item{
  text-decoration:none;
  color:inherit;
  display:grid;
  grid-template-columns:50px 1fr auto;
  gap:12px;
  align-items:center;
  border:1px solid var(--hp-line);
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#f9fbff);
  padding:12px;
}

.hp-guide-item .icon{
  width:50px;
  height:50px;
  border-radius:16px;
  background:rgba(13,110,253,.08);
  color:var(--hp-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.05rem;
}

.hp-guide-item .title{
  font-size:.88rem;
  font-weight:900;
  color:var(--hp-ink);
  line-height:1.18;
}

.hp-guide-item .text{
  font-size:.76rem;
  color:var(--hp-muted);
  line-height:1.55;
  margin-top:5px;
}

.hp-guide-item .go{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid var(--hp-line);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#475569;
}

.hp-best-list{
  display:grid;
  gap:10px;
}

.hp-best-item{
  display:grid;
  grid-template-columns:74px 1fr;
  gap:12px;
  align-items:center;
  border:1px solid var(--hp-line);
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#f9fbff);
  padding:10px;
}

.hp-best-item .thumb{
  display:block;
  width:74px;
  height:74px;
  border-radius:14px;
  background:linear-gradient(180deg,#eef5ff,#f8fbff);
  overflow:hidden;
}

.hp-best-item .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hp-best-item .name{
  display:block;
  text-decoration:none;
  color:var(--hp-ink);
  font-size:.84rem;
  font-weight:900;
  line-height:1.16;
}

.hp-best-item .price{
  margin-top:6px;
}

/* =========================================================
   CTA
========================================================= */

.hp-cta-box{
  margin-top:18px;
  border:1px solid var(--hp-line);
  border-radius:26px;
  background:radial-gradient(circle at top right, rgba(13,110,253,.14), transparent 34%), linear-gradient(180deg,#fff,#f7fbff);
  box-shadow:var(--hp-shadow-sm);
  padding:22px;
}

.hp-cta-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.hp-cta-title{
  margin:0;
  font-size:1.2rem;
  font-weight:900;
  line-height:1.08;
  color:var(--hp-ink);
  max-width:24ch;
}

.hp-cta-text{
  margin:8px 0 0;
  font-size:.84rem;
  color:var(--hp-muted);
  line-height:1.58;
  max-width:60ch;
}

.hp-cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hp-cta-actions .btn{
  min-height:44px;
  border-radius:14px;
  padding:0 15px;
  font-weight:900;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1399.98px){
  .hp-quick-track{grid-template-columns:repeat(3,minmax(0,1fr));}
  .hp-campaigns{grid-template-columns:1.2fr .9fr .9fr;}
}

@media (max-width:1199.98px){
  .hp-featured-grid,
  .hp-product-grid,
  .hp-trust-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .hp-lower-grid{grid-template-columns:1fr;}
  .hp-campaigns{grid-template-columns:1fr 1fr;}
  .hp-campaign-lg{grid-column:span 2;}

  .hp-hero-slider-wrap{
    border-radius:30px;
    padding:8px;
  }

  .hp-hero-slider-wrap::before{
    border-radius:30px;
  }

  .hp-hero-slider-wrap .carousel,
  .hp-hero-slider-wrap .carousel-inner,
  .hp-hero-slider-wrap .carousel-item,
  .hp-hero-slide-link,
  .hp-hero-slide{
    border-radius:22px;
  }

  .hp-hero-slide{
    min-height:385px;
  }

  .hp-cat-grid{
    grid-template-columns:1fr;
  }

  .hp-cat-right{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:991.98px){
  .hp-home{padding:8px 0 16px;}
  .hp-shell{width:min(calc(100% - 14px), var(--hp-shell));}

  .hp-hero{
    margin-top:2px;
  }

  .hp-hero-slider-wrap{
    border-radius:24px;
    padding:7px;
  }

  .hp-hero-slider-wrap::before{
    border-radius:24px;
    border-width:2px;
  }

  .hp-hero-slider-wrap .carousel,
  .hp-hero-slider-wrap .carousel-inner,
  .hp-hero-slider-wrap .carousel-item,
  .hp-hero-slide-link,
  .hp-hero-slide{
    border-radius:18px;
  }

  .hp-hero-slide{
    min-height:320px;
  }

  .hp-hero-control{
    width:50px;
  }

  .hp-hero-control .carousel-control-prev-icon,
  .hp-hero-control .carousel-control-next-icon{
    width:36px;
    height:36px;
    border-radius:12px;
    background-size:13px;
  }

  .hp-cat-right{
    grid-template-columns:1fr;
  }

  .hp-campaigns{
    grid-template-columns:1fr;
    gap:10px;
  }

  .hp-campaign-lg{
    grid-column:auto;
    min-height:210px;
  }

  .hp-campaign-card{
    min-height:176px;
    border-radius:20px;
  }

  .hp-campaign-body{
    padding:15px;
  }

  .hp-campaign-title{
    font-size:1.03rem;
  }

  .hp-campaign-text{
    font-size:.74rem;
    line-height:1.45;
    max-width:30ch;
  }

  .hp-campaign-btn{
    min-height:35px;
    border-radius:10px;
    padding:0 11px;
    font-size:.7rem;
  }

  .hp-featured-grid,
  .hp-product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .hp-section-head,
  .hp-box-head,
  .hp-cta-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .hp-section-title,
  .hp-box-title,
  .hp-cta-title{
    font-size:1rem;
  }

  .hp-trust-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
  }

  .hp-featured-body,
  .hp-product-body{
    padding:11px;
  }

  .hp-featured-name,
  .hp-product-name{
    font-size:.82rem;
  }

  .hp-main-btn,
  .hp-detail-btn,
  .hp-product-actions .btn,
  .hp-featured-bottom .btn{
    min-height:36px;
    border-radius:10px;
    font-size:.68rem;
    padding:0 10px;
  }
}

@media (max-width:575.98px){
  .hp-shell{
    width:min(calc(100% - 10px), var(--hp-shell));
  }

  .hp-hero{
    margin-top:0;
  }

  .hp-hero-slider-wrap{
    width:100%;
    border-radius:20px;
    padding:6px;
    background:linear-gradient(180deg, #eef4fb 0%, #e4edf7 100%);
  }

  .hp-hero-slider-wrap::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    pointer-events:none;
    z-index:3;
    border:2px solid rgba(222,228,236,.94);
    background:transparent;
    box-shadow:none;
  }

  .hp-hero-slider-wrap .carousel,
  .hp-hero-slider-wrap .carousel-inner,
  .hp-hero-slider-wrap .carousel-item,
  .hp-hero-slide-link,
  .hp-hero-slide{
    border-radius:15px;
  }

  .hp-hero-slide{
    min-height:275px;
  }

  .hp-hero-glass-frame{
    border-width:1px;
  }

  .hp-hero-control{
    width:42px;
  }

  .hp-hero-control .carousel-control-prev-icon,
  .hp-hero-control .carousel-control-next-icon{
    width:30px;
    height:30px;
    border-radius:10px;
    background-size:11px;
    border-width:2px;
  }

  .hp-featured-grid,
  .hp-product-grid,
  .hp-trust-grid{
    gap:8px;
  }

  .hp-featured-card,
  .hp-product-card,
  .hp-box,
  .hp-cta-box{
    border-radius:18px;
  }

  .hp-featured-media,
  .hp-product-media{
    aspect-ratio:1/0.98;
  }

  .hp-featured-body,
  .hp-product-body{
    padding:9px;
  }

  .hp-featured-name,
  .hp-product-name{
    font-size:.74rem;
    min-height:2.28em;
    margin-top:7px;
  }

  .hp-featured-cat,
  .hp-product-cat{
    font-size:.62rem;
  }

  .hp-featured-rating .stars,
  .hp-product-rating .stars{
    font-size:.64rem;
  }

  .hp-featured-rating small,
  .hp-product-rating small{
    font-size:.6rem;
  }

  .hp-featured-bottom .price,
  .hp-product-price-row .price,
  .hp-best-item .price{
    font-size:.84rem;
  }

  .hp-featured-price-group .old,
  .hp-product-price-group .old,
  .hp-product-price-row .old{
    font-size:.62rem;
  }

  .hp-featured-subline,
  .hp-product-subline{
    gap:6px;
    margin-top:9px;
  }

  .hp-featured-subline span,
  .hp-product-subline span{
    min-height:24px;
    padding:0 7px;
    font-size:.58rem;
    gap:4px;
  }

  .hp-discount-badge{
    min-height:25px;
    padding:0 8px;
    font-size:.6rem;
  }

  .hp-product-actions{
    gap:6px;
    margin-top:11px;
  }

  .hp-main-btn,
  .hp-detail-btn,
  .hp-product-actions .btn,
  .hp-featured-bottom .btn{
    min-height:32px;
    border-radius:9px;
    font-size:.62rem;
    padding:0 8px;
  }

  .hp-stock-badge{
    min-height:26px;
    padding:0 8px;
    font-size:.58rem;
  }

  .hp-fav-btn{
    width:31px;
    height:31px;
    border-radius:10px;
  }

  .hp-trust-grid{
    grid-template-columns:1fr;
  }

  .hp-trust-card{
    padding:11px;
    border-radius:14px;
    gap:10px;
  }

  .hp-trust-card .icon{
    width:34px;
    height:34px;
    border-radius:11px;
    font-size:.88rem;
  }

  .hp-guide-item{
    grid-template-columns:42px 1fr auto;
    padding:9px;
    border-radius:14px;
    gap:8px;
  }

  .hp-guide-item .icon{
    width:42px;
    height:42px;
    border-radius:12px;
    font-size:.9rem;
  }

  .hp-guide-item .title{
    font-size:.76rem;
  }

  .hp-guide-item .text{
    font-size:.66rem;
  }

  .hp-best-item{
    grid-template-columns:58px 1fr;
    gap:8px;
    border-radius:14px;
    padding:8px;
  }

  .hp-best-item .thumb{
    width:58px;
    height:58px;
    border-radius:10px;
  }

  .hp-best-item .name{
    font-size:.72rem;
  }

  .hp-cta-title{
    font-size:.92rem;
  }

  .hp-cta-text{
    font-size:.72rem;
    line-height:1.45;
  }

  .hp-cta-actions .btn{
    min-height:36px;
    border-radius:10px;
    font-size:.68rem;
    padding:0 11px;
  }
}
/* =========================================================
   YATAY PROMO LIST SISTEMI
========================================================= */

/* =========================================================
   PREMIUM PROMO LIST V2
========================================================= */

.hp-promo-list{
  margin-top:16px;
}

.hp-promo-list .hp-shell{
  display:grid;
  gap:14px;
}

.hp-promo-card{
  position:relative;
  display:grid;
  grid-template-columns:70% 30%;
  min-height:248px;
  border-radius:28px;
  overflow:hidden;
  text-decoration:none;
  background:#fff;
  border:1px solid rgba(210,220,232,.92);
  transition:transform .18s ease, border-color .18s ease;
}

.hp-promo-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.36);
  pointer-events:none;
  z-index:4;
}

.hp-promo-card:hover{
  transform:translateY(-2px);
  border-color:rgba(185,203,222,.96);
}

.hp-promo-media{
  position:relative;
  min-height:248px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
}

.hp-promo-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  pointer-events:none;
  z-index:1;
}

.hp-promo-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.18), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 78% 72%, rgba(255,255,255,.10), rgba(255,255,255,0) 28%);
  pointer-events:none;
  z-index:1;
}

.hp-promo-copy{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px 16px;
  overflow:hidden;
}

.hp-promo-copy::before{
  content:"";
  position:absolute;
  inset:-10% -10% auto auto;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 70%);
  pointer-events:none;
  z-index:1;
}

.hp-promo-copy::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 14% 78%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 26%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 22%),
    linear-gradient(135deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 42%);
  pointer-events:none;
  z-index:1;
  mix-blend-mode:screen;
}

.hp-promo-copy-inner{
  position:relative;
  z-index:2;
  max-width:240px;
}

.hp-promo-copy h3{
  margin:0;
  font-size:2.15rem;
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.05em;
  color:#fff;
  text-shadow:
    0 3px 10px rgba(0,0,0,.18),
    0 1px 0 rgba(255,255,255,.08);
}

.hp-promo-badge{
  margin-top:16px;
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  color:#1f2937;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.86rem;
  font-weight:900;
  white-space:nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 8px 20px rgba(0,0,0,.08);
}

/* RENK TEMA BLOKLARI */

.hp-promo-magenta{
  background:
    radial-gradient(circle at 18% 84%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(160deg, #ff4b93 0%, #d81b72 100%);
}

.hp-promo-violet{
  background:
    radial-gradient(circle at 18% 84%, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(160deg, #d946ef 0%, #8b2de2 100%);
}

.hp-promo-rose{
  background:
    radial-gradient(circle at 18% 84%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(160deg, #ff5c7b 0%, #d81b60 100%);
}

.hp-promo-cyan{
  background:
    radial-gradient(circle at 18% 84%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(160deg, #39c6f0 0%, #00a7d6 100%);
}

.hp-promo-emerald{
  background:
    radial-gradient(circle at 18% 84%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(160deg, #1acb97 0%, #06a77d 100%);
}

.hp-promo-blue{
  background:
    radial-gradient(circle at 18% 84%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(160deg, #2f7bff 0%, #1d4ed8 100%);
}

/* TABLET */

@media (max-width:991.98px){
  .hp-promo-list .hp-shell{
    gap:12px;
  }

  .hp-promo-card{
    min-height:196px;
    border-radius:22px;
  }

  .hp-promo-media{
    min-height:196px;
  }

  .hp-promo-copy{
    padding:16px 12px;
  }

  .hp-promo-copy h3{
    font-size:1.5rem;
    max-width:10ch;
  }

  .hp-promo-badge{
    min-height:34px;
    padding:0 13px;
    font-size:.7rem;
    margin-top:12px;
  }
}

/* MOBILE */

@media (max-width:575.98px){
  .hp-promo-list{
    margin-top:12px;
  }

  .hp-promo-list .hp-shell{
    gap:10px;
  }

  .hp-promo-card{
    grid-template-columns:68% 32%;
    min-height:146px;
    border-radius:18px;
  }

  .hp-promo-media{
    min-height:146px;
  }

  .hp-promo-copy{
    padding:10px 8px;
  }

  .hp-promo-copy h3{
    font-size:1rem;
    line-height:1.05;
    max-width:8ch;
    text-shadow:
      0 2px 8px rgba(0,0,0,.18),
      0 1px 0 rgba(255,255,255,.06);
  }

  .hp-promo-badge{
    margin-top:8px;
    min-height:24px;
    padding:0 8px;
    font-size:.56rem;
    border-radius:999px;
  }
}


/* =========================================================
   SAAS PRODUCT CARD ENHANCEMENTS
========================================================= */

.hp-section-split{
  position:relative;
  padding:18px 18px 20px;
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.92) 0%, rgba(244,249,255,.95) 100%);
  border:1px solid rgba(215,226,238,.96);
  box-shadow:0 18px 42px rgba(15,23,42,.05);
}

.hp-section-split::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.74);
  pointer-events:none;
}

.hp-section-grid{
  margin-top:22px;
}

.hp-product-top,
.hp-featured-top{
  align-items:flex-start;
}

.hp-top-flags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  justify-content:center;
  margin:0 auto;
}

.hp-mini-flag{
  min-height:24px;
  padding:0 8px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.58rem;
  font-weight:900;
  white-space:nowrap;
  border:1px solid transparent;
  backdrop-filter:blur(8px);
}

.hp-mini-flag.is-bestseller{
  color:#b91c1c;
  background:rgba(239,68,68,.12);
  border-color:rgba(239,68,68,.18);
}

.hp-mini-flag.is-featured{
  color:#0d6efd;
  background:rgba(13,110,253,.10);
  border-color:rgba(13,110,253,.16);
}

.hp-mini-flag.is-low{
  color:#b45309;
  background:rgba(245,158,11,.12);
  border-color:rgba(245,158,11,.18);
}

.hp-mini-flag.is-review{
  color:#0f766e;
  background:rgba(20,184,166,.12);
  border-color:rgba(20,184,166,.18);
}

.hp-mini-flag.is-fast{
  color:#4f46e5;
  background:rgba(99,102,241,.12);
  border-color:rgba(99,102,241,.18);
}

.hp-product-social{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:9px;
}

.hp-product-social span{
  min-height:27px;
  padding:0 9px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.62rem;
  font-weight:800;
  color:#4b5f79;
  background:rgba(13,110,253,.06);
  border:1px solid rgba(13,110,253,.10);
}

.hp-stock-badge.stock-low{
  color:#b91c1c !important;
  background:rgba(239,68,68,.12) !important;
  border:1px solid rgba(239,68,68,.18) !important;
}

.hp-stock-badge.stock-mid{
  color:#b45309 !important;
  background:rgba(245,158,11,.12) !important;
  border:1px solid rgba(245,158,11,.18) !important;
}

.hp-stock-badge.stock-high{
  color:#15803d !important;
  background:rgba(34,197,94,.12) !important;
  border:1px solid rgba(34,197,94,.18) !important;
}

.hp-product-media,
.hp-featured-media{
  position:relative;
}

.hp-product-media .hp-img-main,
.hp-product-media .hp-img-hover,
.hp-featured-media .hp-img-main,
.hp-featured-media .hp-img-hover{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .35s ease, transform .35s ease;
}

.hp-product-media .hp-img-hover,
.hp-featured-media .hp-img-hover{
  position:absolute;
  inset:0;
  opacity:0;
}

.hp-product-card:hover .hp-img-main,
.hp-featured-card:hover .hp-img-main{
  opacity:0;
  transform:scale(1.03);
}

.hp-product-card:hover .hp-img-hover,
.hp-featured-card:hover .hp-img-hover{
  opacity:1;
  transform:scale(1.04);
}

.hp-product-card,
.hp-featured-card{
  background:
    radial-gradient(circle at top right, rgba(13,110,253,.08), transparent 28%),
    linear-gradient(180deg,#ffffff 0%, #f5faff 100%);
  border-color:rgba(216,226,237,.95);
  backdrop-filter:blur(10px);
}

.hp-product-card:hover,
.hp-featured-card:hover{
  transform:translateY(-4px) scale(1.01);
  border-color:rgba(184,205,229,.98);
  box-shadow:0 24px 52px rgba(15,23,42,.10);
}

.hp-product-actions-single{
  display:flex !important;
  flex-direction:column;
  gap:8px;
  margin-top:14px;
}

.hp-main-btn-full{
  width:100%;
  min-height:42px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:900;
  background:linear-gradient(135deg,#0d6efd 0%, #2563eb 100%);
  border:none;
}

.hp-detail-btn-creative{
  width:100%;
  min-height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:900;
  background:rgba(255,255,255,.86);
}

.hp-best-item-premium{
  border:1px solid rgba(214,223,233,.92);
  box-shadow:0 14px 34px rgba(15,23,42,.05);
}

.hp-best-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:8px;
}

.hp-best-bottom{
  margin-top:8px;
}

@media (max-width:991.98px){
  .hp-section-split{
    padding:14px 14px 16px;
    border-radius:22px;
  }

  .hp-product-social{
    gap:6px;
    margin-top:8px;
  }

  .hp-product-social span{
    min-height:24px;
    padding:0 8px;
    font-size:.58rem;
    gap:4px;
  }
}

@media (max-width:575.98px){
  .hp-section-split{
    padding:10px 10px 12px;
    border-radius:18px;
  }

  .hp-product-card,
  .hp-featured-card{
    border-radius:18px;
  }

  .hp-product-top,
  .hp-featured-top{
    inset:8px 8px auto 8px;
    gap:6px;
  }

  .hp-top-flags{
    gap:4px;
  }

  .hp-mini-flag{
    min-height:20px;
    padding:0 6px;
    font-size:.52rem;
  }

  .hp-main-btn-full{
    min-height:35px;
    border-radius:10px;
    font-size:.64rem;
  }

  .hp-detail-btn-creative{
    min-height:32px;
    border-radius:10px;
    font-size:.62rem;
  }

  .hp-best-item-premium{
    border-radius:14px;
  }
}
/* =========================================================
   SAAS PRODUCT CARD OVERRIDE
========================================================= */

.hp-section-featured-clean,
.hp-section-grid-clean{
  margin-top:18px;
}

.hp-product-top,
.hp-featured-top{
  align-items:flex-start;
}

.hp-top-flags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  justify-content:center;
  margin:0 auto;
}

.hp-mini-flag{
  min-height:24px;
  padding:0 9px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.6rem;
  font-weight:900;
  white-space:nowrap;
  border:1px solid transparent;
  backdrop-filter:blur(8px);
}

.hp-mini-flag.is-bestseller{
  color:#fff;
  background:linear-gradient(135deg,#ef4444 0%, #dc2626 100%);
  border-color:rgba(239,68,68,.22);
  box-shadow:0 8px 18px rgba(220,38,38,.18);
}

.hp-mini-flag.is-featured{
  color:#fff;
  background:linear-gradient(135deg,#2563eb 0%, #1d4ed8 100%);
  border-color:rgba(37,99,235,.22);
  box-shadow:0 8px 18px rgba(37,99,235,.18);
}

.hp-product-social{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px;
}

.hp-product-social span{
  min-height:26px;
  padding:0 8px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.61rem;
  font-weight:800;
  color:#4b5f79;
  background:rgba(13,110,253,.06);
  border:1px solid rgba(13,110,253,.10);
}

.hp-stock-badge.stock-low{
  color:#fff !important;
  background:linear-gradient(135deg,#ef4444 0%, #dc2626 100%) !important;
  border:1px solid rgba(239,68,68,.18) !important;
}

.hp-stock-badge.stock-mid{
  color:#fff !important;
  background:linear-gradient(135deg,#f59e0b 0%, #d97706 100%) !important;
  border:1px solid rgba(245,158,11,.18) !important;
}

.hp-stock-badge.stock-high{
  color:#fff !important;
  background:linear-gradient(135deg,#22c55e 0%, #16a34a 100%) !important;
  border:1px solid rgba(34,197,94,.18) !important;
}

.hp-product-media,
.hp-featured-media{
  position:relative;
}

.hp-product-media .hp-img-main,
.hp-product-media .hp-img-hover,
.hp-featured-media .hp-img-main,
.hp-featured-media .hp-img-hover{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .35s ease, transform .35s ease;
}

.hp-product-media .hp-img-hover,
.hp-featured-media .hp-img-hover{
  position:absolute;
  inset:0;
  opacity:0;
}

.hp-product-card:hover .hp-img-main,
.hp-featured-card:hover .hp-img-main{
  opacity:0;
  transform:scale(1.03);
}

.hp-product-card:hover .hp-img-hover,
.hp-featured-card:hover .hp-img-hover{
  opacity:1;
  transform:scale(1.04);
}

.hp-product-card,
.hp-featured-card{
  background:#fff !important;
  border-color:rgba(216,226,237,.95);
  box-shadow:0 14px 34px rgba(15,23,42,.06);
  backdrop-filter:none !important;
}

.hp-product-card:hover,
.hp-featured-card:hover{
  transform:translateY(-3px) scale(1.01);
  border-color:rgba(184,205,229,.98);
  box-shadow:0 22px 46px rgba(15,23,42,.10);
}

.hp-product-subline,
.hp-featured-subline{
  display:flex !important;
  flex-wrap:nowrap;
  gap:6px;
  overflow:hidden;
}

.hp-product-subline span,
.hp-featured-subline span{
  white-space:nowrap;
  font-size:.59rem;
  min-height:24px;
  padding:0 7px;
}

.hp-product-actions-single{
  display:block !important;
  margin-top:12px;
}

.hp-main-btn-full{
  width:100%;
  min-height:42px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:900;
  background:linear-gradient(135deg,#0d6efd 0%, #2563eb 100%);
  border:none;
}

.hp-main-btn-full.is-added{
  background:linear-gradient(135deg,#16a34a 0%, #15803d 100%);
}

.hp-price-emphasis{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  color:#0d6efd;
  background:rgba(13,110,253,.08);
  border:1px solid rgba(13,110,253,.12);
  font-size:1rem !important;
  font-weight:900;
}

.hp-fav-btn.active{
  color:#e11d48;
}

.hp-best-item-premium{
  border:1px solid rgba(214,223,233,.92);
  box-shadow:0 14px 34px rgba(15,23,42,.05);
}

.hp-best-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:8px;
}

.hp-best-bottom{
  margin-top:8px;
}

@media (max-width:991.98px){
  .hp-product-social{
    gap:6px;
    margin-top:7px;
  }

  .hp-product-social span{
    min-height:24px;
    padding:0 7px;
    font-size:.56rem;
    gap:4px;
  }

  .hp-main-btn-full{
    min-height:38px;
    border-radius:11px;
  }
}

@media (max-width:575.98px){
  .hp-product-card,
  .hp-featured-card{
    border-radius:18px;
  }

  .hp-product-body,
  .hp-featured-body{
    padding:8px;
  }

  .hp-product-name,
  .hp-featured-name{
    font-size:.72rem;
    line-height:1.18;
    min-height:2.2em;
  }

  .hp-product-media,
  .hp-featured-media{
    aspect-ratio:1/0.88;
  }

  .hp-top-flags{
    gap:4px;
  }

  .hp-mini-flag{
    min-height:20px;
    padding:0 6px;
    font-size:.5rem;
  }

  .hp-product-subline,
  .hp-featured-subline{
    gap:4px;
    margin-top:7px;
  }

  .hp-product-subline span,
  .hp-featured-subline span{
    font-size:.52rem;
    min-height:21px;
    padding:0 6px;
  }

  .hp-main-btn-full{
    min-height:34px;
    border-radius:10px;
    font-size:.64rem;
  }

  .hp-price-emphasis{
    min-height:30px;
    padding:0 10px;
    font-size:.84rem !important;
  }
}























/* =========================================================
   CAMPAIGN GRID V2
========================================================= */

.hp-campaigns-grid-v2{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
}

.hp-campaign-tile{
  position:relative;
  display:block;
  min-height:460px;
  border-radius:34px;
  overflow:hidden;
  text-decoration:none;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border:1px solid rgba(214,223,233,.96);
  box-shadow:0 18px 42px rgba(15,23,42,.08);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hp-campaign-tile::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.42);
  pointer-events:none;
  z-index:3;
}

.hp-campaign-tile:hover{
  transform:translateY(-4px) scale(1.01);
  box-shadow:0 28px 56px rgba(15,23,42,.12);
  border-color:rgba(184,205,229,.98);
}

.hp-campaign-shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,.10) 100%);
}

.hp-campaign-bottom-pill{
  position:absolute;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  z-index:2;
  width:min(76%, 340px);
  min-height:96px;
  border-radius:30px;
  padding:14px 20px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(15,23,42,.18);
  backdrop-filter:blur(10px);
}

.hp-campaign-bottom-title{
  font-size:1.18rem;
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.03em;
}

.hp-campaign-bottom-subtitle{
  margin-top:6px;
  font-size:.9rem;
  line-height:1.1;
  font-weight:700;
  opacity:.96;
}

/* renkler */

.hp-campaign-tile-cyan .hp-campaign-bottom-pill{
  background:linear-gradient(135deg, rgba(23,145,221,.94) 0%, rgba(15,122,201,.94) 100%);
}

.hp-campaign-tile-coral .hp-campaign-bottom-pill{
  background:linear-gradient(135deg, rgba(255,93,93,.95) 0%, rgba(239,68,68,.95) 100%);
}

.hp-campaign-tile-blue .hp-campaign-bottom-pill{
  background:linear-gradient(135deg, rgba(65,107,237,.94) 0%, rgba(37,99,235,.94) 100%);
}

.hp-campaign-tile-purple .hp-campaign-bottom-pill{
  background:linear-gradient(135deg, rgba(177,53,214,.95) 0%, rgba(219,39,119,.95) 100%);
}

/* tablet */

@media (max-width:991.98px){
  .hp-campaigns-grid-v2{
    gap:14px;
  }

  .hp-campaign-tile{
    min-height:320px;
    border-radius:24px;
  }

  .hp-campaign-bottom-pill{
    bottom:14px;
    width:min(82%, 260px);
    min-height:78px;
    border-radius:22px;
    padding:11px 14px 13px;
  }

  .hp-campaign-bottom-title{
    font-size:1rem;
  }

  .hp-campaign-bottom-subtitle{
    margin-top:5px;
    font-size:.78rem;
  }
}

/* mobile */

@media (max-width:575.98px){
  .hp-campaigns-grid-v2{
    grid-template-columns:1fr;
    gap:10px;
    margin-top:14px;
  }

  .hp-campaign-tile{
    min-height:240px;
    border-radius:20px;
  }

  .hp-campaign-bottom-pill{
    bottom:12px;
    width:min(76%, 220px);
    min-height:64px;
    border-radius:18px;
    padding:10px 12px;
  }

  .hp-campaign-bottom-title{
    font-size:.86rem;
  }

  .hp-campaign-bottom-subtitle{
    margin-top:3px;
    font-size:.68rem;
  }
}

/* =========================================================
   CAMPAIGN GRID V2 - PREMIUM DEPTH UPGRADE
========================================================= */

.hp-campaign-tile{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* genel üst katman */
.hp-campaign-tile::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.24) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 70% 82%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 18%);
  mix-blend-mode:screen;
}

/* görsel üstü yumuşak soğuk film */
.hp-campaign-shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 36%),
    linear-gradient(180deg, rgba(12,28,58,0) 0%, rgba(12,28,58,.14) 100%),
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 20%);
}

/* ince iç cam border */
.hp-campaign-tile::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    inset 0 -1px 0 rgba(255,255,255,.10);
  pointer-events:none;
  z-index:3;
}

/* alttaki renkli pill alanı */
.hp-campaign-bottom-pill{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:4;
  overflow:hidden;
  backdrop-filter:blur(10px);
}

/* pill içine iç glow */
.hp-campaign-bottom-pill::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    radial-gradient(circle at 24% 20%, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 78% 82%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 42%);
  pointer-events:none;
  z-index:1;
  mix-blend-mode:screen;
}

/* pill dış kenar parlaması */
.hp-campaign-bottom-pill::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 10px 26px rgba(15,23,42,.12);
  pointer-events:none;
  z-index:2;
}

/* yazıları öne çıkar */
.hp-campaign-bottom-title,
.hp-campaign-bottom-subtitle{
  position:relative;
  z-index:3;
  text-shadow:
    0 2px 10px rgba(0,0,0,.16),
    0 1px 0 rgba(255,255,255,.06);
}

/* kart hover’da daha derin premium hareket */
.hp-campaign-tile:hover{
  transform:translateY(-5px) scale(1.012);
  box-shadow:
    0 30px 64px rgba(15,23,42,.16),
    0 8px 18px rgba(15,23,42,.08);
}

/* hover’da ışık hafif artsın */
.hp-campaign-tile:hover::after{
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.30) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 70% 82%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 18%);
}

/* pill hover’da biraz daha canlı */
.hp-campaign-tile:hover .hp-campaign-bottom-pill{
  box-shadow:
    0 18px 40px rgba(15,23,42,.18),
    0 4px 12px rgba(255,255,255,.08);
}

/* renklerin daha derin görünmesi */
.hp-campaign-tile-cyan .hp-campaign-bottom-pill{
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(135deg, rgba(23,145,221,.96) 0%, rgba(15,122,201,.96) 100%);
}

.hp-campaign-tile-coral .hp-campaign-bottom-pill{
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.15) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(135deg, rgba(255,93,93,.97) 0%, rgba(239,68,68,.97) 100%);
}

.hp-campaign-tile-blue .hp-campaign-bottom-pill{
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.15) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(135deg, rgba(65,107,237,.96) 0%, rgba(37,99,235,.96) 100%);
}

.hp-campaign-tile-purple .hp-campaign-bottom-pill{
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.15) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(135deg, rgba(177,53,214,.97) 0%, rgba(219,39,119,.97) 100%);
}

/* mobilde efekt abartmasın */
@media (max-width:575.98px){
  .hp-campaign-tile:hover{
    transform:translateY(-2px) scale(1.004);
  }

  .hp-campaign-bottom-pill::after{
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.18),
      0 8px 18px rgba(15,23,42,.10);
  }
}
/* =========================================================
   CAMPAIGN COMPACT FIX (KÜÇÜLTME)
========================================================= */

/* DESKTOP */
.hp-campaign-tile{
  min-height:360px !important;
  border-radius:26px !important;
}

/* GRID boşluk azalt */
.hp-campaigns-grid-v2{
  gap:16px !important;
  margin-top:14px !important;
}

/* PILL küçült */
.hp-campaign-bottom-pill{
  bottom:16px !important;
  width:min(68%, 280px) !important;
  min-height:78px !important;
  border-radius:22px !important;
  padding:10px 14px !important;
}

/* YAZI küçült */
.hp-campaign-bottom-title{
  font-size:1rem !important;
}

.hp-campaign-bottom-subtitle{
  font-size:.78rem !important;
}

/* TABLET */
@media (max-width:991.98px){

  .hp-campaign-tile{
    min-height:280px !important;
    border-radius:20px !important;
  }

  .hp-campaign-bottom-pill{
    bottom:12px !important;
    width:min(74%, 240px) !important;
    min-height:64px !important;
    border-radius:18px !important;
    padding:9px 12px !important;
  }

  .hp-campaign-bottom-title{
    font-size:.92rem !important;
  }

  .hp-campaign-bottom-subtitle{
    font-size:.7rem !important;
  }
}

/* MOBILE */
@media (max-width:575.98px){

  .hp-campaigns-grid-v2{
    grid-template-columns:1fr !important;
    gap:10px !important;
  }

  .hp-campaign-tile{
    min-height:200px !important;
    border-radius:18px !important;
  }

  .hp-campaign-bottom-pill{
    bottom:10px !important;
    width:min(72%, 200px) !important;
    min-height:54px !important;
    border-radius:16px !important;
    padding:8px 10px !important;
  }

  .hp-campaign-bottom-title{
    font-size:.82rem !important;
  }

  .hp-campaign-bottom-subtitle{
    font-size:.64rem !important;
  }
}
/* =========================================================
   CAMPAIGN HOVER LIGHT MOTION
========================================================= */

.hp-campaign-tile{
  will-change: transform;
}

.hp-campaign-shade{
  transition: opacity .28s ease, transform .45s ease;
}

.hp-campaign-tile::after{
  transition: opacity .32s ease, transform .55s ease;
}

/* hareketli ışık katmanı */
.hp-campaign-tile .hp-campaign-light-sweep{
  position:absolute;
  inset:-20% auto -20% -30%;
  width:42%;
  z-index:2;
  pointer-events:none;
  opacity:0;
  transform:translateX(-18%) rotate(14deg);
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.10) 18%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.10) 82%,
    rgba(255,255,255,0) 100%
  );
  filter:blur(10px);
  transition:opacity .22s ease, transform .7s ease;
}

/* hover'da ışık kayması */
.hp-campaign-tile:hover .hp-campaign-light-sweep{
  opacity:1;
  transform:translateX(235%) rotate(14deg);
}

/* hover'da kartın iç ışığı hafif hareket etsin */
.hp-campaign-tile:hover::after{
  opacity:1;
  transform:translate3d(0,-4px,0) scale(1.03);
}

.hp-campaign-tile:hover .hp-campaign-shade{
  transform:scale(1.02);
  opacity:1;
}

/* pill alanı canlılaşsın */
.hp-campaign-bottom-pill{
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.hp-campaign-tile:hover .hp-campaign-bottom-pill{
  transform:translateX(-50%) translateY(-2px);
  filter:saturate(1.06) brightness(1.03);
  box-shadow:
    0 20px 38px rgba(15,23,42,.18),
    0 6px 14px rgba(255,255,255,.08);
}

/* yazıda hafif canlılık */
.hp-campaign-bottom-title,
.hp-campaign-bottom-subtitle{
  transition:transform .24s ease, opacity .24s ease;
}

.hp-campaign-tile:hover .hp-campaign-bottom-title{
  transform:translateY(-1px);
}

.hp-campaign-tile:hover .hp-campaign-bottom-subtitle{
  transform:translateY(-1px);
  opacity:1;
}

/* mobilde daha sakin */
@media (max-width:575.98px){
  .hp-campaign-tile .hp-campaign-light-sweep{
    width:52%;
    filter:blur(8px);
  }

  .hp-campaign-tile:hover .hp-campaign-light-sweep{
    transform:translateX(185%) rotate(14deg);
  }

  .hp-campaign-tile:hover .hp-campaign-bottom-pill{
    transform:translateX(-50%) translateY(-1px);
  }
}

/* =========================================================
   CAMPAIGN AMBIENT GLOW
========================================================= */

.hp-campaign-tile{
  position:relative;
  overflow:hidden;
}

/* sürekli yaşayan yumuşak ortam ışığı */
.hp-campaign-tile .hp-campaign-ambient-glow{
  position:absolute;
  inset:-18%;
  z-index:1;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 20%),
    radial-gradient(circle at 68% 78%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 18%);
  filter:blur(26px);
  animation: hpAmbientGlowMove 7.5s ease-in-out infinite alternate;
  mix-blend-mode:screen;
}

/* hover'da biraz canlansın */
.hp-campaign-tile:hover .hp-campaign-ambient-glow{
  opacity:.8;
  filter:blur(22px);
}

@keyframes hpAmbientGlowMove{
  0%{
    transform:translate3d(-1.5%, -1%, 0) scale(1);
  }
  50%{
    transform:translate3d(1.5%, 1.2%, 0) scale(1.03);
  }
  100%{
    transform:translate3d(.5%, -1.2%, 0) scale(1.015);
  }
}

/* mobilde daha sakin */
@media (max-width:575.98px){
  .hp-campaign-tile .hp-campaign-ambient-glow{
    opacity:.42;
    filter:blur(18px);
    animation-duration:9s;
  }

  .hp-campaign-tile:hover .hp-campaign-ambient-glow{
    opacity:.6;
    filter:blur(16px);
  }
}
/* =========================================================
   PRODUCT CARD - AMBIENT + LIGHT SYSTEM
========================================================= */

.hp-product-media{
  position:relative;
  overflow:hidden;
}

/* AMBIENT IŞIK */
.hp-product-ambient{
  position:absolute;
  inset:-20%;
  z-index:1;
  pointer-events:none;
  opacity:.45;

  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 20%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 18%);

  filter:blur(22px);
  mix-blend-mode:screen;

  animation: hpProductAmbient 9s ease-in-out infinite alternate;
}

@keyframes hpProductAmbient{
  0%{
    transform:translate3d(-1%, -1%, 0) scale(1);
  }
  50%{
    transform:translate3d(1.2%, 1.4%, 0) scale(1.03);
  }
  100%{
    transform:translate3d(.6%, -1.2%, 0) scale(1.02);
  }
}

/* LIGHT SWEEP */
.hp-product-light{
  position:absolute;
  inset:-30% auto -30% -40%;
  width:45%;
  z-index:2;
  pointer-events:none;

  opacity:0;
  transform:translateX(-30%) rotate(16deg);

  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.12) 30%,
    rgba(255,255,255,.25) 50%,
    rgba(255,255,255,.12) 70%,
    rgba(255,255,255,0) 100%
  );

  filter:blur(10px);
  transition:all .6s ease;
}

/* HOVER EFFECT */
.hp-product-card:hover .hp-product-light{
  opacity:1;
  transform:translateX(220%) rotate(16deg);
}

/* HOVER DERİNLİK */
.hp-product-card{
  transition:transform .25s ease, box-shadow .25s ease;
}

.hp-product-card:hover{
  transform:translateY(-4px) scale(1.01);
  box-shadow:
    0 20px 40px rgba(15,23,42,.10),
    0 6px 14px rgba(15,23,42,.06);
}

/* GÖRSEL HOVER */
.hp-product-card:hover .hp-img-main{
  transform:scale(1.04);
}

.hp-product-card:hover .hp-img-hover{
  transform:scale(1.05);
}

/* AMBIENT HOVER ARTIŞ */
.hp-product-card:hover .hp-product-ambient{
  opacity:.65;
  filter:blur(18px);
}

/* MOBİL */
@media(max-width:575px){

  .hp-product-ambient{
    opacity:.32;
    filter:blur(16px);
    animation-duration:11s;
  }

  .hp-product-card:hover .hp-product-light{
    transform:translateX(160%) rotate(16deg);
  }

}
/* =========================================================
   PRODUCT CARD MICRO INTERACTIONS
========================================================= */

/* fiyat pulse */
.hp-product-card:hover .hp-price-emphasis,
.hp-featured-card:hover .hp-price-emphasis{
  animation:hpPricePulse .8s ease;
}

@keyframes hpPricePulse{
  0%{ transform:scale(1); }
  40%{ transform:scale(1.06); }
  100%{ transform:scale(1); }
}

/* live watch */
.hp-live-watch{
  margin-top:8px;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.63rem;
  font-weight:800;
  color:#0f766e;
  background:rgba(20,184,166,.10);
  border:1px solid rgba(20,184,166,.16);
}

/* stok meter */
.hp-stock-meter{
  margin-top:9px;
}

.hp-stock-meter-label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
  font-size:.62rem;
  font-weight:800;
  color:#5b6b80;
}

.hp-stock-meter-label strong{
  color:#0f172a;
  font-weight:900;
}

.hp-stock-meter-bar{
  position:relative;
  height:8px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(13,110,253,.08);
  border:1px solid rgba(13,110,253,.08);
}

.hp-stock-meter-bar span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#22c55e 0%, #16a34a 100%);
  box-shadow:0 0 12px rgba(34,197,94,.24);
  animation:hpStockBarGrow 1s ease;
}

@keyframes hpStockBarGrow{
  0%{ width:0 !important; }
}

/* düşük stokta bar rengi */
.hp-stock-badge.stock-low ~ .hp-product-body .hp-stock-meter-bar span{
  background:linear-gradient(90deg,#ef4444 0%, #dc2626 100%);
  box-shadow:0 0 12px rgba(239,68,68,.24);
}

.hp-stock-badge.stock-mid ~ .hp-product-body .hp-stock-meter-bar span{
  background:linear-gradient(90deg,#f59e0b 0%, #d97706 100%);
  box-shadow:0 0 12px rgba(245,158,11,.24);
}

/* toast */
.hp-cart-toast{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  min-width:250px;
  max-width:320px;
  padding:12px 14px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(214,223,233,.96);
  box-shadow:0 18px 46px rgba(15,23,42,.16);
  backdrop-filter:blur(12px);
  transform:translateY(18px);
  opacity:0;
  pointer-events:none;
  transition:all .25s ease;
}

.hp-cart-toast.show{
  transform:translateY(0);
  opacity:1;
}

.hp-cart-toast-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#22c55e 0%, #16a34a 100%);
  color:#fff;
  font-size:1.1rem;
  flex:0 0 auto;
}

.hp-cart-toast-body{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.hp-cart-toast-body strong{
  font-size:.82rem;
  line-height:1.1;
  color:#0f172a;
}

.hp-cart-toast-body span{
  font-size:.7rem;
  line-height:1.2;
  color:#64748b;
}

/* mobil */
@media (max-width:575.98px){
  .hp-live-watch{
    margin-top:7px;
    min-height:24px;
    padding:0 8px;
    font-size:.56rem;
  }

  .hp-stock-meter{
    margin-top:8px;
  }

  .hp-stock-meter-label{
    font-size:.56rem;
    margin-bottom:5px;
  }

  .hp-stock-meter-bar{
    height:7px;
  }

  .hp-cart-toast{
    left:10px;
    right:10px;
    bottom:10px;
    min-width:0;
    max-width:none;
    padding:10px 12px;
    border-radius:14px;
  }

  .hp-cart-toast-icon{
    width:36px;
    height:36px;
    border-radius:12px;
    font-size:.95rem;
  }

  .hp-cart-toast-body strong{
    font-size:.74rem;
  }

  .hp-cart-toast-body span{
    font-size:.64rem;
  }
}
.hp-stock-meter.stock-low .hp-stock-meter-bar span{
  background:linear-gradient(90deg,#ef4444 0%, #dc2626 100%);
  box-shadow:0 0 12px rgba(239,68,68,.24);
}

.hp-stock-meter.stock-mid .hp-stock-meter-bar span{
  background:linear-gradient(90deg,#f59e0b 0%, #d97706 100%);
  box-shadow:0 0 12px rgba(245,158,11,.24);
}

.hp-stock-meter.stock-high .hp-stock-meter-bar span{
  background:linear-gradient(90deg,#22c55e 0%, #16a34a 100%);
  box-shadow:0 0 12px rgba(34,197,94,.24);
}

































































































/* =========================================================
CHECKOUT PREMIUM UI PACK — APP.CSS'E EKLE
GÜNCEL SÜRÜM — Başlık küçültüldü, ödeme alanı düzeltildi,
kart taşmaları ve hizalama bozuklukları giderildi.
Mevcut chx checkout bloğunu komple bununla değiştir.
========================================================= */

:root{
  --chx-bg:#ffffff;
  --chx-soft:#f6f9fe;
  --chx-soft-2:#eef4fb;
  --chx-soft-3:#e8f0fb;
  --chx-line:rgba(15,23,42,.08);
  --chx-line-2:rgba(15,23,42,.12);
  --chx-text:#0f172a;
  --chx-muted:#64748b;
  --chx-blue:#2563eb;
  --chx-blue-2:#1d4ed8;
  --chx-cyan:#0ea5e9;
  --chx-green:#16a34a;
  --chx-green-2:#15803d;
  --chx-amber:#f59e0b;
  --chx-red:#dc2626;
  --chx-violet:#7c3aed;
  --chx-radius-2xl:32px;
  --chx-radius-xl:26px;
  --chx-radius-lg:20px;
  --chx-radius-md:16px;
  --chx-radius-sm:12px;
  --chx-shadow-xs:0 8px 20px rgba(15,23,42,.04);
  --chx-shadow-sm:0 14px 34px rgba(15,23,42,.06);
  --chx-shadow-md:0 24px 54px rgba(15,23,42,.09);
  --chx-shadow-lg:0 34px 80px rgba(15,23,42,.12);
}

/* SAYFA ANA ALAN */
.chx-page{
  position:relative;
  color:var(--chx-text);
  background:
    radial-gradient(680px 220px at 0% 0%, rgba(37,99,235,.08), transparent 52%),
    radial-gradient(540px 220px at 100% 0%, rgba(14,165,233,.07), transparent 52%),
    linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
}

.chx-shell{
  width:100%;
  max-width:1460px;
  margin:0 auto;
  padding:18px 10px 28px;
}

.chx-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) 420px;
  gap:20px;
  align-items:start;
}

.chx-main{
  display:flex;
  flex-direction:column;
  gap:18px;
  min-width:0;
}

.chx-side{
  position:sticky;
  top:18px;
  min-width:0;
}

/* HERO */
.chx-hero{
  position:relative;
  overflow:hidden;
  border-radius:var(--chx-radius-2xl);
  border:1px solid rgba(37,99,235,.10);
  background:
    radial-gradient(460px 180px at 0% 0%, rgba(37,99,235,.11), transparent 58%),
    radial-gradient(420px 180px at 100% 100%, rgba(14,165,233,.09), transparent 58%),
    linear-gradient(145deg,#ffffff 0%, #f6faff 100%);
  box-shadow:var(--chx-shadow-md);
  padding:20px 22px;
}

.chx-hero::before{
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(37,99,235,.12), transparent 66%);
  pointer-events:none;
}

.chx-hero::after{
  content:"";
  position:absolute;
  left:-80px;
  bottom:-100px;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(14,165,233,.10), transparent 66%);
  pointer-events:none;
}

.chx-hero-top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.chx-hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

.chx-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(37,99,235,.10);
  background:rgba(255,255,255,.82);
  color:#1e3a8a;
  font-size:11px;
  font-weight:1000;
  box-shadow:0 8px 18px rgba(15,23,42,.04);
  backdrop-filter:blur(8px);
}

.chx-badge i{
  color:var(--chx-blue);
  font-size:13px;
}

/* BAŞLIK KÜÇÜLTÜLDÜ */
.chx-title{
  margin:0;
  max-width:640px;
  font-size:clamp(22px, 2.2vw, 28px) !important;
  line-height:1.18 !important;
  letter-spacing:-.025em;
  font-weight:900 !important;
  color:#0b1220;
}

.chx-subtitle{
  margin:10px 0 0;
  max-width:520px;
  font-size:13px;
  line-height:1.6;
  font-weight:700;
  color:#526277;
}

.chx-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}

.chx-btn{
  position:relative;
  overflow:hidden;
  min-height:46px;
  padding:0 16px;
  border-radius:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  text-decoration:none;
  font-size:13px;
  font-weight:1000;
  letter-spacing:-.01em;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease, border-color .18s ease;
}

.chx-btn i{
  font-size:14px;
  line-height:1;
}

.chx-btn:hover{
  transform:translateY(-1px);
}

.chx-btn-ghost{
  color:#0f172a;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.chx-btn-ghost:hover{
  border-color:rgba(37,99,235,.22);
  color:var(--chx-blue);
}

.chx-btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--chx-blue) 0%, var(--chx-blue-2) 100%);
  border:1px solid rgba(37,99,235,.16);
  box-shadow:0 18px 34px rgba(37,99,235,.24);
}

.chx-btn-primary:hover{
  filter:brightness(.98);
}

.chx-metrics{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}

.chx-metric{
  position:relative;
  overflow:hidden;
  min-height:102px;
  padding:14px 14px 13px;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.07);
  background:rgba(255,255,255,.88);
  box-shadow:var(--chx-shadow-xs);
}

.chx-metric::before{
  content:"";
  position:absolute;
  inset:auto -28px -36px auto;
  width:100px;
  height:100px;
  border-radius:999px;
  opacity:.18;
  pointer-events:none;
}

.chx-metric.is-blue::before{ background:radial-gradient(circle, var(--chx-blue), transparent 70%); }
.chx-metric.is-cyan::before{ background:radial-gradient(circle, var(--chx-cyan), transparent 70%); }
.chx-metric.is-green::before{ background:radial-gradient(circle, var(--chx-green), transparent 70%); }
.chx-metric.is-amber::before{ background:radial-gradient(circle, var(--chx-amber), transparent 70%); }

.chx-metric-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.chx-metric-icon{
  width:36px;
  height:36px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 12px 24px rgba(15,23,42,.12);
}

.chx-metric-icon i{ font-size:15px; }
.chx-metric-icon.is-blue{ background:linear-gradient(135deg,#2563eb,#1d4ed8); }
.chx-metric-icon.is-cyan{ background:linear-gradient(135deg,#0ea5e9,#0284c7); }
.chx-metric-icon.is-green{ background:linear-gradient(135deg,#16a34a,#15803d); }
.chx-metric-icon.is-amber{ background:linear-gradient(135deg,#f59e0b,#d97706); }

.chx-metric-k{
  margin-top:10px;
  font-size:10px;
  line-height:1.1;
  font-weight:1000;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.chx-metric-v{
  margin-top:6px;
  font-size:22px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:1100;
  color:#0b1220;
}

.chx-metric-s{
  margin-top:8px;
  font-size:11px;
  line-height:1.35;
  font-weight:800;
  color:#6b7280;
}

/* SURFACES */
.chx-surface{
  position:relative;
  overflow:hidden;
  margin-top:10px;
  border-radius:var(--chx-radius-xl);
  border:1px solid var(--chx-line);
  background:
    radial-gradient(540px 180px at 100% 0%, rgba(37,99,235,.04), transparent 62%),
    linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  box-shadow:var(--chx-shadow-sm);
}

.chx-surface-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:20px 20px 0;
}

.chx-surface-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  font-size:19px;
  line-height:1.05;
  font-weight:1100;
  letter-spacing:-.03em;
  color:#0b1220;
}

.chx-surface-title i{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(37,99,235,.14), rgba(14,165,233,.16));
  color:var(--chx-blue);
  font-size:15px;
  box-shadow:0 8px 16px rgba(37,99,235,.08);
}

.chx-surface-desc{
  margin:8px 0 0;
  max-width:56ch;
  font-size:13px;
  line-height:1.62;
  font-weight:700;
  color:#64748b;
}

.chx-surface-body{
  padding:16px 20px 20px;
  overflow:hidden; /* ödeme alanı taşma fix */
}

/* ALERTS */
.chx-alert{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid transparent;
  font-size:13px;
  line-height:1.6;
  font-weight:800;
}

.chx-alert i{
  margin-top:2px;
  font-size:15px;
  line-height:1;
  flex:0 0 auto;
}

.chx-alert-info{
  background:linear-gradient(180deg, rgba(37,99,235,.07), rgba(37,99,235,.03));
  border-color:rgba(37,99,235,.12);
  color:#1e3a8a;
}

.chx-alert-danger{
  background:linear-gradient(180deg, rgba(220,38,38,.08), rgba(220,38,38,.03));
  border-color:rgba(220,38,38,.12);
  color:#991b1b;
}

.chx-alert-success{
  background:linear-gradient(180deg, rgba(22,163,74,.08), rgba(22,163,74,.03));
  border-color:rgba(22,163,74,.12);
  color:#166534;
}

/* COUPON */
.chx-coupon-bar{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px;
}

.chx-input-group{
  position:relative;
}

.chx-input-ico{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#64748b;
  z-index:2;
  pointer-events:none;
}

.chx-input,
.chx-textarea{
  width:100%;
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.82);
  color:#0f172a;
  font-size:14px;
  font-weight:800;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.chx-input{
  min-height:54px;
  padding:0 16px 0 46px;
}

.chx-input.no-icon{
  padding-left:16px;
}

.chx-textarea{
  min-height:128px;
  resize:vertical;
  padding:14px 16px;
}

.chx-input:focus,
.chx-textarea:focus{
  border-color:rgba(37,99,235,.32);
  box-shadow:
    0 0 0 .24rem rgba(37,99,235,.11),
    0 12px 28px rgba(37,99,235,.08);
  background:#fff;
}

.chx-apply-btn{
  min-width:148px;
}

.chx-coupon-active{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px;
  border-radius:20px;
  border:1px solid rgba(22,163,74,.14);
  background:
    radial-gradient(240px 80px at 100% 0%, rgba(22,163,74,.08), transparent 64%),
    linear-gradient(180deg, rgba(22,163,74,.08), rgba(22,163,74,.03));
}

.chx-coupon-left{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.chx-coupon-stamp{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#16a34a,#15803d);
  color:#fff;
  box-shadow:0 12px 22px rgba(22,163,74,.22);
}

.chx-coupon-stamp i{ font-size:16px; }

.chx-coupon-code{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:32px;
  padding:0 11px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(22,163,74,.16);
  color:#166534;
  font-size:11px;
  font-weight:1100;
}

.chx-coupon-meta{
  margin-top:6px;
  font-size:12px;
  line-height:1.5;
  font-weight:800;
  color:#526277;
}

.chx-coupon-remove{
  min-height:42px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(220,38,38,.14);
  background:#fff;
  color:#b91c1c;
  font-size:12px;
  font-weight:1000;
}

/* FORM GRID */
.chx-form-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:14px;
}

.chx-col-12{ grid-column:span 12; }
.chx-col-6{ grid-column:span 6; }
.chx-col-4{ grid-column:span 4; }

.chx-block{
  position:relative;
  overflow:hidden;
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.07);
  background:
    radial-gradient(240px 80px at 100% 0%, rgba(37,99,235,.04), transparent 60%),
    linear-gradient(180deg,#ffffff 0%, #fafcff 100%);
  box-shadow:var(--chx-shadow-xs);
}

.chx-block + .chx-block{
  margin-top:14px;
}

.chx-block-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.chx-block-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  font-size:15px;
  line-height:1.05;
  font-weight:1100;
  letter-spacing:-.02em;
}

.chx-block-title i{
  width:32px;
  height:32px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(37,99,235,.14), rgba(14,165,233,.14));
  color:var(--chx-blue);
  font-size:14px;
}

.chx-label{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  line-height:1.1;
  font-weight:1000;
  color:#334155;
  letter-spacing:.01em;
}

.chx-helper{
  margin-top:7px;
  font-size:11px;
  line-height:1.45;
  font-weight:800;
  color:#6b7280;
}

/* PAYMENT — DÜZELTİLDİ */
.chx-payment-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}

.chx-pay{
  position:relative;
  width:100%;
  min-width:0;
}

.chx-pay input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.chx-pay-card{
  position:relative;
  z-index:1;
  overflow:hidden;
  min-height:156px;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.08);
  background:
    radial-gradient(220px 80px at 100% 0%, rgba(37,99,235,.06), transparent 58%),
    linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  box-shadow:var(--chx-shadow-xs);
  transition:all .25s ease;
  cursor:pointer;
}

.chx-pay-card:hover{
  transform:translateY(-4px);
  z-index:2;
  border-color:rgba(37,99,235,.18);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.chx-pay-card.is-disabled{
  opacity:.62;
  filter:grayscale(.1);
  cursor:not-allowed;
}

.chx-pay input:checked + .chx-pay-card{
  border-color:rgba(37,99,235,.28);
  box-shadow:0 18px 34px rgba(37,99,235,.12);
  background:
    radial-gradient(220px 80px at 100% 0%, rgba(37,99,235,.11), transparent 58%),
    linear-gradient(180deg, rgba(37,99,235,.08) 0%, rgba(255,255,255,1) 100%);
}

.chx-pay-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.chx-pay-ico{
  width:42px;
  height:42px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 12px 24px rgba(15,23,42,.14);
}

.chx-pay-ico i{ font-size:18px; }
.chx-pay-ico.bank{ background:linear-gradient(135deg,#2563eb,#1d4ed8); }
.chx-pay-ico.card{ background:linear-gradient(135deg,#7c3aed,#6d28d9); }
.chx-pay-ico.cod{ background:linear-gradient(135deg,#f59e0b,#d97706); }

.chx-pay-state{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:26px;
  padding:0 9px;
  border-radius:999px;
  font-size:10px;
  font-weight:1100;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.chx-pay-state.live{
  background:rgba(22,163,74,.10);
  color:#166534;
  border:1px solid rgba(22,163,74,.12);
}

.chx-pay-state.soon{
  background:rgba(245,158,11,.10);
  color:#92400e;
  border:1px solid rgba(245,158,11,.12);
}

.chx-pay-title{
  margin-top:14px;
  font-size:14px;
  line-height:1.15;
  font-weight:1100;
  color:#0b1220;
}

.chx-pay-text{
  margin-top:7px;
  font-size:12px;
  line-height:1.5;
  font-weight:800;
  color:#64748b;
}

.chx-pay-badges{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:10px;
}

.chx-pay-badges span{
  min-height:26px;
  padding:0 8px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  color:#475569;
  font-size:10.5px;
  font-weight:1000;
}

/* ORDER ITEMS */
.chx-items{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.chx-item{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:98px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  border-radius:22px;
  border:1px solid rgba(15,23,42,.08);
  background:
    radial-gradient(220px 80px at 100% 0%, rgba(37,99,235,.04), transparent 60%),
    linear-gradient(180deg,#ffffff 0%, #fafcff 100%);
  box-shadow:var(--chx-shadow-xs);
  padding:13px;
}

.chx-item-media{
  position:relative;
  width:98px;
  height:98px;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(15,23,42,.07);
  box-shadow:0 10px 22px rgba(15,23,42,.05);
}

.chx-item-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.chx-item-empty{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:900;
  color:#64748b;
  background:linear-gradient(135deg, rgba(37,99,235,.08), rgba(14,165,233,.06));
}

.chx-item-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:8px;
}

.chx-item-badge{
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:#eef4fc;
  border:1px solid rgba(37,99,235,.08);
  color:#334155;
  font-size:10.5px;
  font-weight:1100;
}

.chx-item-title{
  display:block;
  color:#0f172a;
  text-decoration:none;
  font-size:15px;
  line-height:1.42;
  font-weight:1100;
  letter-spacing:-.02em;
  max-width:32ch;
}

.chx-item-title:hover{
  color:var(--chx-blue);
}

.chx-item-sub{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.chx-item-sub span{
  min-height:29px;
  padding:0 10px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  color:#526277;
  font-size:11px;
  font-weight:1000;
}

.chx-item-price{
  min-width:150px;
  text-align:right;
}

.chx-item-price-k{
  font-size:11px;
  line-height:1.1;
  font-weight:1000;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.chx-item-price-v{
  margin-top:7px;
  font-size:20px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:1100;
  color:#0b1220;
}

/* SIDE SUMMARY */
.chx-summary{
  position:relative;
  overflow:hidden;
  border-radius:var(--chx-radius-2xl);
  border:1px solid rgba(15,23,42,.08);
  background:
    radial-gradient(320px 140px at 100% 0%, rgba(37,99,235,.09), transparent 58%),
    radial-gradient(260px 120px at 0% 100%, rgba(14,165,233,.08), transparent 58%),
    linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  box-shadow:var(--chx-shadow-lg);
}

.chx-summary-head{
  padding:22px 22px 0;
}

.chx-summary-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  font-size:20px;
  line-height:1.04;
  font-weight:1100;
  letter-spacing:-.03em;
  color:#0b1220;
}

.chx-summary-title i{
  width:36px;
  height:36px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  box-shadow:0 14px 28px rgba(37,99,235,.22);
  font-size:15px;
}

.chx-summary-desc{
  margin:8px 0 0;
  font-size:13px;
  line-height:1.6;
  font-weight:700;
  color:#64748b;
}

.chx-summary-body{
  padding:16px 22px 22px;
}

.chx-summary-card{
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(15,23,42,.07);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.98));
  box-shadow:0 16px 30px rgba(15,23,42,.05);
}

.chx-summary-rows{
  display:grid;
  gap:8px;
}

.chx-srow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  min-height:34px;
}

.chx-srow .k{
  color:#64748b;
  font-size:12px;
  font-weight:900;
}

.chx-srow .v{
  color:#0f172a;
  font-size:13px;
  font-weight:1100;
}

.chx-srow.total{
  margin-top:8px;
  padding-top:14px;
  border-top:1px solid rgba(15,23,42,.08);
}

.chx-srow.total .k,
.chx-srow.total .v{
  font-size:18px;
  line-height:1.05;
  font-weight:1100;
  letter-spacing:-.03em;
}

.chx-summary-mini{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}

.chx-summary-mini-card{
  padding:12px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 10px 22px rgba(15,23,42,.04);
}

.chx-summary-mini-k{
  font-size:10px;
  line-height:1.1;
  font-weight:1100;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.chx-summary-mini-v{
  margin-top:7px;
  font-size:17px;
  line-height:1;
  font-weight:1100;
  letter-spacing:-.04em;
  color:#0b1220;
}

.chx-note-box{
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  border:1px dashed rgba(15,23,42,.12);
  background:rgba(255,255,255,.82);
}

.chx-note-k{
  font-size:10px;
  line-height:1.1;
  font-weight:1100;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.chx-note-v{
  margin-top:7px;
  font-size:12px;
  line-height:1.62;
  font-weight:800;
  color:#475569;
}

.chx-cta-wrap{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.chx-submit{
  min-height:58px;
  border:0;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(135deg,var(--chx-blue) 0%, var(--chx-blue-2) 100%);
  color:#fff;
  font-size:14px;
  font-weight:1100;
  box-shadow:0 20px 38px rgba(37,99,235,.24);
}

.chx-submit i{ font-size:16px; }

.chx-submit:hover{
  transform:translateY(-1px);
  filter:brightness(.99);
}

.chx-submit[disabled]{
  opacity:.72;
  pointer-events:none;
}

.chx-submit.is-loading{
  position:relative;
  color:transparent !important;
}

.chx-submit.is-loading::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:18px;
  height:18px;
  margin-left:-9px;
  margin-top:-9px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.35);
  border-top-color:#fff;
  animation:chxSpin .7s linear infinite;
}

@keyframes chxSpin{
  to{ transform:rotate(360deg); }
}

.chx-safe-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}

.chx-safe{
  min-height:56px;
  padding:11px 12px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.06);
  background:#fff;
  box-shadow:0 10px 22px rgba(15,23,42,.04);
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.chx-safe i{
  margin-top:2px;
  color:var(--chx-blue);
  font-size:15px;
  line-height:1;
}

.chx-safe span{
  font-size:11px;
  line-height:1.45;
  font-weight:1000;
  color:#475569;
}

/* MINI STATUS BOX */
.chx-status-inline{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:48px;
  padding:0 14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.06);
  background:#fff;
  box-shadow:0 10px 22px rgba(15,23,42,.04);
}

.chx-status-inline i{
  color:var(--chx-green);
  font-size:15px;
}

.chx-status-inline span{
  font-size:12px;
  font-weight:1000;
  color:#334155;
}

/* VALIDATION */
.chx-field{
  display:grid;
  gap:7px;
}

.chx-field.is-invalid .chx-input,
.chx-field.is-invalid .chx-textarea{
  border-color:rgba(220,38,38,.28);
  box-shadow:0 0 0 .18rem rgba(220,38,38,.10);
}

.chx-field.is-valid .chx-input,
.chx-field.is-valid .chx-textarea{
  border-color:rgba(22,163,74,.28);
  box-shadow:0 0 0 .18rem rgba(22,163,74,.10);
}

.chx-hint{
  display:none;
  font-size:11px;
  line-height:1.35;
  font-weight:1000;
}

.chx-hint.show{ display:block; }
.chx-hint.error{ color:#b91c1c; }
.chx-hint.ok{ color:#166534; }

/* SUCCESS SCREEN */
.chx-success{
  max-width:980px;
  margin:0 auto;
  display:grid;
  gap:18px;
}

.chx-success-hero{
  position:relative;
  overflow:hidden;
  padding:28px;
  border-radius:34px;
  border:1px solid rgba(22,163,74,.12);
  background:
    radial-gradient(480px 180px at 100% 0%, rgba(22,163,74,.12), transparent 58%),
    radial-gradient(340px 140px at 0% 100%, rgba(14,165,233,.08), transparent 58%),
    linear-gradient(180deg,#ffffff 0%, #f7fff9 100%);
  box-shadow:var(--chx-shadow-md);
}

.chx-success-mark{
  width:72px;
  height:72px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#16a34a,#15803d);
  color:#fff;
  box-shadow:0 20px 36px rgba(22,163,74,.24);
}

.chx-success-mark i{ font-size:28px; }

.chx-success-title{
  margin:16px 0 0;
  font-size:40px;
  line-height:.98;
  letter-spacing:-.05em;
  font-weight:1100;
  color:#0b1220;
}

.chx-success-sub{
  margin:12px 0 0;
  max-width:58ch;
  font-size:14px;
  line-height:1.7;
  font-weight:700;
  color:#526277;
}

.chx-success-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}

.chx-success-box{
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(15,23,42,.07);
  background:#fff;
  box-shadow:var(--chx-shadow-xs);
}

.chx-success-k{
  font-size:10px;
  line-height:1.1;
  font-weight:1100;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.chx-success-v{
  margin-top:8px;
  font-size:21px;
  line-height:1;
  font-weight:1100;
  letter-spacing:-.04em;
  color:#0b1220;
}

.chx-success-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

/* TABLET */
@media (max-width:1199.98px){
  .chx-grid{
    grid-template-columns:minmax(0,1fr) 390px;
  }

  .chx-metrics{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .chx-payment-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .chx-payment-grid .chx-pay:last-child{
    grid-column:1 / -1;
  }
}

/* MOBILE / LAPTOP ALT */
@media (max-width:991.98px){
  .chx-shell{
    padding-top:14px;
  }

  .chx-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .chx-side{
    position:static;
    top:auto;
  }

  .chx-hero-top{
    flex-direction:column;
  }

  .chx-hero-actions{
    justify-content:flex-start;
  }
}

/* XS MOBILE */
@media (max-width:575.98px){
  .chx-shell{
    padding:10px 8px 18px;
  }

  .chx-main{
    gap:12px;
  }

  .chx-hero{
    padding:14px;
    border-radius:22px;
  }

  .chx-hero-badges{
    gap:6px;
    margin-bottom:10px;
  }

  .chx-badge{
    min-height:28px;
    padding:0 9px;
    font-size:9.5px;
    gap:6px;
  }

  .chx-badge i{
    font-size:11px;
  }

  .chx-title{
    font-size:22px !important;
    line-height:1.18 !important;
    max-width:none;
  }

  .chx-subtitle{
    margin-top:8px;
    font-size:11.4px;
    line-height:1.5;
    max-width:none;
  }

  .chx-hero-actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:2px;
  }

  .chx-btn{
    min-height:40px;
    padding:0 10px;
    border-radius:12px;
    font-size:11px;
    gap:6px;
  }

  .chx-btn i{
    font-size:12px;
  }

  .chx-metrics{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin-top:12px;
  }

  .chx-metric{
    min-height:92px;
    padding:10px 10px 9px;
    border-radius:16px;
  }

  .chx-metric-icon{
    width:30px;
    height:30px;
    border-radius:11px;
  }

  .chx-metric-icon i{
    font-size:13px;
  }

  .chx-metric-k{
    margin-top:8px;
    font-size:8.4px;
  }

  .chx-metric-v{
    margin-top:4px;
    font-size:16px;
  }

  .chx-metric-s{
    margin-top:5px;
    font-size:9px;
    line-height:1.22;
  }

  .chx-surface{
    border-radius:18px;
  }

  .chx-surface-head{
    padding:14px 14px 0;
  }

  .chx-surface-title{
    font-size:15px;
    gap:8px;
  }

  .chx-surface-title i{
    width:28px;
    height:28px;
    border-radius:10px;
    font-size:12px;
  }

  .chx-surface-desc{
    margin-top:6px;
    font-size:10.6px;
    line-height:1.4;
  }

  .chx-surface-body{
    padding:12px 14px 14px;
  }

  .chx-alert{
    padding:10px 11px;
    border-radius:14px;
    font-size:10.8px;
    line-height:1.45;
  }

  .chx-alert i{
    font-size:13px;
  }

  .chx-coupon-bar{
    grid-template-columns:1fr;
    gap:8px;
  }

  .chx-input{
    min-height:44px;
    border-radius:12px;
    font-size:12px;
    padding-left:38px;
    padding-right:12px;
  }

  .chx-input.no-icon{
    padding-left:12px;
  }

  .chx-input-ico{
    left:11px;
    width:16px;
    height:16px;
  }

  .chx-input-ico i{
    font-size:12px;
  }

  .chx-textarea{
    min-height:92px;
    border-radius:12px;
    font-size:12px;
    padding:11px 12px;
  }

  .chx-coupon-active{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:11px;
    border-radius:14px;
  }

  .chx-coupon-left{
    gap:10px;
  }

  .chx-coupon-stamp{
    width:34px;
    height:34px;
    border-radius:12px;
  }

  .chx-coupon-stamp i{
    font-size:13px;
  }

  .chx-coupon-code{
    min-height:28px;
    padding:0 8px;
    font-size:9.8px;
  }

  .chx-coupon-meta{
    margin-top:4px;
    font-size:10.4px;
  }

  .chx-coupon-remove{
    width:100%;
    min-height:36px;
    border-radius:11px;
    font-size:10.8px;
  }

  .chx-form-grid{
    gap:8px;
  }

  .chx-col-6,
  .chx-col-4{
    grid-column:span 12;
  }

  .chx-block{
    padding:11px;
    border-radius:14px;
  }

  .chx-block + .chx-block{
    margin-top:10px;
  }

  .chx-block-head{
    margin-bottom:10px;
  }

  .chx-block-title{
    font-size:12.2px;
    gap:7px;
  }

  .chx-block-title i{
    width:26px;
    height:26px;
    border-radius:9px;
    font-size:11px;
  }

  .chx-label{
    margin-bottom:6px;
    font-size:10px;
  }

  .chx-helper{
    margin-top:6px;
    font-size:9px;
    line-height:1.3;
  }

  .chx-payment-grid{
    grid-template-columns:1fr !important;
    gap:8px;
  }

  .chx-payment-grid .chx-pay:last-child{
    grid-column:auto;
  }

  .chx-pay-card{
    min-height:104px;
    padding:11px;
    border-radius:14px;
  }

  .chx-pay-ico{
    width:34px;
    height:34px;
    border-radius:12px;
  }

  .chx-pay-ico i{
    font-size:14px;
  }

  .chx-pay-state{
    min-height:22px;
    padding:0 7px;
    font-size:8.8px;
  }

  .chx-pay-title{
    margin-top:10px;
    font-size:12px;
  }

  .chx-pay-text{
    margin-top:5px;
    font-size:9.8px;
    line-height:1.35;
  }

  .chx-pay-badges{
    gap:6px;
    margin-top:8px;
  }

  .chx-pay-badges span{
    min-height:22px;
    padding:0 7px;
    font-size:8.6px;
    gap:4px;
  }

  .chx-items{
    gap:8px;
  }

  .chx-item{
    grid-template-columns:62px minmax(0,1fr);
    gap:9px;
    border-radius:15px;
    padding:9px;
  }

  .chx-item-media{
    width:62px;
    height:62px;
    border-radius:12px;
  }

  .chx-item-badges{
    gap:5px;
    margin-bottom:6px;
  }

  .chx-item-badge{
    min-height:22px;
    padding:0 7px;
    font-size:8.3px;
  }

  .chx-item-title{
    font-size:12px;
    line-height:1.3;
    max-width:none;
  }

  .chx-item-sub{
    gap:6px;
    margin-top:6px;
  }

  .chx-item-sub span{
    min-height:23px;
    padding:0 7px;
    font-size:8.8px;
  }

  .chx-item-price{
    grid-column:1 / -1;
    min-width:unset;
    text-align:left;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    margin-top:2px;
    padding-top:8px;
    border-top:1px dashed rgba(15,23,42,.10);
  }

  .chx-item-price-k{
    font-size:8.8px;
    margin:0;
  }

  .chx-item-price-v{
    margin:0;
    font-size:14px;
  }

  .chx-summary{
    border-radius:20px;
  }

  .chx-summary-head{
    padding:14px 14px 0;
  }

  .chx-summary-title{
    font-size:15px;
    gap:8px;
  }

  .chx-summary-title i{
    width:28px;
    height:28px;
    border-radius:10px;
    font-size:12px;
  }

  .chx-summary-desc{
    margin-top:6px;
    font-size:10.6px;
    line-height:1.4;
  }

  .chx-summary-body{
    padding:12px 14px 14px;
  }

  .chx-summary-card{
    padding:12px;
    border-radius:16px;
  }

  .chx-summary-rows{
    gap:5px;
  }

  .chx-srow{
    min-height:28px;
  }

  .chx-srow .k{
    font-size:9.6px;
  }

  .chx-srow .v{
    font-size:10.8px;
  }

  .chx-srow.total{
    margin-top:5px;
    padding-top:10px;
  }

  .chx-srow.total .k,
  .chx-srow.total .v{
    font-size:14px;
  }

  .chx-summary-mini{
    gap:7px;
    margin-top:10px;
  }

  .chx-summary-mini-card{
    padding:10px;
    border-radius:12px;
  }

  .chx-summary-mini-k{
    font-size:8.2px;
  }

  .chx-summary-mini-v{
    margin-top:5px;
    font-size:12px;
  }

  .chx-note-box{
    margin-top:10px;
    padding:10px;
    border-radius:12px;
  }

  .chx-note-k{
    font-size:8.2px;
  }

  .chx-note-v{
    margin-top:5px;
    font-size:9.8px;
    line-height:1.4;
  }

  .chx-cta-wrap{
    gap:8px;
    margin-top:12px;
  }

  .chx-submit{
    min-height:46px;
    border-radius:13px;
    font-size:11.8px;
  }

  .chx-submit i{
    font-size:13px;
  }

  .chx-safe-points{
    gap:7px;
    margin-top:10px;
  }

  .chx-safe{
    min-height:46px;
    padding:9px 10px;
    border-radius:12px;
    gap:8px;
  }

  .chx-safe i{
    font-size:12px;
  }

  .chx-safe span{
    font-size:8.8px;
    line-height:1.3;
  }

  .chx-status-inline{
    min-height:40px;
    padding:0 11px;
    border-radius:12px;
  }

  .chx-status-inline i{
    font-size:12px;
  }

  .chx-status-inline span{
    font-size:10px;
  }

  .chx-hint{
    font-size:9px;
  }

  .chx-success-hero{
    padding:16px;
    border-radius:22px;
  }

  .chx-success-mark{
    width:52px;
    height:52px;
    border-radius:18px;
  }

  .chx-success-mark i{
    font-size:21px;
  }

  .chx-success-title{
    margin-top:12px;
    font-size:26px;
  }

  .chx-success-sub{
    margin-top:8px;
    font-size:11.2px;
    line-height:1.5;
  }

  .chx-success-grid{
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:12px;
  }

  .chx-success-box{
    padding:11px;
    border-radius:14px;
  }

  .chx-success-k{
    font-size:8.4px;
  }

  .chx-success-v{
    margin-top:5px;
    font-size:14px;
  }

  .chx-success-actions{
    gap:8px;
    margin-top:12px;
  }
}
/* =========================================================
CHECKOUT MOBILE SPACING + METRIC ALIGN FIX
========================================================= */

/* Accordion yüzeyleri arası boşluk */
@media (max-width: 575.98px){
  .chx-main > .chx-surface,
  .chx-main > form > .chx-surface{
    margin-top: 10px;
  }

  .chx-main > .chx-surface:first-child,
  .chx-main > form > .chx-surface:first-child{
    margin-top: 0;
  }

  .chx-surface + .chx-surface{
    margin-top: 10px;
  }

  .chx-surface-head{
    padding-bottom: 2px;
  }

  .chx-surface-body{
    padding-top: 10px;
  }
}

/* Metrics kartlarını yatay hizaya al */
.chx-metric{
  display:flex;
  align-items:center;
  gap:12px;
}

.chx-metric-top{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
}

.chx-metric-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:2px;
}

.chx-metric-k{
  margin-top:0 !important;
  margin-bottom:0 !important;
  font-size:11px;
  line-height:1.2;
}

.chx-metric-v{
  margin-top:0 !important;
  font-size:22px;
  line-height:1;
}

.chx-metric-s{
  margin-top:0 !important;
  font-size:11px;
  line-height:1.25;
}

/* Desktop ve tablet */
@media (min-width: 576px){
  .chx-metric{
    min-height: 96px;
    padding: 14px;
  }

  .chx-metric-icon{
    margin-right: 2px;
  }
}

/* Mobilde daha kompakt yatay metrik */
@media (max-width: 575.98px){
  .chx-metrics{
    gap:8px;
  }

  .chx-metric{
    min-height:72px !important;
    padding:10px !important;
    gap:9px;
    border-radius:14px;
  }

  .chx-metric-top{
    width:auto;
  }

  .chx-metric-icon{
    width:30px !important;
    height:30px !important;
    border-radius:10px !important;
  }

  .chx-metric-icon i{
    font-size:13px !important;
  }

  .chx-metric-copy{
    gap:1px;
  }

  .chx-metric-k{
    font-size:9px !important;
    line-height:1.15 !important;
    letter-spacing:.04em;
  }

  .chx-metric-v{
    font-size:15px !important;
    line-height:1 !important;
  }

  .chx-metric-s{
    font-size:8.6px !important;
    line-height:1.15 !important;
  }
}


/* DESKTOP FOOTER ALTA SABİT / BOŞLUK KESİN FIX */
@media (min-width: 576px){

  html,
  body{
    min-height:100%;
  }

  .mx-body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
  }

  .mx-page{
    flex:1 0 auto;
    padding-bottom:24px !important;
  }

  .mx-footerLight{
    margin-top:auto !important;
    margin-bottom:0 !important;
    padding-bottom:22px !important;
  }

  .mx-bottombar{
    display:none !important;
  }

  .page-pad-bottom{
    padding-bottom:0 !important;
  }
}

/* =========================================================
VENTI FOOTER SMART CSS — DESKTOP
Mevcut yapıyı bozmaz, sadece footer'ı güçlendirir.
========================================================= */

@media (min-width: 576px){

  .mx-footerLight{
    margin-top:auto !important;
    margin-bottom:0 !important;
    padding:32px 0 22px !important;
    background:linear-gradient(180deg,#ffffff 0%,#f5f8fd 100%) !important;
    border-top:1px solid rgba(7,25,55,.08) !important;
  }

  .mx-footerWrap{
    width:min(100%, calc(100% - 40px)) !important;
    max-width:1520px !important;
    margin:0 auto !important;
  }

  .mx-footerTrust{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:22px !important;
    margin-bottom:22px !important;
  }

  .mx-footerTrust div{
    min-width:170px;
    height:42px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(7,25,55,.08);
    box-shadow:0 8px 20px rgba(11,27,51,.045);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:13px;
    font-weight:850;
    color:#3f4d63;
  }

  .mx-footerTrust i{
    color:var(--mx-blue);
    font-size:16px;
  }

  .mx-footerTop{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:28px !important;
    padding:26px 0 !important;
    border-top:1px solid rgba(7,25,55,.07) !important;
    border-bottom:1px solid rgba(7,25,55,.07) !important;
  }

  .mx-footerBrand{
    display:flex !important;
    align-items:center !important;
    gap:16px !important;
  }

  .mx-footerLogo{
    width:62px !important;
    height:62px !important;
    border-radius:20px !important;
    background:#eef5ff !important;
    border:1px solid rgba(11,78,162,.13) !important;
    box-shadow:0 12px 28px rgba(11,78,162,.08) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .mx-footerLogo i{
    color:var(--mx-blue) !important;
    font-size:30px !important;
  }

  .mx-footerTitle{
    font-size:22px !important;
    font-weight:950 !important;
    letter-spacing:.7px !important;
    color:#0b1b33 !important;
  }

  .mx-footerDesc{
    margin-top:5px !important;
    font-size:14.5px !important;
    font-weight:650 !important;
    color:#56677f !important;
  }

  .mx-footerPayments{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:14px !important;
  }

  .mx-footerPayments span{
    width:82px !important;
    height:46px !important;
    border-radius:15px !important;
    background:#fff !important;
    border:1px solid rgba(7,25,55,.09) !important;
    box-shadow:0 9px 22px rgba(11,27,51,.06) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .mx-footerPayments img{
    max-width:54px !important;
    max-height:27px !important;
    display:block !important;
  }

  .mx-footerBottom{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:24px !important;
    padding-top:20px !important;
  }

  .mx-footerCopy{
    white-space:nowrap !important;
    font-size:14px !important;
    font-weight:850 !important;
    color:#5a687d !important;
  }

  .mx-footerLinks{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    flex-wrap:wrap !important;
    gap:10px !important;
  }

  .mx-footerLinks a{
    display:inline-flex !important;
    align-items:center !important;
    gap:6px !important;
    color:#46566d !important;
    text-decoration:none !important;
    font-size:13px !important;
    font-weight:850 !important;
    padding:7px 10px !important;
    border-radius:999px !important;
    background:rgba(255,255,255,.72) !important;
    border:1px solid rgba(7,25,55,.07) !important;
  }

  .mx-footerLinks a i{
    color:var(--mx-blue) !important;
    font-size:14px !important;
  }

  .mx-footerLinks a:hover{
    color:var(--mx-blue) !important;
    background:#fff !important;
    box-shadow:0 8px 18px rgba(11,27,51,.06) !important;
  }
}


/* =========================================================
VENTI FOOTER MOBILE APP CSS
Alt mobil menü için boşluk korunur.
========================================================= */

@media (max-width:575.98px){

  .mx-footerLight{
    margin-top:20px !important;
    padding:18px 0 calc(96px + env(safe-area-inset-bottom)) !important;
    background:linear-gradient(180deg,#ffffff 0%,#f1f5fb 100%) !important;
    border-top:1px solid rgba(7,25,55,.08) !important;
  }

  .mx-footerWrap{
    width:calc(100% - 18px) !important;
    margin:0 auto !important;
  }

  .mx-footerTrust{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:8px !important;
    margin-bottom:16px !important;
  }

  .mx-footerTrust div{
    height:36px !important;
    border-radius:14px !important;
    background:#fff !important;
    border:1px solid rgba(7,25,55,.08) !important;
    box-shadow:0 6px 14px rgba(11,27,51,.045) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:5px !important;
    font-size:10.5px !important;
    font-weight:850 !important;
    color:#435168 !important;
    white-space:nowrap !important;
  }

  .mx-footerTrust i{
    font-size:13px !important;
    color:var(--mx-blue) !important;
  }

  .mx-footerTop{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    text-align:center !important;
    gap:14px !important;
    padding:20px 0 18px !important;
    border-top:1px solid rgba(7,25,55,.07) !important;
    border-bottom:1px solid rgba(7,25,55,.07) !important;
  }

  .mx-footerBrand{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    gap:10px !important;
  }

  .mx-footerLogo{
    width:56px !important;
    height:56px !important;
    border-radius:19px !important;
    background:#eef5ff !important;
    border:1px solid rgba(11,78,162,.13) !important;
    box-shadow:0 10px 24px rgba(11,78,162,.08) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .mx-footerLogo i{
    color:var(--mx-blue) !important;
    font-size:27px !important;
  }

  .mx-footerTitle{
    font-size:19px !important;
    font-weight:950 !important;
    letter-spacing:1px !important;
    color:#0b1b33 !important;
  }

  .mx-footerDesc{
    max-width:300px !important;
    margin:5px auto 0 !important;
    font-size:12.5px !important;
    font-weight:650 !important;
    line-height:1.45 !important;
    color:#5b6b82 !important;
  }

  .mx-footerPayments{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    gap:11px !important;
  }

  .mx-footerPayments span{
    width:72px !important;
    height:42px !important;
    border-radius:15px !important;
    background:#fff !important;
    border:1px solid rgba(7,25,55,.09) !important;
    box-shadow:0 8px 18px rgba(11,27,51,.055) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .mx-footerPayments img{
    max-width:48px !important;
    max-height:25px !important;
    display:block !important;
  }

  .mx-footerBottom{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    gap:13px !important;
    padding-top:16px !important;
  }

  .mx-footerCopy{
    font-size:12.5px !important;
    font-weight:850 !important;
    color:#56657a !important;
    text-align:center !important;
  }

  .mx-footerLinks{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:8px !important;
  }

  .mx-footerLinks a{
    min-height:38px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:6px !important;
    text-align:center !important;
    color:#405066 !important;
    text-decoration:none !important;
    font-size:11.5px !important;
    font-weight:850 !important;
    line-height:1.15 !important;
    padding:8px 7px !important;
    border-radius:13px !important;
    background:#fff !important;
    border:1px solid rgba(7,25,55,.075) !important;
    box-shadow:0 5px 12px rgba(11,27,51,.04) !important;
  }

  .mx-footerLinks a i{
    color:var(--mx-blue) !important;
    font-size:13px !important;
    flex:0 0 auto !important;
  }

  .mx-footerLinks a:last-child{
    grid-column:1 / -1 !important;
  }
}

