:root{
  --navy:#0b4b7f;
  --navy-dark:#06375f;
  --navy-deep:#052d4e;
  --orange:#ff6a00;
  --orange-dark:#ef5c00;
  --cream:#fff8ef;
  --text:#0e3559;
  --muted:#6f8295;
  --line:#dfe8f0;
  --soft:#f7f9fb;
  --success:#2c8b57;
  --danger:#c0392b;
  --container:1540px;
}

/* =========================
   RESET
========================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  margin:0;
  background:#f6f8fb;
  color:var(--text);
  font-family:"Segoe UI",Arial,Helvetica,sans-serif;
  line-height:1.5;
  font-weight:500;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

button,
input,
textarea,
select{
  font:inherit;
}

button{
  border:0;
  background:none;
  color:inherit;
  cursor:pointer;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.hidden{
  display:none!important;
}

/* =========================
   ORTAK BUTONLAR
========================= */

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:42px;
  padding:10px 16px;
  border-radius:8px;
  font-weight:800;
  border:1px solid transparent;
  transition:.18s ease;
}

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

.button.orange{
  background:linear-gradient(180deg,#ff790f,var(--orange));
  color:#fff;
  box-shadow:0 6px 14px rgba(255,106,0,.20);
}

.button.navy{
  background:var(--navy);
  color:#fff;
}

.button.outline{
  background:#fff;
  border-color:#cfdae5;
  color:var(--text);
}

.button.danger{
  color:var(--danger);
  border-color:#efc7c1;
  background:#fff;
}

button:disabled{
  cursor:not-allowed;
  opacity:.65;
  transform:none!important;
}

/* =========================
   ÜST BAR
========================= */

.topbar{
  min-height:34px;
  background:linear-gradient(90deg,var(--navy-dark),var(--navy));
  color:#fff;
  font-size:12px;
  font-weight:700;
}

.topbar-inner{
  width:min(var(--container),calc(100% - 48px));
  min-height:34px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.topbar-left,
.topbar-right{
  display:flex;
  align-items:center;
  gap:14px;
  white-space:nowrap;
}

.topbar-left i{
  width:1px;
  height:14px;
  background:rgba(255,255,255,.55);
}

.topbar-right{
  font-size:11px;
}

/* =========================
   HEADER
========================= */

.store-header-shell{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.store-header{
  width:min(var(--container),calc(100% - 48px));
  min-height:92px;
  margin:auto;
  display:grid;
  grid-template-columns:320px minmax(360px,1fr) 320px;
  gap:28px;
  align-items:center;
}

.brand-header{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand-header>img{
  width:108px;
  height:62px;
  object-fit:contain;
  flex:none;
}

.brand-wordmark{
  display:flex;
  flex-direction:column;
  min-width:0;
  line-height:1;
}

.brand-wordmark>strong{
  font-size:28px;
  letter-spacing:-1.4px;
  color:var(--navy-dark);
  font-weight:900;
}

.brand-wordmark>strong span{
  color:var(--orange);
}

.brand-wordmark>small{
  margin-top:7px;
  color:#4f6d85;
  font-size:10px;
  font-weight:800;
  white-space:nowrap;
}

.search{
  height:50px;
  border:2px solid #d7e2eb;
  border-radius:10px;
  display:grid;
  grid-template-columns:42px 1fr 60px;
  align-items:center;
  overflow:hidden;
  background:#fff;
}

.search-icon{
  display:grid;
  place-items:center;
  color:#71859a;
  font-size:18px;
}

.search input{
  height:48px;
  border:0;
  outline:0;
  background:transparent;
  padding:0 8px;
  color:var(--text);
  font-size:17px;
  font-weight:700;
}

.search input::placeholder{
  color:#8797a7;
  font-size:16px;
  font-weight:600;
}

.search-button{
  height:50px;
  background:var(--orange);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:20px;
}

.account-area{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  min-width:0;
}

.account-box,
.cart-box{
  position:relative;
  min-height:58px;
  display:grid;
  grid-template-columns:38px 1fr;
  align-items:center;
  gap:8px;
  padding:0 14px;
  text-align:left;
}

.account-box{
  border-right:1px solid var(--line);
}

.account-icon,
.cart-icon{
  font-size:24px;
  color:var(--navy);
}

.account-box strong,
.cart-box strong{
  display:block;
  font-size:15px;
  color:var(--text);
}

.account-box small,
.cart-box small{
  display:block;
  margin-top:2px;
  font-size:11px;
  color:var(--muted);
}

.cart-badge{
  position:absolute;
  left:28px;
  top:2px;
  min-width:20px;
  height:20px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:11px;
  font-weight:900;
  border:2px solid #fff;
}

/* =========================
   NAVIGATION
========================= */

.main-nav{
  border-top:1px solid #edf2f6;
  border-bottom:1px solid var(--line);
  background:#fff;
}

.main-nav-inner{
  width:min(var(--container),calc(100% - 48px));
  min-height:50px;
  margin:auto;
  display:grid;
  grid-template-columns:210px minmax(0,1fr) 150px;
  align-items:stretch;
}

.all-categories{
  min-height:50px;
  background:var(--orange);
  color:#fff;
  font-weight:900;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:7px 7px 0 0;
}

.category-nav{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  overflow:auto;
  padding:0 18px;
  scrollbar-width:none;
}

.category-nav::-webkit-scrollbar{
  display:none;
}

.category-nav button{
  position:relative;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  font-size:15px;
  font-weight:900;
  letter-spacing:.15px;
  padding:0 6px;
  color:#0f3558;
  transition:.18s ease;
}

.category-nav button:hover,
.category-nav button.active{
  color:var(--orange);
}

.deals-link{
  min-height:50px;
  background:var(--orange);
  color:#fff;
  font-weight:900;
  display:grid;
  place-items:center;
  border-radius:7px 7px 0 0;
  font-size:14px;
}

/* =========================
   ANA SAYFA
========================= */

.store-main{
  width:min(var(--container),calc(100% - 48px));
  margin:auto;
  padding:0 0 36px;
  background:#fff;
}

/* =========================
   HERO
========================= */

.hero-commercial{
  min-height:370px;
  display:grid;
  grid-template-columns:40% 42% 18%;
  overflow:hidden;
  border:1px solid var(--line);
  border-top:0;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,52,90,.06);
}

.hero-left{
  padding:38px 42px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  background:linear-gradient(90deg,#fff 0%,#fff 83%,#f8fbfd 100%);
}

.hero-left h1{
  margin:0;
  font-size:48px;
  line-height:1.02;
  letter-spacing:-1.8px;
  font-weight:900;
  color:var(--navy-dark);
}

.hero-left h1 span{
  color:var(--orange);
}

.hero-left p{
  max-width:560px;
  margin:18px 0 20px;
  color:#355875;
  font-size:16px;
  line-height:1.6;
}

.hero-actions{
  margin-bottom:18px;
}

.hero-actions .button{
  min-width:190px;
  min-height:46px;
}

.hero-mini-features{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 18px;
  font-size:12px;
  font-weight:800;
  color:#234d70;
}

.hero-mini-features button{
  text-align:left;
}

.hero-warehouse{
  min-width:0;
  overflow:hidden;
  background:#edf3f7;
}

.hero-warehouse img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.hero-benefits{
  position:relative;
  min-width:0;
  background:linear-gradient(135deg,#0b4b7f 0%,#063761 100%);
  color:#fff;
  padding:34px 18px 24px 32px;
  overflow:hidden;
}

.hero-benefits::before{
  content:"";
  position:absolute;
  width:160px;
  height:360px;
  background:var(--orange);
  left:-102px;
  top:-72px;
  border-radius:50%;
  transform:rotate(19deg);
}

.hero-benefits::after{
  content:"";
  position:absolute;
  width:165px;
  height:360px;
  background:var(--navy-dark);
  left:-82px;
  top:-77px;
  border-radius:50%;
  transform:rotate(19deg);
}

.hero-benefits ul{
  position:relative;
  z-index:2;
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
  font-size:13px;
  font-weight:800;
}

.hero-benefits li{
  padding-left:28px;
  position:relative;
  line-height:1.35;
}

.hero-benefits li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:19px;
  height:19px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:11px;
}

.hero-benefits>strong{
  position:absolute;
  z-index:2;
  right:16px;
  bottom:20px;
  font-size:18px;
  line-height:1.1;
  text-align:right;
}

/* =========================
   BÖLÜMLER
========================= */

.home-section,
.reviews-section{
  padding:28px 0 0;
}

.section-row-title{
  min-height:40px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}

.section-row-title h2{
  margin:0;
  font-size:27px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.5px;
  color:var(--navy-dark);
}

.text-link{
  font-size:13px;
  color:var(--orange);
  font-weight:900;
  white-space:nowrap;
}

/* =========================
   KATEGORİLER
========================= */

.category-cards{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
  margin-top:16px;
}

.category-cards button{
  width:100%;
  min-height:150px;
  padding:12px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  border:1px solid #d8e3ec;
  border-radius:12px;
  background:#fff;
  box-shadow:0 5px 16px rgba(7,52,90,.05);
  transition:.18s ease;
}

.category-cards button:hover{
  border-color:#ff9d58;
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(7,52,90,.09);
}

.category-cards .product-photo{
  width:100%;
  height:110px;
  padding:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:8px;
  background:#f7f9fb;
}

.category-cards .product-photo img,
.category-cards .product-photo svg{
  width:100%;
  height:100%;
  max-width:150px;
  max-height:95px;
  object-fit:contain;
  object-position:center;
}

.category-cards span{
  width:100%;
  display:block;
  text-align:center;
  min-width:0;
}

.category-cards strong{
  display:block;
  font-size:14px;
  line-height:1.3;
  color:var(--text);
  font-weight:900;
}

.category-cards small{
  display:none;
}

/* =========================
   ÜRÜN BAŞLIK SATIRI
========================= */

.product-title-row{
  display:grid;
  grid-template-columns:minmax(260px,1fr) auto auto;
  align-items:center;
  column-gap:30px;
}

.product-tabs{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:13px;
  color:#657c90;
}

.product-tabs span{
  padding:10px 0 8px;
  border-bottom:2px solid transparent;
  white-space:nowrap;
}

.product-tabs .active{
  color:var(--orange);
  border-color:var(--orange);
  font-weight:900;
}

.product-count-wrap{
  display:flex;
  align-items:center;
  gap:14px;
}

.result{
  font-size:12px;
  color:#7d8d9c;
  font-weight:800;
  white-space:nowrap;
}

/* =========================
   ÜRÜN GRID
========================= */

.product-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
  margin-top:16px;
  align-items:stretch;
}

.product-card{
  position:relative;
  min-height:520px;
  height:100%;
  padding:14px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid #d8e3ec;
  border-radius:12px;
  background:#fff;
  box-shadow:0 6px 18px rgba(7,52,90,.05);
  transition:.18s ease;
}

.product-card:hover{
  transform:translateY(-3px);
  border-color:#ffc49a;
  box-shadow:0 14px 28px rgba(7,52,90,.10);
}

.favorite-dot{
  position:absolute;
  right:9px;
  top:8px;
  z-index:3;
  font-size:17px;
  color:#50708a;
}

.product-image{
  width:100%;
  height:220px;
  flex:0 0 220px;
  margin-bottom:12px;
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:10px;
  background:#f7f9fb;
}

.product-image .product-photo{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.product-image img,
.product-image svg{
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  object-position:center;
  margin:0 auto;
}

.product-info{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
}

.product-info h3{
  margin:0 0 7px;
  min-height:44px;
  font-size:15px;
  line-height:1.45;
  font-weight:900;
  color:#123c60;
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.product-category{
  margin-bottom:4px;
  color:#74869a;
  font-size:12px;
}

.stock-line{
  display:block;
  margin-top:4px;
  font-size:12px;
  font-weight:700;
  color:#657b90;
}

.stock-line.in-stock{
  color:#38745a;
}

.stock-line.out-stock{
  color:#b84a42;
}

/* =========================
   TOPTAN BİLGİLER
========================= */

.wholesale-info{
  display:grid;
  gap:9px;
  margin-top:12px;
  margin-bottom:12px;
}

.minimum-order{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  padding:9px 11px;
  border:1px solid #dfe8f1;
  border-radius:8px;
  background:#f8fbfe;
}

.minimum-order span{
  font-size:12px;
  color:#6f8194;
  font-weight:700;
}

.minimum-order strong{
  font-size:14px;
  color:#0b477c;
  white-space:nowrap;
}

.wholesale-price{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:10px 11px;
  background:#fff6ed;
  border:1px solid #ffd2ad;
  border-radius:8px;
}

.wholesale-price span{
  font-size:11px;
  font-weight:800;
  color:#e76500;
  letter-spacing:.4px;
}

.wholesale-price strong{
  font-size:22px;
  font-weight:900;
  color:#0b477c;
  line-height:1.1;
}

.wholesale-price small{
  font-size:11px;
  color:#7f8d9a;
}

.product-cart-button{
  margin-top:auto;
  width:100%;
  min-height:46px;
  padding:10px 8px;
  border-radius:7px;
  background:var(--orange);
  color:#fff;
  font-size:16px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.1px;
  text-align:center;
}

.product-cart-button:hover:not(:disabled){
  background:var(--orange-dark);
}

.product-cart-button:disabled{
  background:#ffb586;
  color:#fff;
  font-size:16px;
  font-weight:900;
}

/* =========================
   EMPTY STATE
========================= */

.empty-state{
  padding:24px;
  text-align:center;
  border:1px dashed #c8d6e2;
  border-radius:8px;
  margin-top:10px;
  background:#fafcfe;
}

.empty-state h3{
  margin:0 0 12px;
}

/* =========================
   GÜVEN ŞERİDİ
========================= */

.trust-strip{
  min-height:82px;
  margin-top:30px;
  background:var(--cream);
  border-top:1px solid #f0dfcb;
  border-bottom:1px solid #f0dfcb;
  border-radius:10px;
  overflow:hidden;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
}

.trust-strip article{
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 20px;
  border-right:1px solid #ead8c7;
}

.trust-strip article:last-child{
  border-right:0;
}

.trust-icon{
  flex:0 0 40px;
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:18px;
  font-weight:900;
}

.trust-strip strong{
  display:block;
  font-size:13px;
  color:#153f61;
}

.trust-strip small{
  display:block;
  margin-top:2px;
  font-size:11px;
  color:#6f7e8c;
}

/* =========================
   PROMO BANNER
========================= */

.promo-wide{
  min-height:180px;
  margin-top:24px;
  display:grid;
  grid-template-columns:1.2fr .45fr 1.45fr;
  overflow:hidden;
  border-radius:12px;
  background:var(--navy);
}

.promo-text{
  min-width:0;
  padding:26px 28px;
  background:var(--navy);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.promo-text h2{
  max-width:440px;
  margin:0;
  font-size:27px;
  line-height:1.12;
  letter-spacing:-.3px;
}

.promo-text p{
  max-width:380px;
  margin:10px 0 0;
  font-size:13px;
  color:#d9e7f1;
}

.promo-action{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:var(--navy);
}

.promo-action .button{
  min-height:42px;
  white-space:nowrap;
}

.promo-right{
  min-width:0;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  overflow:hidden;
}

.promo-warehouse{
  min-height:180px;
  background:url('assets/promo-warehouse.png') center/cover no-repeat;
}

.promo-checks{
  min-height:180px;
  background:var(--orange);
  color:#fff;
  padding:20px 22px;
  display:flex;
  align-items:center;
}

.promo-checks ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:7px;
  font-size:12px;
  font-weight:800;
}

.promo-checks li::before{
  content:"✓";
  margin-right:8px;
}

/* =========================
   YORUMLAR
========================= */

.reviews-section{
  padding-top:30px;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:15px;
}

.review-card{
  min-height:120px;
  border:1px solid #d8e3ec;
  border-radius:12px;
  padding:18px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:14px;
  align-items:center;
  background:#fff;
}

.avatar{
  width:50px;
  height:50px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#f5f7f9;
  border:1px solid #dce5ec;
  box-shadow:0 2px 7px rgba(0,0,0,.08);
  font-size:13px;
  font-weight:900;
  color:var(--navy);
}

.stars{
  color:#ff8b00;
  font-size:13px;
  letter-spacing:1px;
}

.review-card p{
  margin:5px 0 7px;
  font-size:13px;
  line-height:1.5;
  color:#49667f;
}

.review-card strong{
  font-size:13px;
}

.review-card small{
  margin-left:8px;
  font-size:11px;
  color:#8191a0;
}

/* =========================
   FOOTER
========================= */

.ecommerce-footer{
  background:linear-gradient(180deg,var(--navy) 0%,var(--navy-dark) 100%);
  color:#fff;
}

.footer-main{
  width:min(var(--container),calc(100% - 48px));
  margin:auto;
  display:grid;
  grid-template-columns:1.35fr .8fr 1fr 1.1fr 1.65fr;
  gap:30px;
  padding:30px 0 24px;
  align-items:start;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-logo>img{
  width:92px;
  height:52px;
  object-fit:contain;
}

.footer-logo .brand-wordmark>strong{
  color:#fff;
  font-size:23px;
}

.footer-logo .brand-wordmark>small{
  color:#cfdfeb;
  font-size:9px;
}

.footer-brand-block p{
  font-size:12px;
  color:#d3e2ee;
  margin:9px 0 0;
}

.footer-links h4,
.footer-news h4{
  margin:0 0 8px;
  font-size:14px;
}

.footer-links a{
  display:block;
  margin:7px 0;
  font-size:12px;
  color:#d7e4ed;
}

.newsletter{
  height:40px;
  display:grid;
  grid-template-columns:1fr 92px;
  overflow:hidden;
  border-radius:4px;
  background:#fff;
}

.newsletter input{
  border:0;
  outline:0;
  padding:0 10px;
  font-size:12px;
  color:#34536d;
}

.newsletter button{
  background:var(--orange);
  color:#fff;
  font-size:11px;
  font-weight:900;
}

.socials{
  display:flex;
  gap:8px;
  margin-top:9px;
}

.socials button{
  width:30px;
  height:30px;
  border:1px solid #dbe7f0;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:10px;
  font-weight:800;
  padding:0;
  background:transparent;
  color:inherit;
}

.footer-bottom{
  width:min(var(--container),calc(100% - 48px));
  min-height:54px;
  margin:auto;
  border-top:1px solid rgba(255,255,255,.16);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:11px;
  color:#e0e9f0;
}

.payment-pills{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11px;
}

.payment-pills b{
  font-weight:800;
}

/* =========================
   MODAL
========================= */

.modal{
  position:fixed;
  inset:0;
  z-index:40;
  background:rgba(4,28,50,.58);
  display:grid;
  place-items:center;
  padding:24px;
}

.modal-card{
  position:relative;
  width:min(720px,100%);
  max-height:88vh;
  overflow:auto;
  background:#fff;
  border-radius:18px;
  padding:24px;
  box-shadow:0 28px 60px rgba(0,0,0,.25);
}

.wide-card{
  width:min(920px,100%);
}

.modal-close{
  position:absolute;
  right:15px;
  top:12px;
  font-size:28px;
  color:#66798b;
}

.modal-card h2{
  margin:0 0 5px;
  font-size:28px;
  color:var(--navy-dark);
}

.muted{
  color:var(--muted);
}

/* =========================
   FORM
========================= */

.checkout-form,
.editor-grid{
  display:grid;
  gap:13px;
  margin-top:17px;
}

.checkout-form input,
.checkout-form textarea,
.editor-grid input,
.editor-grid textarea,
.editor-grid select{
  width:100%;
  padding:13px 14px;
  border:1px solid #cddae5;
  border-radius:9px;
  background:#fff;
  outline:0;
  color:var(--text);
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.editor-grid input:focus,
.editor-grid textarea:focus{
  border-color:#78a8cf;
  box-shadow:0 0 0 3px rgba(120,168,207,.15);
}

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

.order-preview,
.cart-total,
.detail-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  border:1px solid #dbe5ed;
  border-radius:10px;
  background:#f9fbfd;
  padding:14px 16px;
}

.order-preview strong,
.cart-total strong,
.detail-total strong{
  font-size:22px;
}

.form-error{
  margin:0;
  color:var(--danger);
  font-weight:700;
}

.order-success{
  display:grid;
  gap:12px;
  border:1px solid #cce7d5;
  background:#f4fff7;
  border-radius:12px;
  padding:18px;
  margin-top:16px;
}

.order-success span{
  font-size:11px;
  letter-spacing:1px;
  font-weight:900;
  color:var(--success);
}

.order-success strong{
  font-size:30px;
  color:var(--navy-dark);
}

/* =========================
   SEPET
========================= */

.cart-row{
  display:grid;
  grid-template-columns:88px 1fr;
  gap:14px;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid #e8eff4;
}

.cart-row .product-photo{
  width:88px;
  height:88px;
  display:grid;
  place-items:center;
  border:1px solid #e0e8ef;
  border-radius:10px;
  padding:8px;
}

.cart-row img,
.cart-row svg{
  width:100%;
  height:100%;
  object-fit:contain;
}

.cart-row strong{
  display:block;
  margin-bottom:4px;
}

.qty{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-top:7px;
  border:1px solid #d6e1ea;
  border-radius:999px;
  padding:4px 6px;
  background:#f8fafc;
}

.qty button{
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  border:1px solid #d6e1ea;
}

/* =========================
   ÜRÜN FORMU
========================= */

.editor-grid{
  grid-template-columns:repeat(2,1fr);
}

.editor-grid label{
  display:grid;
  gap:7px;
  font-weight:700;
}

.editor-grid .wide{
  grid-column:1/-1;
}

.product-image-field small{
  color:var(--muted);
  font-weight:500;
}

.product-image-preview{
  display:block;
  max-width:190px;
  padding:10px;
  border:1px solid #dde7ef;
  border-radius:10px;
  background:#f8fafc;
}

.product-image-preview img,
.product-image-preview .product-photo{
  width:100%;
  height:120px;
  object-fit:contain;
}

.checkbox{
  display:flex!important;
  align-items:center;
  gap:9px;
}

.checkbox input{
  width:auto;
}

/* =========================
   ADMIN PANEL
========================= */

.admin-page{
  display:grid;
  grid-template-columns:270px 1fr;
  min-height:100vh;
  background:#f4f7fa;
}

.admin-sidebar{
  padding:24px 18px;
  background:linear-gradient(180deg,var(--navy-dark),var(--navy));
  color:#fff;
  display:flex;
  flex-direction:column;
}

.admin-brand img{
  width:100%;
  max-width:190px;
  height:auto;
  background:#fff;
  border-radius:8px;
}

.admin-sidebar>p{
  margin:12px 8px 18px;
  font-size:11px;
  letter-spacing:2px;
  font-weight:900;
  color:#bcd0df;
}

.admin-sidebar nav{
  display:grid;
  gap:7px;
}

.admin-sidebar nav button,
.admin-user button{
  padding:12px 13px;
  border-radius:9px;
  text-align:left;
  background:rgba(255,255,255,.06);
  color:#e7f1f8;
  font-weight:700;
}

.admin-sidebar nav button.active{
  background:var(--orange);
  color:#fff;
}

.admin-user{
  margin-top:auto;
  display:grid;
  gap:8px;
  padding-top:20px;
}

.admin-user span{
  font-weight:800;
  padding:0 4px 6px;
}

.admin-main{
  padding:30px;
  display:grid;
  align-content:start;
  gap:16px;
}

.admin-message{
  padding:13px 15px;
  border-radius:9px;
  background:#eaf8ef;
  border:1px solid #cce7d5;
  color:var(--success);
  font-weight:700;
}

.admin-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:12px;
}

.admin-heading h1{
  margin:0;
  font-size:36px;
  color:var(--navy-dark);
}

.eyebrow{
  display:block;
  font-size:11px;
  letter-spacing:1.8px;
  font-weight:900;
  color:var(--navy);
  margin-bottom:5px;
}

.sync-note{
  margin:0 0 16px;
  padding:13px 15px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:10px;
  color:var(--muted);
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:16px;
}

.stats article,
.admin-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:0 10px 24px rgba(7,52,90,.06);
}

.stats article{
  padding:18px;
}

.stats span{
  display:block;
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

.stats strong{
  display:block;
  font-size:32px;
  margin:7px 0 4px;
  color:var(--navy-dark);
}

.stats small{
  font-size:11px;
  color:var(--muted);
}

.admin-card{
  padding:20px;
  overflow:auto;
}

.admin-card h2{
  margin:0 0 14px;
  font-size:24px;
}

table{
  width:100%;
  border-collapse:collapse;
}

th,
td{
  padding:13px 11px;
  text-align:left;
  border-bottom:1px solid #e5edf3;
  vertical-align:middle;
}

th{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted);
}

td{
  font-size:13px;
}

.row-actions{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
}

.row-actions button{
  padding:8px 10px;
  border:1px solid #d7e2eb;
  border-radius:7px;
  background:#f9fbfd;
  font-weight:700;
}

.status{
  display:inline-flex;
  padding:6px 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
}

.status.live{
  background:#edf9f1;
  color:var(--success);
}

.status.hidden-status{
  background:#fff0ef;
  color:var(--danger);
}

.order-detail{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:16px;
}

.order-detail section{
  padding:16px;
  border:1px solid #dce6ee;
  border-radius:10px;
  background:#f9fbfd;
}

.order-detail .wide{
  grid-column:1/-1;
}

.order-detail h3{
  margin:0 0 9px;
}

.detail-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid #e4ecf2;
}

.detail-item span{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.detail-item small{
  color:var(--muted);
}

select[data-order-status]{
  padding:9px 10px;
  border:1px solid #d0dde7;
  border-radius:8px;
  background:#fff;
}

/* =========================
   RESPONSIVE - 1350
========================= */

@media(max-width:1350px){

  .store-header{
    grid-template-columns:270px minmax(280px,1fr) 280px;
    gap:18px;
  }

  .brand-header>img{
    width:90px;
  }

  .brand-wordmark>strong{
    font-size:23px;
  }

  .hero-commercial{
    grid-template-columns:43% 39% 18%;
  }

  .hero-left{
    padding:32px;
  }

  .hero-left h1{
    font-size:40px;
  }

  .category-cards{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .product-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .footer-main{
    grid-template-columns:1.2fr repeat(3,1fr);
  }

  .footer-news{
    grid-column:1/-1;
  }
}

/* =========================
   RESPONSIVE - TABLET
========================= */

@media(max-width:980px){

  .topbar-right{
    display:none;
  }

  .store-header{
    grid-template-columns:1fr 1fr;
    padding:10px 0;
  }

  .brand-header{
    grid-column:1/2;
  }

  .account-area{
    grid-column:2/3;
  }

  .search{
    grid-column:1/-1;
    grid-row:2;
  }

  .main-nav-inner{
    grid-template-columns:180px minmax(0,1fr) 110px;
  }

  .category-nav{
    justify-content:flex-start;
  }

  .hero-commercial{
    grid-template-columns:1fr 1fr;
  }

  .hero-left{
    min-height:380px;
  }

  .hero-warehouse{
    min-height:380px;
  }

  .hero-benefits{
    grid-column:1/-1;
    min-height:180px;
  }

  .category-cards{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .product-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .product-title-row{
    grid-template-columns:1fr auto;
    row-gap:8px;
  }

  .product-tabs{
    grid-column:2;
  }

  .product-count-wrap{
    grid-column:2;
  }

  .trust-strip{
    grid-template-columns:repeat(2,1fr);
  }

  .trust-strip article{
    border-bottom:1px solid #ead8c7;
  }

  .promo-wide{
    grid-template-columns:1fr .45fr;
  }

  .promo-right{
    grid-column:1/-1;
    min-height:170px;
  }

  .reviews-grid{
    grid-template-columns:1fr;
  }

  .footer-main{
    grid-template-columns:repeat(2,1fr);
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */

@media(max-width:680px){

  .topbar-inner,
  .store-header,
  .main-nav-inner,
  .store-main,
  .footer-main,
  .footer-bottom{
    width:min(100% - 28px,var(--container));
  }

  .topbar-left span:last-child,
  .topbar-left i{
    display:none;
  }

  .store-header{
    grid-template-columns:1fr;
  }

  .brand-header,
  .account-area,
  .search{
    grid-column:1;
    grid-row:auto;
    width:100%;
  }

  .brand-header{
    justify-content:center;
  }

  .account-area{
    grid-template-columns:1fr 1fr;
  }

  .main-nav-inner{
    grid-template-columns:1fr 100px;
  }

  .category-nav{
    grid-column:1/-1;
    grid-row:2;
    min-height:44px;
    border-top:1px solid var(--line);
  }

  .all-categories{
    grid-column:1;
  }

  .deals-link{
    grid-column:2;
  }

  .hero-commercial{
    grid-template-columns:1fr;
  }

  .hero-left{
    min-height:auto;
    padding:32px 24px;
  }

  .hero-left h1{
    font-size:34px;
  }

  .hero-left p{
    font-size:15px;
  }

  .hero-mini-features{
    grid-template-columns:1fr;
  }

  .hero-warehouse{
    min-height:240px;
  }

  .hero-benefits{
    min-height:240px;
  }

  .category-cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }

  .product-title-row{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start;
  }

  .product-tabs{
    display:none;
  }

  .product-count-wrap{
    margin-left:auto;
  }

  .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }

  .product-card{
    min-height:500px;
    padding:11px;
  }

  .product-image{
    height:180px;
    flex-basis:180px;
  }

  .product-info h3{
    font-size:14px;
  }

  .minimum-order{
    flex-direction:column;
    align-items:flex-start;
  }

  .wholesale-price strong{
    font-size:20px;
  }

  .trust-strip{
    grid-template-columns:1fr;
  }

  .trust-strip article{
    border-right:0;
  }

  .promo-wide{
    grid-template-columns:1fr;
  }

  .promo-text{
    min-height:150px;
  }

  .promo-action{
    min-height:80px;
  }

  .promo-right{
    grid-template-columns:1fr;
  }

  .promo-warehouse{
    min-height:160px;
  }

  .promo-checks{
    min-height:140px;
  }

  .footer-main{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    align-items:flex-start;
    flex-direction:column;
    padding:12px 0;
  }

  .checkout-grid,
  .editor-grid,
  .order-detail{
    grid-template-columns:1fr;
  }

  .editor-grid .wide,
  .order-detail .wide{
    grid-column:auto;
  }

  .admin-page{
    display:block;
  }

  .admin-main{
    padding:18px;
  }

  .stats{
    grid-template-columns:1fr;
  }
}

/* =========================
   KÜÇÜK TELEFON
========================= */

@media(max-width:430px){

  .category-cards{
    grid-template-columns:1fr 1fr;
  }

  .product-grid{
    grid-template-columns:1fr;
  }

  .product-card{
    min-height:0;
  }

  .product-image{
    height:250px;
    flex-basis:250px;
  }
}

/* =========================
   FINAL KÜÇÜK DÜZELTMELER
========================= */

.product-tabs span[role="button"]{
  cursor:pointer;
}

.product-tabs span[role="button"]:focus-visible,
.category-nav button:focus-visible,
.button:focus-visible,
.deals-link:focus-visible{
  outline:3px solid rgba(255,106,0,.25);
  outline-offset:3px;
}

@media(max-width:1200px){
  .category-nav{
    gap:22px;
    justify-content:flex-start;
  }

  .category-nav button{
    min-height:50px;
    font-size:14px;
  }
}

@media(max-width:680px){
  .category-nav{
    gap:18px;
    justify-content:flex-start;
  }

  .category-nav button{
    min-height:46px;
    font-size:13px;
  }

  .product-cart-button{
    white-space:normal;
    font-size:14px;
  }
}

/* ==================================================
   ALT PROMO BANNER GÖRSEL DÜZELTMESİ
================================================== */


.promo-wide{
  min-height:150px;
  margin-top:24px;
  display:grid;
  grid-template-columns:1.2fr .45fr 1.45fr;
  overflow:hidden;
  border-radius:12px;
  background:var(--navy);
}

.promo-text{
  min-height:150px;
  padding:24px 28px;
  background:var(--navy);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.promo-action{
  min-height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:var(--navy);
}

.promo-right{
  min-height:150px;
  display:grid;
  grid-template-columns:1.7fr .8fr;
  overflow:hidden;
}

.promo-warehouse{
  min-height:150px;
  background-image:url("assets/promo-warehouse.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.promo-checks{
  min-height:150px;
  background:var(--orange);
  color:#fff;
  padding:20px 22px;
  display:flex;
  align-items:center;
}
.promo-warehouse{
  min-height:150px;
  background-image:url("./assets/promo-warehouse.png") !important;
  background-size:cover !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
}

/* ==================================================
   HERO GÖRSELİ SOL BEYAZLIK DÜZELTMESİ
================================================== */

.hero-left{
  background:#fff !important;
}

.hero-warehouse{
  position:relative;
  overflow:hidden;
  background:#edf3f7 !important;
}

/* Eski efekt varsa kapat */
.hero-warehouse::before,
.hero-warehouse::after{
  display:none !important;
}

.hero-warehouse img{
  display:block;
  width:calc(100% + 2px);
  height:100%;
  margin-left:-1px;

  object-fit:cover;
  object-position:center;

  opacity:1 !important;
  filter:none !important;
}

/* ==================================================
   ÜRÜN DETAY MODALI - FINAL TASARIM
================================================== */

.product-detail-modal-card{
  width:min(920px,calc(100% - 32px));
  max-height:88vh;
  overflow:auto;
  padding:24px;
}

.product-detail-layout{
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:32px;
  align-items:start;
}

/* Ürün görsel alanı */
.product-detail-image{
  width:100%;
  height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #dfe8f0;
  border-radius:14px;
  background:#f8fafc;
  overflow:hidden;
  padding:18px;
}

.product-detail-image .product-photo{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-detail-image img,
.product-detail-image svg{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* Sağ bilgi alanı */
.product-detail-info{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.product-detail-category{
  font-size:13px;
  font-weight:800;
  color:#74869a;
}

.product-detail-info h2{
  margin:0;
  font-size:28px;
  line-height:1.2;
  color:var(--navy-dark);
}

.product-detail-description{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:#4e6a82;
}

.product-detail-stock{
  font-size:14px;
  font-weight:800;
}

.product-detail-stock.in-stock{
  color:#2c8b57;
}

.product-detail-stock.out-stock{
  color:#c0392b;
}

.product-detail-wholesale{
  display:grid;
  gap:12px;
  margin-top:6px;
}

.product-detail-add{
  width:100%;
  min-height:50px;
  margin-top:6px;
  font-size:16px;
  font-weight:900;
}

/* Ürün kartında görsel ve başlık tıklanabilir olsun */
.product-detail-trigger{
  width:100%;
  border:0;
  padding:0;
  background:transparent;
}

.product-name-button{
  width:100%;
  padding:0;
  text-align:left;
  font:inherit;
  font-weight:inherit;
  color:inherit;
  background:transparent;
}

/* Tablet / telefon */
@media(max-width:760px){

  .product-detail-layout{
    grid-template-columns:1fr;
    gap:20px;
  }

  .product-detail-image{
    height:300px;
  }

  .product-detail-info h2{
    font-size:24px;
  }
}

@media(max-width:480px){

  .product-detail-modal-card{
    width:calc(100% - 18px);
    padding:18px;
  }

  .product-detail-image{
    height:240px;
  }
}

/* ==================================================
   FOOTER - FINAL BÜYÜTME VE HİZALAMA
================================================== */

.ecommerce-footer{
  margin-top:34px;
}

/* Footer ana alanı */
.footer-main{
  width:min(1540px,calc(100% - 40px));
  margin:0 auto;

  grid-template-columns:
    1.35fr
    .8fr
    1fr
    1.1fr
    1.65fr;

  gap:42px;

  padding:42px 0 34px;
  align-items:start;
}


/* LOGO BÖLÜMÜ */

.footer-logo{
  gap:14px;
}

.footer-logo>img{
  width:112px;
  height:64px;
}

.footer-logo .brand-wordmark>strong{
  font-size:27px;
  font-weight:900;
}

.footer-logo .brand-wordmark>small{
  margin-top:6px;
  font-size:10px;
}

.footer-brand-block p{
  max-width:300px;
  margin-top:14px;

  font-size:13px;
  line-height:1.6;
}


/* KOLON BAŞLIKLARI */

.footer-links h4,
.footer-news h4{
  margin:0 0 14px;

  font-size:16px;
  line-height:1.3;
  font-weight:900;
}


/* FOOTER LİNKLERİ */

.footer-links a{
  margin:9px 0;

  font-size:13px;
  line-height:1.45;
  font-weight:600;

  transition:.18s ease;
}

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


/* ABONELİK */

.newsletter{
  width:100%;
  height:46px;

  grid-template-columns:minmax(0,1fr) 105px;

  border-radius:7px;
}

.newsletter input{
  padding:0 14px;

  font-size:13px;
  font-weight:600;
}

.newsletter button{
  font-size:12px;
  font-weight:900;
}


/* SOSYAL MEDYA */

.socials{
  gap:10px;
  margin-top:14px;
}

.socials button{
  width:34px;
  height:34px;

  font-size:11px;

  transition:.18s ease;
}

.socials button:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-2px);
}


/* ALT FOOTER */

.footer-bottom{
  width:min(1540px,calc(100% - 40px));

  min-height:66px;
  margin:0 auto;

  gap:24px;

  font-size:12px;
  font-weight:600;
}


/* ÖDEME ALANI */

.payment-pills{
  gap:13px;

  font-size:12px;
}

.payment-pills b{
  font-weight:900;
}


/* TABLET */

@media(max-width:1100px){

  .footer-main{
    grid-template-columns:
      repeat(2,minmax(0,1fr));

    gap:30px;
  }

  .footer-brand-block{
    grid-column:1/-1;
  }

  .footer-news{
    grid-column:1/-1;
    max-width:600px;
  }
}


/* TELEFON */

@media(max-width:680px){

  .footer-main{
    width:calc(100% - 28px);

    grid-template-columns:1fr;

    gap:26px;

    padding:34px 0 28px;
  }

  .footer-brand-block,
  .footer-news{
    grid-column:auto;
  }

  .footer-logo>img{
    width:100px;
    height:58px;
  }

  .footer-links h4,
  .footer-news h4{
    font-size:16px;
  }

  .footer-links a{
    font-size:14px;
  }

  .newsletter{
    height:48px;
  }

  .footer-bottom{
    width:calc(100% - 28px);

    padding:18px 0;

    flex-direction:column;
    align-items:flex-start;

    font-size:12px;
  }

  .payment-pills{
    flex-wrap:wrap;
  }
}

/* ==================================================
   HERO MİNİ ÖZELLİKLER - BÜYÜT
================================================== */

.hero-mini-features{
  gap:12px 22px;
  font-size:15px;
}

.hero-mini-features button{
  font-size:15px;
  font-weight:800;
  line-height:1.4;
}

@media(max-width:680px){
  .hero-mini-features{
    font-size:14px;
  }

  .hero-mini-features button{
    font-size:14px;
  }
}

/* ==================================================
   ÜST KATEGORİ MENÜSÜ - DAHA OKUNAKLI VE DOLGUN
================================================== */

.category-nav button{
  font-family:"Segoe UI", Arial, Helvetica, sans-serif;
  font-size:16px;
  font-weight:800;
  letter-spacing:.2px;
  line-height:1.25;

  color:#0b355b;

  padding:0 10px;
  min-height:54px;

  text-transform:none;

  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.category-nav button:hover,
.category-nav button.active{
  color:var(--orange);
  font-weight:900;
}

/* ==================================================
   ANA SAYFA - FINAL DENGELİ GENİŞLİK
================================================== */

.store-main,
.store-header,
.topbar-inner,
.main-nav-inner{
  width:min(1540px,calc(100% - 48px));
  margin-left:auto;
  margin-right:auto;
}

@media(max-width:680px){
  .store-main,
  .store-header,
  .topbar-inner,
  .main-nav-inner{
    width:calc(100% - 28px);
  }
}
/* ==================================================
   PERAKENDE / TOPTAN SEÇİM EKRANI
================================================== */

.shopping-mode-screen{
  position:fixed;
  inset:0;
  z-index:9999;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:24px;

  background:
    linear-gradient(
      135deg,
      rgba(6,55,95,.96),
      rgba(11,75,127,.94)
    );
}

.shopping-mode-card{
  width:min(860px,100%);

  padding:42px;

  border-radius:22px;

  background:#fff;

  box-shadow:
    0 30px 80px
    rgba(0,0,0,.28);

  text-align:center;
}

.shopping-mode-logo{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:14px;

  margin-bottom:24px;
}

.shopping-mode-logo img{
  width:105px;
  height:62px;

  object-fit:contain;
}

.shopping-mode-logo div{
  display:flex;
  flex-direction:column;

  align-items:flex-start;
}

.shopping-mode-logo strong{
  font-size:30px;
  line-height:1;

  font-weight:900;

  color:var(--navy-dark);
}

.shopping-mode-logo strong span{
  color:var(--orange);
}

.shopping-mode-logo small{
  margin-top:7px;

  font-size:12px;

  font-weight:700;

  color:var(--muted);
}

.shopping-mode-card h1{
  margin:0;

  font-size:34px;
  line-height:1.2;

  font-weight:900;

  color:var(--navy-dark);
}

.shopping-mode-card>p{
  margin:12px 0 28px;

  font-size:16px;

  color:#60778c;
}

.shopping-mode-options{
  display:grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap:20px;
}

.shopping-mode-option{
  min-height:245px;

  padding:28px 24px;

  border:2px solid #dfe8f0;

  border-radius:18px;

  background:#fff;

  display:flex;
  flex-direction:column;

  align-items:center;
  justify-content:center;

  gap:12px;

  transition:.2s ease;
}

.shopping-mode-option:hover{
  transform:translateY(-4px);

  border-color:var(--orange);

  box-shadow:
    0 16px 34px
    rgba(7,52,90,.12);
}

.shopping-mode-option.wholesale{
  background:
    linear-gradient(
      180deg,
      #f7fbff,
      #eef6fc
    );

  border-color:#bfd7e8;
}

.shopping-mode-option.retail{
  background:
    linear-gradient(
      180deg,
      #fffaf5,
      #fff4e8
    );

  border-color:#ffd2ad;
}

.shopping-mode-icon{
  width:74px;
  height:74px;

  border-radius:50%;

  display:grid;
  place-items:center;

  font-size:34px;

  background:#f5f8fb;
}

.shopping-mode-option.retail
.shopping-mode-icon{
  background:#fff0e3;
}

.shopping-mode-option.wholesale
.shopping-mode-icon{
  background:#e7f1f8;
}

.shopping-mode-option strong{
  font-size:22px;
  line-height:1.2;

  font-weight:900;

  color:var(--navy-dark);
}

.shopping-mode-option small{
  max-width:250px;

  font-size:14px;
  line-height:1.5;

  color:#687f93;
}

.shopping-mode-arrow{
  margin-top:6px;

  font-size:14px;

  font-weight:900;

  color:var(--orange);
}

.shopping-mode-note{
  margin-bottom:0!important;

  font-size:12px!important;

  color:#8797a7!important;
}


/* TABLET */

@media(max-width:760px){

  .shopping-mode-card{
    padding:30px 22px;
  }

  .shopping-mode-card h1{
    font-size:28px;
  }

  .shopping-mode-options{
    grid-template-columns:1fr;
  }

  .shopping-mode-option{
    min-height:190px;
  }
}


/* TELEFON */

@media(max-width:480px){

  .shopping-mode-screen{
    padding:12px;
  }

  .shopping-mode-card{
    padding:24px 16px;

    border-radius:16px;
  }

  .shopping-mode-logo img{
    width:82px;
    height:50px;
  }

  .shopping-mode-logo strong{
    font-size:24px;
  }

  .shopping-mode-card h1{
    font-size:24px;
  }

  .shopping-mode-card>p{
    font-size:14px;
  }

  .shopping-mode-option{
    min-height:170px;

    padding:22px 16px;
  }

  .shopping-mode-option strong{
    font-size:20px;
  }
}

/* =========================================================
   HERŞEYTOPTAN - FINAL MOD / PROMOSYON / ÜYELİK EKLERİ
========================================================= */

.store-header{
  grid-template-columns:300px minmax(320px,1fr) 125px 300px;
  gap:18px;
}

.shopping-mode-switch{
  width:100%;
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border:1px solid #d5e1eb;
  border-radius:10px;
  background:#f8fbfd;
  color:var(--navy-dark);
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
  transition:.18s ease;
}

.shopping-mode-switch:hover{
  background:#fff7ef;
  border-color:#ffb77f;
  color:var(--orange);
  transform:translateY(-1px);
}

body[data-shopping-mode="retail"] .shopping-mode-switch{
  background:#fff7ef;
  border-color:#ffd2ad;
  color:#dd5c00;
}

body[data-shopping-mode="wholesale"] .shopping-mode-switch{
  background:#edf6fc;
  border-color:#bdd7e9;
  color:var(--navy);
}

body[data-shopping-mode="retail"] [data-wholesale-only]{
  display:none!important;
}

.product-tabs{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}

.product-tabs [data-product-tab="promo"]{
  color:#8058a5;
}

.product-tabs [data-product-tab="promo"].active{
  color:#63388d;
  border-color:#63388d;
  font-weight:900;
}

.admin-card table{
  min-width:1050px;
}

.admin-card th,
.admin-card td{
  white-space:nowrap;
}

.admin-card td:first-child{
  white-space:normal;
  min-width:180px;
}

.editor-grid .checkbox{
  min-height:46px;
  padding:10px 12px;
  border:1px solid #dfe8f0;
  border-radius:9px;
  background:#f9fbfd;
  font-size:13px;
  font-weight:800;
}

.editor-grid .checkbox input{
  width:18px;
  height:18px;
  accent-color:var(--orange);
}


/* TOPTAN ÜYELİK / GİRİŞ */

.wholesale-auth-card{
  width:min(520px,calc(100% - 28px));
  padding:30px;
}

.wholesale-auth-header{
  margin-bottom:20px;
}

.wholesale-auth-header h2{
  margin:4px 0 8px;
}

.wholesale-auth-header p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.wholesale-auth-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-bottom:20px;
  padding:5px;
  background:#f3f7fa;
  border-radius:10px;
}

.wholesale-auth-tabs button{
  min-height:42px;
  border-radius:8px;
  font-weight:900;
  color:#5f7588;
}

.wholesale-auth-tabs button.active{
  background:#fff;
  color:var(--navy);
  box-shadow:0 3px 10px rgba(7,52,90,.09);
}

.wholesale-auth-form{
  display:grid;
  gap:14px;
}

.wholesale-auth-form label{
  display:grid;
  gap:7px;
  font-size:13px;
  font-weight:800;
  color:var(--text);
}

.wholesale-auth-form input{
  width:100%;
  min-height:46px;
  padding:11px 13px;
  border:1px solid #ccdbe6;
  border-radius:9px;
  outline:0;
  background:#fff;
  color:var(--text);
}

.wholesale-auth-form input:focus{
  border-color:#73a8cf;
  box-shadow:0 0 0 3px rgba(115,168,207,.15);
}

.wholesale-auth-form .button{
  width:100%;
  min-height:48px;
  margin-top:4px;
}

@media(max-width:1400px){
  .store-header{
    grid-template-columns:250px minmax(280px,1fr) 115px 270px;
    gap:14px;
  }
}

@media(max-width:980px){
  .store-header{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .brand-header{
    grid-column:1;
    grid-row:1;
  }

  .shopping-mode-switch{
    grid-column:2;
    grid-row:1;
    justify-self:end;
    width:auto;
    min-width:130px;
  }

  .search{
    grid-column:1/-1;
    grid-row:2;
  }

  .account-area{
    grid-column:1/-1;
    grid-row:3;
    width:100%;
  }
}

@media(max-width:680px){
  .store-header{
    grid-template-columns:1fr;
  }

  .brand-header,
  .shopping-mode-switch,
  .search,
  .account-area{
    grid-column:1;
    grid-row:auto;
  }

  .shopping-mode-switch{
    width:100%;
  }

  .product-tabs{
    display:flex;
    width:100%;
    gap:10px;
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:4px;
    scrollbar-width:none;
  }

  .product-tabs::-webkit-scrollbar{
    display:none;
  }

  .product-tabs span{
    flex:none;
    padding:8px 3px;
    font-size:12px;
  }

  .admin-card{
    overflow-x:auto;
  }
}

@media(max-width:480px){
  .wholesale-auth-card{
    padding:22px 16px;
  }
}


/* =========================================================
   FINAL TESLİM DÜZENLEMELERİ
========================================================= */

/* Ana sayfa daha geniş */
:root{
  --container:1820px !important;
}

.topbar-inner,
.store-header,
.main-nav-inner,
.store-main{
  width:min(var(--container),calc(100% - 20px)) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Teslim öncesi okunabilirlik iyileştirmeleri */
.topbar-right,
.topbar-right span{
  font-size:13px !important;
  font-weight:800 !important;
}

.shopping-mode-switch,
#changeShoppingMode,
#shoppingModeLabel{
  font-size:15px !important;
  font-weight:900 !important;
}

.hero-checks li,
.hero-benefits li,
.hero-side-list li{
  font-size:16px !important;
  font-weight:800 !important;
  line-height:1.45 !important;
}

.category-cards span,
.category-card-title,
.category-name{
  font-size:15px !important;
  font-weight:900 !important;
}

.form-help{
  color:var(--muted);
  font-size:12px;
  font-weight:600;
  line-height:1.4;
}

.wholesale-auth-form input[type="file"]{
  padding:8px 10px;
  min-height:46px;
}

.admin-subtitle{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
}

.admin-table-wrap{
  width:100%;
  overflow-x:auto;
}

.wholesale-applications-table td{
  vertical-align:middle;
}

.wholesale-applications-table td:first-child strong,
.wholesale-applications-table td:first-child small{
  display:block;
}

.wholesale-applications-table td:first-child small{
  margin-top:4px;
  color:var(--muted);
}

.application-status{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 9px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
  background:#fff2d9;
  color:#9a5b00;
}

.application-status.approved{
  background:#e7f7ee;
  color:#23764a;
}

.application-status.rejected{
  background:#fde9e7;
  color:#a23429;
}

.application-actions{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.button.small{
  min-height:34px;
  padding:7px 10px;
  font-size:12px;
}

.button.danger{
  background:#b83a32;
  color:#fff;
}

.button.danger:hover{
  background:#982f29;
}

@media(max-width:680px){
  .topbar-inner,
  .store-header,
  .main-nav-inner,
  .store-main{
    width:min(var(--container),calc(100% - 14px)) !important;
  }
}

/* =========================================================
   FINAL GENİŞLİK + TRENDYOL AKTARIM
========================================================= */

:root{
  --container:1820px !important;
}

.topbar-inner,
.store-header,
.main-nav-inner,
.store-main{
  width:min(var(--container),calc(100% - 20px)) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.trendyol-import-card{
  display:grid;
  gap:18px;
}

.trendyol-import-card label{
  display:grid;
  gap:8px;
  font-weight:700;
}

.trendyol-import-card select{
  width:100%;
  min-height:46px;
  padding:0 14px;
  border:1px solid #d8e1e8;
  border-radius:10px;
  background:#fff;
  font-size:15px;
}

.trendyol-import-results{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:16px;
}

.trendyol-import-product{
  border:1px solid #e0e7ed;
  border-radius:14px;
  padding:14px;
  background:#fff;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.trendyol-import-product img{
  width:100%;
  height:190px;
  object-fit:contain;
  border-radius:10px;
  background:#f8fafc;
}

.trendyol-import-product h3{
  margin:4px 0;
  font-size:15px;
  line-height:1.4;
}

.trendyol-import-product strong{
  display:block;
  margin-bottom:2px;
}

.trendyol-import-product small{
  display:block;
  color:#607487;
}

.trendyol-bulk-actions{
  grid-column:1 / -1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

.trendyol-bulk-actions span{
  font-weight:700;
  color:#52677a;
}

@media (max-width:700px){
  .trendyol-bulk-actions{
    align-items:stretch;
    flex-direction:column;
  }
}


/* =========================
   SEPET BİLDİRİMİ
========================= */

.cart-toast{
  position:fixed;
  top:24px;
  right:24px;
  z-index:30000;
  min-width:220px;
  max-width:320px;
  padding:13px 17px;
  border-radius:10px;
  background:#0b4b7f;
  color:#fff;
  font-size:14px;
  font-weight:800;
  box-shadow:0 12px 30px rgba(0,0,0,.20);
  opacity:0;
  transform:translateY(-15px);
  pointer-events:none;
  transition:opacity .2s ease,transform .2s ease;
}

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

/* =========================
   DAHA FAZLA GÖSTER
========================= */

.load-more-button{
  display:block;
  min-width:220px;
  margin:28px auto 10px;
  padding:13px 24px;
  border:0;
  border-radius:10px;
  background:#0b4b7f;
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease,opacity .18s ease;
}

.load-more-button:hover{
  transform:translateY(-2px);
  opacity:.92;
}

.load-more-button:active{
  transform:translateY(0);
}

@media (min-width:681px){
  .product-image{
    height:220px;
    flex-basis:220px;
  }
}

@media (max-width:600px){
  .cart-toast{
    top:15px;
    left:15px;
    right:15px;
    min-width:0;
    max-width:none;
    text-align:center;
  }

  .load-more-button{
    width:calc(100% - 30px);
    max-width:340px;
  }
}
/* =========================================================
   KATEGORİ KARTLARI - EŞİT GÖRSEL BOYUTU
========================================================= */

.category-cards button {
  width: 100%;
  min-height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.category-cards .product-photo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.category-cards .product-photo img,
.category-cards .product-photo svg {
  width: 100%;
  height: 100%;
  max-width: 135px;
  object-fit: contain;
  object-position: center;
}

.category-cards button > img {
  width: 100%;
  height: 120px;
  max-width: 135px;
  object-fit: contain;
  object-position: center;
}

.category-cards button span {
  width: 100%;
  min-height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-cards button strong {
  text-align: center;
  line-height: 1.2;
}