* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; background: #f6f7fb; color: #1f2937; }
a { color: #0f766e; text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 18px; }
.topbar { background: #111827; color: #fff; padding: 14px 0; position: sticky; top: 0; z-index: 10; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: #fff; font-weight: 800; font-size: 18px; letter-spacing: -.2px; }
nav { display: flex; gap: 14px; flex-wrap: wrap; }
nav a { color: #d1d5db; font-size: 14px; }
nav a:hover { color: #fff; }
.page { padding-top: 28px; padding-bottom: 40px; }
.hero { background: linear-gradient(135deg, #111827, #0f766e); color: #fff; border-radius: 18px; padding: 34px; margin-bottom: 20px; }
.hero h1 { margin: 0 0 10px; font-size: 34px; }
.hero p { margin: 0; color: #d1fae5; max-width: 720px; }
.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 18px; box-shadow: 0 8px 30px rgba(15, 23, 42, .04); margin-bottom: 18px; }
.card h1, .card h2, .card h3 { margin-top: 0; }
.stat { font-size: 28px; font-weight: 800; margin-top: 8px; }
.muted { color: #6b7280; font-size: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.form-row { margin-bottom: 12px; }
label { display: block; font-size: 13px; color: #374151; margin-bottom: 6px; font-weight: 700; }
input, textarea, select { width: 100%; border: 1px solid #d1d5db; border-radius: 10px; padding: 10px 12px; font-size: 14px; background: #fff; }
textarea { min-height: 90px; resize: vertical; }
button, .btn { display: inline-block; border: 0; border-radius: 10px; padding: 10px 14px; background: #111827; color: #fff; cursor: pointer; font-size: 14px; line-height: 1.2; }
.btn.secondary { background: #0f766e; }
.btn.light { background: #e5e7eb; color: #111827; }
.btn.danger { background: #b91c1c; }
.btn.small { padding: 7px 10px; font-size: 12px; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { text-align: left; border-bottom: 1px solid #e5e7eb; padding: 11px 10px; font-size: 14px; vertical-align: top; }
th { background: #f9fafb; font-size: 12px; text-transform: uppercase; color: #6b7280; }
.badge { display: inline-flex; border-radius: 999px; padding: 4px 8px; font-size: 12px; font-weight: 800; }
.badge.ok { background: #dcfce7; color: #166534; }
.badge.no { background: #fee2e2; color: #991b1b; }
.badge.wait { background: #fef3c7; color: #92400e; }
.notice { padding: 12px 14px; background: #ecfeff; border: 1px solid #a5f3fc; border-radius: 12px; margin-bottom: 16px; }
.error { padding: 12px 14px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 12px; margin-bottom: 16px; }
.code { font-family: Consolas, monospace; background: #f3f4f6; padding: 8px; border-radius: 8px; word-break: break-all; display: block; }
.footer { padding: 24px 0; color: #6b7280; font-size: 13px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 8px 26px rgba(15,23,42,.04); }
.product-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #f3f4f6; }
.product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-title { font-weight: 800; color: #111827; }
.price { font-size: 20px; font-weight: 900; color: #0f766e; }
.stock { font-size: 13px; color: #6b7280; }
.filterbar { display: grid; grid-template-columns: 1fr 240px 130px; gap: 12px; align-items: end; }
.product-thumb { width: 72px; height: 54px; object-fit: cover; border-radius: 10px; background: #f3f4f6; border: 1px solid #e5e7eb; }
.qty { max-width: 90px; }
.summary { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; }
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .filterbar { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .grid, .grid-2, .form-grid, .product-grid { grid-template-columns: 1fr; } .nav { align-items: flex-start; flex-direction: column; } }

/* Production B2B catalogue polish */
body { background: #f4f5f7; }
.topbar { background: #0b1220; box-shadow: 0 10px 30px rgba(2, 6, 23, .14); }
.brand { letter-spacing: .3px; text-transform: uppercase; }
.shop-hero { display: flex; justify-content: space-between; align-items: stretch; gap: 22px; background: radial-gradient(circle at top left, #1f2937, #07111f 70%); color: #fff; border-radius: 24px; padding: 34px; margin-bottom: 22px; overflow: hidden; position: relative; }
.shop-hero:after { content: ""; position: absolute; width: 360px; height: 360px; right: -150px; top: -160px; border-radius: 999px; background: rgba(20, 184, 166, .22); }
.shop-hero > * { position: relative; z-index: 1; }
.shop-hero h1 { margin: 6px 0 10px; font-size: clamp(30px, 4vw, 48px); line-height: 1; letter-spacing: -1.2px; }
.shop-hero p { margin: 0; color: #cbd5e1; max-width: 760px; font-size: 16px; }
.eyebrow { display: inline-flex; font-size: 12px; font-weight: 900; letter-spacing: 1.8px; color: #5eead4; }
.shop-hero-card { width: 210px; min-width: 210px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 18px; display: flex; flex-direction: column; gap: 8px; backdrop-filter: blur(10px); }
.shop-hero-card strong { font-size: 42px; line-height: 1; }
.shop-hero-card span { color: #cbd5e1; margin-bottom: auto; }
.shop-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 20px; align-items: start; }
.category-panel { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 16px; position: sticky; top: 82px; box-shadow: 0 12px 35px rgba(15,23,42,.05); }
.category-title { font-weight: 900; margin-bottom: 12px; color: #111827; }
.category-link { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 13px; color: #374151; font-weight: 700; margin-bottom: 4px; }
.category-link small { color: #6b7280; background: #f3f4f6; border-radius: 999px; padding: 2px 8px; }
.category-link:hover, .category-link.active { background: #0f766e; color: #fff; }
.category-link:hover small, .category-link.active small { background: rgba(255,255,255,.18); color: #fff; }
.shop-main { min-width: 0; }
.shop-toolbar { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 16px; margin-bottom: 14px; display: flex; justify-content: space-between; gap: 14px; align-items: end; box-shadow: 0 12px 35px rgba(15,23,42,.05); }
.shop-toolbar strong { display: block; font-size: 20px; color: #111827; }
.shop-toolbar span { display: block; color: #6b7280; font-size: 13px; margin-top: 3px; }
.shop-search { display: grid; grid-template-columns: minmax(220px, 1fr) 150px 110px; gap: 10px; align-items: center; flex: 1; max-width: 650px; }
.category-chips { display: none; gap: 8px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 4px; }
.chip { white-space: nowrap; border: 1px solid #e5e7eb; color: #374151; background: #fff; border-radius: 999px; padding: 9px 13px; font-weight: 800; font-size: 13px; }
.chip.active { background: #111827; border-color: #111827; color: #fff; }
.shop-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.trade-card { border-radius: 22px; border-color: #e7e9ee; box-shadow: 0 10px 30px rgba(15,23,42,.06); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.trade-card:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(15,23,42,.10); border-color: #cbd5e1; }
.product-image-wrap { position: relative; background: #f8fafc; }
.product-card img { aspect-ratio: 1/1; object-fit: contain; padding: 14px; transition: transform .18s ease; }
.trade-card:hover img { transform: scale(1.03); }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 900; border-radius: 999px; padding: 6px 9px; box-shadow: 0 6px 20px rgba(15,23,42,.08); }
.product-badge.ok { background: #dcfce7; color: #166534; }
.product-badge.no { background: #fee2e2; color: #991b1b; }
.product-body { padding: 15px; gap: 9px; }
.product-meta { display: flex; justify-content: space-between; gap: 8px; color: #64748b; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; }
.product-title { margin: 0; font-size: 15px; line-height: 1.28; min-height: 39px; }
.product-sku { color: #94a3b8; font-size: 12px; line-height: 1.35; }
.product-desc { color: #64748b; font-size: 13px; line-height: 1.45; margin: 0; min-height: 38px; }
.product-bottom { margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 10px; border-top: 1px solid #eef2f7; padding-top: 12px; }
.quick-add { display: flex; align-items: center; gap: 7px; }
.quick-add .qty { width: 64px; padding: 9px 8px; text-align: center; }
.quick-add .btn { padding: 10px 12px; font-weight: 900; }
.empty-state { grid-column: 1 / -1; background: #fff; border: 1px dashed #cbd5e1; border-radius: 22px; padding: 40px; text-align: center; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.page-link { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 9px 13px; color: #374151; font-weight: 800; }
.page-link.active { background: #111827; border-color: #111827; color: #fff; }
button:disabled, .btn:disabled, input:disabled { opacity: .55; cursor: not-allowed; }
@media (max-width: 1180px) { .shop-grid-four { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 980px) { .shop-layout { grid-template-columns: 1fr; } .category-panel { display: none; } .category-chips { display: flex; } .shop-toolbar { align-items: stretch; flex-direction: column; } .shop-search { max-width: none; grid-template-columns: 1fr 150px 110px; } .shop-hero { flex-direction: column; } .shop-hero-card { width: 100%; min-width: 0; } }
@media (max-width: 760px) { .shop-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .shop-search { grid-template-columns: 1fr; } .shop-hero { padding: 24px; } .product-bottom { align-items: stretch; flex-direction: column; } .quick-add { width: 100%; } .quick-add .qty { flex: 1; width: auto; } .quick-add .btn { flex: 1; } }
@media (max-width: 460px) { .shop-grid-four { grid-template-columns: 1fr; } }
/* Pro B2B additions */
.brand img{height:34px;max-width:130px;object-fit:contain;margin-right:10px}.menu-btn{display:none}.home-hero{display:grid;grid-template-columns:1.5fr .8fr;gap:28px;align-items:center;padding:52px;border-radius:28px;background:linear-gradient(135deg,#111827,#374151);color:#fff;margin-bottom:34px}.home-hero h1{font-size:48px;margin:10px 0}.home-hero p{font-size:18px;opacity:.9}.eyebrow{text-transform:uppercase;letter-spacing:.14em;font-size:12px;color:#d1d5db}.hero-actions{display:flex;gap:12px;margin-top:24px}.btn.big{padding:14px 20px;font-size:16px}.hero-card{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);padding:28px;border-radius:22px;backdrop-filter:blur(8px)}.hero-card li{margin:10px 0}.section-head{display:flex;justify-content:space-between;gap:20px;align-items:end;margin:30px 0 16px}.section-head p{max-width:560px;color:#6b7280}.brand-showcase{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.brand-tile{background:#fff;border:1px solid #e5e7eb;border-radius:18px;padding:22px;min-height:120px;display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:0 10px 24px rgba(15,23,42,.06)}.brand-tile img{max-height:52px;max-width:160px;object-fit:contain;margin-bottom:12px}.brand-tile strong{font-size:20px;margin-bottom:12px}.brand-tile span{font-size:13px;color:#6b7280}.category-showcase{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.category-tile{background:#f8fafc;border:1px solid #e5e7eb;border-radius:18px;padding:22px}.info-band{display:flex;justify-content:space-between;align-items:center;gap:20px;background:#111827;color:#fff;border-radius:24px;padding:28px;margin-top:34px}.grid-form{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.grid-form .full{grid-column:1/-1}.page-head{display:flex;justify-content:space-between;align-items:center;gap:16px}.stat-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px;margin-bottom:22px}.stat{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:18px}.stat b{display:block;font-size:28px}.stat span{color:#6b7280}.stat.warn{background:#fff7ed}.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.action-card{font-size:20px;font-weight:700;text-align:center;text-decoration:none}.inline{display:inline-flex;gap:6px;margin-left:6px}.small,button.small,.btn.small{padding:7px 10px;font-size:12px}.danger{background:#b91c1c!important;color:white!important}.mini-logo{width:64px;height:42px;object-fit:contain}.thumb{width:58px;height:58px;object-fit:cover;border-radius:10px;border:1px solid #e5e7eb}.preview-img{max-width:160px;max-height:120px;display:block;margin-top:10px;border:1px solid #e5e7eb;border-radius:12px}.filterbar,.catalog-toolbar{display:flex;gap:10px;margin:14px 0 18px}.filterbar input,.catalog-toolbar input{flex:1}.shop-layout{display:grid;grid-template-columns:260px 1fr;gap:24px}.shop-sidebar{position:sticky;top:90px;align-self:start;background:#fff;border:1px solid #e5e7eb;border-radius:20px;padding:18px}.filter-link{display:flex;justify-content:space-between;gap:8px;text-decoration:none;padding:10px 12px;border-radius:12px;color:#111827}.filter-link:hover,.filter-link.active{background:#111827;color:#fff}.shop-hero{background:linear-gradient(135deg,#f8fafc,#e5e7eb);border:1px solid #e5e7eb;border-radius:24px;padding:30px;margin-bottom:16px}.shop-hero h1{margin:0 0 8px;font-size:34px}.product-grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.product-card{background:#fff;border:1px solid #e5e7eb;border-radius:20px;overflow:hidden;box-shadow:0 8px 22px rgba(15,23,42,.05);display:flex;flex-direction:column}.product-img{position:relative;aspect-ratio:1/1;background:#f8fafc;display:flex;align-items:center;justify-content:center}.product-img img{width:100%;height:100%;object-fit:cover}.discount-badge{position:absolute;top:12px;left:12px;background:#111827;color:#fff;border-radius:999px;padding:6px 10px;font-size:12px;font-weight:700}.product-body{padding:14px;display:flex;flex-direction:column;gap:8px;flex:1}.brand-name{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:#6b7280}.product-body h3{font-size:15px;line-height:1.25;margin:0;min-height:38px}.sku,.smalltext{font-size:12px;margin:0}.price-row{display:flex;align-items:end;justify-content:space-between;gap:8px;margin-top:auto}.list-price{text-decoration:line-through;color:#9ca3af;font-size:12px}.add-cart{display:grid;grid-template-columns:62px 1fr;gap:8px}.qty-input,.add-cart input{min-width:0}.chips{display:flex;flex-wrap:wrap;gap:8px}.chips span{background:#f3f4f6;border:1px solid #e5e7eb;border-radius:999px;padding:6px 10px;font-size:12px}code{display:block;background:#111827;color:#fff;padding:14px;border-radius:12px;overflow:auto}.check{display:flex;gap:8px;align-items:center}.wide{max-width:1100px}
@media(max-width:1100px){.product-grid-4,.brand-showcase,.category-showcase{grid-template-columns:repeat(3,1fr)}.stat-grid{grid-template-columns:repeat(3,1fr)}}@media(max-width:800px){.home-hero,.shop-layout,.grid-form,.grid-2,.grid-3{grid-template-columns:1fr}.product-grid-4,.brand-showcase,.category-showcase{grid-template-columns:repeat(2,1fr)}.shop-sidebar{position:static}.home-hero h1{font-size:34px}.section-head,.info-band,.hero-actions,.filterbar,.catalog-toolbar{flex-direction:column;align-items:stretch}.menu-btn{display:block}.topbar nav{display:none}.menu-open .topbar nav{display:flex;position:absolute;left:16px;right:16px;top:68px;z-index:50;background:white;border:1px solid #e5e7eb;border-radius:16px;flex-direction:column;padding:12px}.stat-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:520px){.product-grid-4,.brand-showcase,.category-showcase{grid-template-columns:1fr}}

/* Fix v1.0.1 - cleaner B2B product list and controlled image zoom */
.product-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.product-card {
    border-radius: 18px;
    overflow: visible;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .12);
}
.product-img {
    aspect-ratio: 4 / 3 !important;
    height: auto;
    max-height: 210px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    isolation: isolate;
}
.product-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 12px;
    transition: transform .25s ease, filter .25s ease;
    cursor: zoom-in;
}
.product-img:hover img {
    transform: scale(1.28);
    filter: drop-shadow(0 16px 22px rgba(15, 23, 42, .20));
}
.product-img::after {
    content: "Yakınlaştır";
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(17, 24, 39, .86);
    color: #fff;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(4px);
    transition: .2s ease;
    pointer-events: none;
}
.product-img:hover::after {
    opacity: 1;
    transform: translateY(0);
}
.product-body {
    gap: 9px;
}
.product-body h3 {
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.catalog-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    min-height: 26px;
}
.catalog-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 8px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 11px;
    font-weight: 700;
}
.stock-pill.ok { background: #dcfce7; color: #166534; }
.stock-pill.low { background: #fef3c7; color: #92400e; }
.stock-pill.no { background: #fee2e2; color: #991b1b; }
.price-row strong { color: #0f766e; font-size: 18px; }
.add-cart button:disabled { opacity: .45; cursor: not-allowed; }
.thumb {
    width: 58px !important;
    height: 58px !important;
    object-fit: contain !important;
    background: #f8fafc;
    padding: 4px;
}
@media (max-width: 1200px) { .product-grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px) { .product-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .product-grid-4 { grid-template-columns: 1fr; } .product-img { max-height: 240px; } }

/* Fix v1.0.2 - marketplace style product cards, no giant images, product detail page */
.product-grid-4 .product-card {
    overflow: hidden !important;
    background: #fff !important;
}
.product-grid-4 .product-img,
a.product-img {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 300px !important;
    max-height: 300px !important;
    aspect-ratio: auto !important;
    background: #fff !important;
    border-bottom: 1px solid #f1f5f9 !important;
    overflow: hidden !important;
    position: relative !important;
    text-decoration: none !important;
}
.product-grid-4 .product-img img,
a.product-img img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 88% !important;
    max-height: 260px !important;
    object-fit: contain !important;
    padding: 0 !important;
    margin: auto !important;
    transition: transform .25s ease, filter .25s ease !important;
}
.product-grid-4 .product-img:hover img,
a.product-img:hover img {
    transform: scale(1.12) !important;
    filter: drop-shadow(0 16px 20px rgba(15, 23, 42, .14)) !important;
}
.product-actions { margin-top: 2px; }
.quick-view {
    display: block;
    width: 100%;
    background: #eee7dc;
    color: #28313b;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 12px;
    font-weight: 800;
    padding: 11px 10px;
    border-radius: 0;
}
.quick-view:hover { background: #111827; color: #fff; }
.product-body h3 a { color: #111827; }
.product-body h3 a:hover { color: #0f766e; }
.product-card .brand-name { color: #9ca3af; font-weight: 800; }
.catalog-meta { margin: 2px 0; }
.add-cart { margin-top: 4px; }
.add-cart button { background: #111827; }

.admin-product-thumb,
.thumb {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    object-fit: contain !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 5px !important;
}
.preview-img {
    width: 180px !important;
    height: 140px !important;
    max-width: 180px !important;
    max-height: 140px !important;
    object-fit: contain !important;
    background: #fff !important;
    padding: 8px !important;
}
.breadcrumb { margin-bottom: 16px; color: #6b7280; font-size: 14px; }
.product-detail-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    gap: 28px;
    align-items: start;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}
.detail-image-box {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 22px;
    overflow: hidden;
}
.detail-image-box img {
    width: auto !important;
    height: auto !important;
    max-width: 92% !important;
    max-height: 520px !important;
    object-fit: contain !important;
    transition: transform .25s ease;
}
.detail-image-box:hover img { transform: scale(1.08); }
.detail-info-box h1 { font-size: 32px; line-height: 1.15; margin: 10px 0 16px; }
.detail-brand { display: inline-block; margin-top: 6px; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.detail-tags span {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 800;
    color: #4b5563;
}
.detail-price-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 20px;
}
.detail-price-panel small { display: block; color: #6b7280; margin-bottom: 6px; }
.detail-price-panel strong { font-size: 24px; color: #0f766e; }
.detail-description {
    border-top: 1px solid #e5e7eb;
    padding-top: 18px;
    margin-top: 18px;
}
.detail-description h3 { margin-top: 0; }
.detail-description p { line-height: 1.65; color: #374151; }
.detail-add-cart {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    margin-top: 22px;
}
.detail-add-cart button:disabled { opacity: .45; cursor: not-allowed; }
@media(max-width: 980px) {
    .product-detail-card { grid-template-columns: 1fr; }
    .detail-image-box { min-height: 360px; }
    .detail-image-box img { max-height: 340px !important; }
}
@media(max-width: 680px) {
    a.product-img, .product-grid-4 .product-img { height: 240px !important; max-height: 240px !important; }
    a.product-img img, .product-grid-4 .product-img img { max-height: 210px !important; }
    .detail-price-panel { grid-template-columns: 1fr; }
}
/* v103 B2B refinements */
.shop-sidebar{position:sticky;top:92px;max-height:calc(100vh - 110px);overflow:auto;padding-right:8px}.shop-sidebar details{border-bottom:1px solid #eee;padding:8px 0}.shop-sidebar summary{cursor:pointer;font-weight:700;font-size:13px;letter-spacing:.02em;color:#1f2937;list-style:none}.shop-sidebar summary::-webkit-details-marker{display:none}.shop-sidebar summary:after{content:'+';float:right}.shop-sidebar details[open] summary:after{content:'−'}.product-card h3{font-size:14px;line-height:1.35}.product-body{font-size:13px}.product-img{height:260px;background:#fff;display:flex;align-items:center;justify-content:center;overflow:hidden}.product-img img{width:100%;height:100%;object-fit:contain;transition:transform .25s ease}.product-img:hover img{transform:scale(1.06)}.quick-view,.product-actions{display:none!important}.shop-hero.compact{padding:22px 28px}.shop-hero.compact h1{font-size:28px}.shop-hero.compact p{font-size:14px}.product-count{font-size:13px;margin:10px 0 14px}.small-stat{font-size:19px!important}.print-actions{display:flex;align-items:center;justify-content:space-between;gap:16px}.inline-form{display:flex;gap:8px;align-items:center;flex-wrap:wrap}.inline-form input,.inline-form select{min-width:160px}.stack-form{display:grid;gap:6px}.stack-form input,.stack-form select{width:100%;font-size:12px;padding:8px}.badge.wait{background:#fff7ed;color:#9a3412}.badge.ok{background:#ecfdf5;color:#047857}.badge.no{background:#fef2f2;color:#b91c1c}.card table small{font-size:11px}.catalog-meta{gap:5px}.catalog-pill{font-size:11px}.price-row strong{font-size:16px}.brand-name{font-size:10px}.add-cart input{font-size:12px}.add-cart button{font-size:12px}.detail-image-box img{max-height:560px;object-fit:contain}.detail-tags span{font-size:12px}@media(max-width:720px){.shop-layout{display:block}.shop-sidebar{position:relative;top:auto;max-height:260px;margin-bottom:16px}.product-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px}.product-img{height:185px}.product-card h3{font-size:12px}.product-body{padding:10px;font-size:12px}.brand-name{font-size:9px}.catalog-pill{font-size:10px}.price-row{display:block}.price-row strong{font-size:14px}.add-cart{grid-template-columns:54px 1fr}.shop-hero.compact h1{font-size:22px}.catalog-toolbar{grid-template-columns:1fr}.print-actions{display:block}.detail-price-panel{grid-template-columns:1fr}.inline-form{display:grid;grid-template-columns:1fr}.inline-form input,.inline-form button,.inline-form select{width:100%}}@media print{.topbar,.no-print,.actions,.menu-btn,button,.btn,form{display:none!important}.container{max-width:none}.card{box-shadow:none;border:1px solid #ddd;break-inside:avoid}.page{padding:0}body{background:white;color:black}.table-wrap{overflow:visible}table{font-size:11px}.print-actions{display:block}a{color:black;text-decoration:none}}
/* v105 CRM, PDF report, CMS and multi-image refinements */
.order-thumb{width:64px;height:64px;object-fit:contain;background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:4px}.order-table th,.order-table td{font-size:12px}.gallery-strip{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}.gallery-strip img{width:82px;height:82px;object-fit:contain;background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:5px}.editable-hero{background-size:cover!important;background-position:center!important}.design-form h2{margin-top:28px}.design-form .preview-img{margin-top:8px}.customer-mini-list a{font-weight:800}.actions{display:flex;gap:8px;flex-wrap:wrap;align-items:center}.secondary{background:#fff!important;color:#111827!important}.home-hero.editable-hero{background-size:cover;background-position:center}.home-hero.editable-hero .hero-card{background:rgba(255,255,255,.14)}@media print{.order-thumb{width:44px;height:44px}.gallery-strip{display:none}.order-table th,.order-table td{font-size:10px;padding:6px}.print-actions .btn{display:none!important}}


/* v106 dynamic theme + AJAX shop + mini builder */
body{background:var(--gt-bg,#f5f6f8);color:var(--gt-text,#111827)}
.topbar,.btn,button{background:var(--gt-primary,#111827)}
a{color:var(--gt-primary,#111827)}
.btn.light,.secondary{border-color:var(--gt-primary,#111827)}
.card,.product-card,.brand-tile,.category-tile,.shop-sidebar,.builder-card{background:var(--gt-card,#fff);border-radius:var(--gt-radius,18px)}
.discount-badge,.badge.ok{background:var(--gt-accent,#f59e0b);color:#111827}
.cart-toast{position:fixed;right:24px;bottom:24px;z-index:9999;background:var(--gt-primary,#111827);color:#fff;border-radius:14px;padding:14px 18px;box-shadow:0 16px 40px rgba(0,0,0,.18);opacity:0;transform:translateY(12px);pointer-events:none;transition:.22s ease}.cart-toast.show{opacity:1;transform:translateY(0);pointer-events:auto}.cart-toast a{color:#fff;text-decoration:underline;font-weight:800}
.builder-showcase{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:26px 0}.builder-card{border:1px solid #e5e7eb;padding:24px;box-shadow:0 10px 24px rgba(15,23,42,.05)}.builder-card h2{font-size:22px;margin-top:0}.builder-block{border:1px solid #e5e7eb;border-radius:16px;padding:16px;margin:14px 0;background:#fafafa}.static-page{max-width:900px;margin:0 auto}.static-page h1{font-size:42px}.static-content{font-size:17px;line-height:1.7}.contact-boxes{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:22px}.contact-boxes>div{background:#f8fafc;border:1px solid #e5e7eb;border-radius:14px;padding:16px}.json-preview{background:#111827;color:#fff;border-radius:14px;padding:16px;overflow:auto;white-space:pre-wrap}.print-actions{align-items:center}
@media(max-width:820px){.builder-showcase,.contact-boxes{grid-template-columns:1fr}.cart-toast{left:16px;right:16px;bottom:16px}.product-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))!important}.product-img{height:185px!important}}
@media(max-width:520px){.product-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px}.product-body{padding:9px}.product-card h3{font-size:11.5px}.add-cart{grid-template-columns:48px 1fr}.add-cart button{font-size:11px;padding:8px 6px}.product-img{height:150px!important}}


/* v107 performance, footer and cleaner product hover */
.product-img::after{content:none!important;display:none!important}.product-img img{cursor:pointer!important}.product-grid-4 .product-img:hover img,a.product-img:hover img{transform:scale(1.06)!important}.catalog-pagination{display:flex;gap:8px;justify-content:center;align-items:center;margin:24px 0;flex-wrap:wrap}.page-link{display:inline-flex;align-items:center;justify-content:center;min-width:36px;height:36px;border:1px solid #e5e7eb;border-radius:10px;background:#fff;text-decoration:none;font-weight:800;color:#111827}.page-link.active{background:var(--gt-primary,#111827);color:#fff;border-color:var(--gt-primary,#111827)}
.site-footer{margin-top:48px;background:var(--gt-primary,#111827);color:#fff;padding:44px 0 18px}.site-footer a{display:block;color:#fff;text-decoration:none;margin:8px 0;opacity:.9}.site-footer p{color:rgba(255,255,255,.78);line-height:1.65}.site-footer h3,.site-footer h4{margin-top:0;color:#fff}.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:28px}.footer-bottom{border-top:1px solid rgba(255,255,255,.14);margin-top:28px;padding-top:16px;color:rgba(255,255,255,.65);font-size:13px}.design-form textarea{min-height:110px}.grid-form .actions.full{grid-column:1/-1}
@media(max-width:820px){.footer-grid{grid-template-columns:1fr}.site-footer{padding:34px 0 18px}}

/* v1.0.8 - visual/security/catalog polish */
body{background:var(--gt-bg,#f5f6f8);color:var(--gt-text,#111827);font-size:14px}.topbar{background:var(--gt-header-bg,#0b1220)!important;color:var(--gt-header-text,#fff)!important;z-index:1000}.topbar nav a,.brand{color:var(--gt-header-text,#fff)!important}.brand{display:flex;align-items:center;gap:10px}.brand-logo-box{display:inline-flex;align-items:center;justify-content:center;background:#fff;border-radius:10px;padding:5px;min-width:42px;height:34px}.brand-logo-box img{max-height:24px;max-width:120px;object-fit:contain;display:block}.menu-btn{color:var(--gt-header-text,#fff);border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.08)}
.menu-open .topbar nav{box-shadow:0 22px 70px rgba(15,23,42,.24)}.menu-open .topbar nav a{color:#111827!important;font-weight:700}.menu-open .topbar nav a:hover{color:var(--gt-accent,#f97316)!important}.page{padding-top:24px}.home-hero h1{letter-spacing:-1.4px}.builder-showcase.elementor-showcase{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.builder-card{border:1px solid rgba(15,23,42,.08);overflow:hidden;min-height:210px;display:flex;flex-direction:column}.builder-card.wide-block{grid-column:span 2}.builder-card-img{height:170px;background:#f8fafc;overflow:hidden}.builder-card-img img{width:100%;height:100%;object-fit:cover;display:block}.builder-split{display:grid;grid-template-columns:44% 1fr}.builder-split .builder-card-img{height:auto;min-height:260px}.builder-banner{grid-column:span 3;min-height:310px;background-size:cover!important}.builder-card-content{padding:22px}.builder-card-content h2{margin:0 0 10px;font-size:22px}.builder-text{line-height:1.7}.builder-text ul{padding-left:20px}.elementor-block{border:1px solid #e5e7eb;background:#fff;border-radius:18px;padding:16px;margin:16px 0}.public-catalog-head{display:flex;align-items:center;justify-content:space-between;gap:20px;background:linear-gradient(135deg,#0b1220,#172033);color:#fff;border-radius:26px;padding:34px;margin-bottom:22px}.public-catalog-head h1{font-size:42px;line-height:1;margin:6px 0 10px}.public-catalog-head p{color:#cbd5e1;margin:0;max-width:820px}.login-price-box{background:#f8fafc;border:1px solid #e5e7eb;border-radius:14px;padding:12px;margin-top:auto}.login-price-box strong{display:block;color:#111827}.login-price-box a{font-weight:900;color:var(--gt-accent,#f97316)}.dealer-only-box{background:#fff7ed;border:1px solid #fed7aa;border-radius:18px;padding:18px;margin:18px 0}.detail-description{line-height:1.7}.detail-description ul,.detail-description ol{padding-left:20px}.detail-description h2,.detail-description h3,.detail-description h4{margin:18px 0 8px}.product-img::after,a.product-img::after{content:none!important;display:none!important}.product-grid-4 .product-img:hover img,a.product-img:hover img{transform:scale(1.08)!important}.shop-sidebar{max-height:calc(100vh - 110px);overflow:auto}.shop-sidebar details{border-bottom:1px solid #eef2f7;padding-bottom:10px;margin-bottom:10px}.shop-sidebar summary{cursor:pointer;font-weight:900;padding:10px 4px;list-style:none}.shop-sidebar summary:after{content:'⌄';float:right;color:#94a3b8}.shop-sidebar details[open] summary:after{content:'⌃'}.catalog-toolbar input,.catalog-toolbar select,.catalog-toolbar button,.catalog-toolbar .btn{font-size:13px}.product-body h3{font-size:14px}.product-body,.smalltext,.catalog-pill,.brand-name{font-size:12px}.price-row strong{font-size:16px}.footer{background:var(--gt-footer-bg,#0b1220);color:var(--gt-footer-text,#d1d5db);margin-top:50px;padding:42px 0}.footer a{color:var(--gt-footer-text,#d1d5db)}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:28px}.footer h3,.footer h4{color:#fff;margin-top:0}.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:24px;padding-top:18px;color:#94a3b8}.static-page{max-width:960px;margin:0 auto}.static-page h1{text-align:left}.static-content{font-size:16px;line-height:1.8}.contact-boxes{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:22px}.contact-boxes>div{background:#f8fafc;border:1px solid #e5e7eb;border-radius:14px;padding:16px}.quick-view{display:none!important}.security-note{background:#f8fafc;border-left:4px solid var(--gt-accent,#f97316);padding:12px;border-radius:10px}.design-form h2{border-top:1px solid #eef2f7;padding-top:20px}.preview-img{max-height:80px;object-fit:contain;background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:5px;margin-top:8px}
@media(max-width:900px){.builder-showcase.elementor-showcase{grid-template-columns:1fr}.builder-card.wide-block,.builder-banner{grid-column:auto}.builder-split{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr 1fr}.public-catalog-head{flex-direction:column;align-items:flex-start}.public-catalog-head h1{font-size:34px}.contact-boxes{grid-template-columns:1fr}.shop-sidebar{max-height:none}.product-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px}.product-grid-4 .product-img,a.product-img{height:220px!important;max-height:220px!important}.product-grid-4 .product-img img,a.product-img img{max-height:190px!important}.add-cart{display:grid;grid-template-columns:64px 1fr;gap:6px}.add-cart button{font-size:12px;padding:9px 8px}}@media(max-width:520px){.product-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))!important}.product-grid-4 .product-img,a.product-img{height:160px!important;max-height:160px!important}.product-grid-4 .product-img img,a.product-img img{max-height:140px!important}.product-card{border-radius:14px}.product-body{padding:10px}.product-body h3{font-size:12.5px;min-height:34px}.catalog-pill{font-size:10px;padding:3px 6px}.price-row{font-size:11px}.price-row strong{font-size:14px}.list-price{font-size:11px}.footer-grid{grid-template-columns:1fr}.topbar{padding:10px 0}.brand span:last-child{font-size:13px}}
.site-footer{background:var(--gt-footer-bg,#0b1220);color:var(--gt-footer-text,#d1d5db);margin-top:50px;padding:42px 0}.site-footer a{display:block;color:var(--gt-footer-text,#d1d5db);margin:7px 0}.site-footer h3,.site-footer h4{color:#fff;margin-top:0}.site-footer p{line-height:1.7}.site-footer .footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:24px;padding-top:18px;color:#94a3b8}

/* v109 Rachel Ellen inspired white trade header */
.trade-header{background:var(--gt-header-bg,#fff); color:var(--gt-header-text,#111827); border-bottom:1px solid #e5e7eb; position:sticky; top:0; z-index:50; box-shadow:0 1px 0 rgba(17,24,39,.04)}
.header-icons-row{height:86px; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:18px}
.center-logo{display:flex; align-items:center; justify-content:center; text-decoration:none; color:var(--gt-header-text,#111827); font-size:26px; font-weight:800; letter-spacing:.04em; text-transform:uppercase}
.center-logo img{max-height:54px; max-width:260px; object-fit:contain; display:block}
.header-left-icons,.header-right-icons{display:flex; align-items:center; gap:12px}.header-right-icons{justify-content:flex-end}.header-left-icons{justify-content:flex-start}
.icon-link,.mobile-menu-btn{width:42px; height:42px; border:1px solid #e5e7eb; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background:#fff; color:#111827; text-decoration:none; font-size:18px; transition:.18s ease; position:relative}.icon-link:hover,.mobile-menu-btn:hover{border-color:var(--gt-accent); transform:translateY(-1px)}.icon-link small{font-size:11px; margin-left:2px}.mobile-menu-btn{display:none; cursor:pointer}
.header-menu-line{border-top:1px solid #f1f1f1}.header-menu-wrap{display:flex; justify-content:center}.main-menu{display:flex; align-items:center; justify-content:center; gap:26px; min-height:49px; flex-wrap:wrap}.main-menu a{text-decoration:none; color:#111827; font-size:13px; letter-spacing:.05em; text-transform:uppercase; font-weight:600}.main-menu a:hover{color:var(--gt-accent)}.dealer-apply{background:var(--gt-accent)!important;color:#fff!important;padding:11px 18px;border-radius:999px;box-shadow:0 8px 20px rgba(249,115,22,.22)}
.lang-switch{position:relative}.lang-toggle{cursor:pointer}.lang-menu{display:none; position:absolute; right:0; top:48px; background:#fff; border:1px solid #e5e7eb; border-radius:16px; min-width:180px; padding:8px; box-shadow:0 20px 40px rgba(15,23,42,.12)}.lang-switch:hover .lang-menu{display:block}.lang-menu a{display:block; padding:9px 10px; border-radius:10px; color:#111827; text-decoration:none; font-size:14px}.lang-menu a:hover{background:#f8fafc}
.inner-banner{border-radius:28px; min-height:220px; background-size:cover; background-position:center; color:#fff; display:flex; flex-direction:column; justify-content:center; padding:46px; margin:26px 0; overflow:hidden}.inner-banner.no-image{background:linear-gradient(135deg,var(--gt-primary),#334155)}.inner-banner h1{font-size:44px; margin:0}.inner-banner p{max-width:760px; color:rgba(255,255,255,.85)}
.static-page{font-size:15px; line-height:1.8}.static-content h2,.static-content h3{margin-top:24px}.contact-boxes{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px}.contact-boxes>div{background:#f8fafc;border:1px solid #e5e7eb;border-radius:16px;padding:16px}.application-intro{margin-bottom:20px}.dealer-application-form{background:linear-gradient(180deg,#fff,#fbfaf8)}
.brand-page-grid{margin:28px 0}.brand-tile{text-decoration:none;color:#111827}.brand-tile span{display:none!important}.footer-grid a{display:block;color:var(--gt-footer-text);text-decoration:none;margin:8px 0;opacity:.9}.footer-grid a:hover{opacity:1;color:#fff}.discount-badge{font-size:12px!important; padding:6px 10px!important}.filter-link small{font-weight:700; color:var(--gt-accent); margin-left:auto}.design-form .builder-block{border:1px dashed #d1d5db; border-radius:18px; padding:18px; background:#fff}.align-start{align-items:start}
@media(max-width:760px){.header-icons-row{height:72px;grid-template-columns:auto 1fr auto}.center-logo{justify-content:center;font-size:20px}.center-logo img{max-height:42px;max-width:180px}.dealer-login-icon{display:none}.mobile-menu-btn{display:inline-flex}.header-menu-line{display:none}.menu-open .header-menu-line{display:block}.menu-open .main-menu{display:flex}.main-menu{align-items:stretch;justify-content:flex-start;gap:0;flex-direction:column;padding:12px 0}.main-menu a{padding:12px 18px;border-bottom:1px solid #f1f5f9}.dealer-apply{display:inline-block;margin:10px 14px;text-align:center}.icon-link,.mobile-menu-btn{width:38px;height:38px}.header-left-icons{gap:7px}.header-right-icons{gap:7px}.lang-menu{right:-45px}.inner-banner{min-height:150px;padding:28px;border-radius:20px}.inner-banner h1{font-size:30px}.contact-boxes{grid-template-columns:1fr}.product-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:14px}.product-card h3{font-size:13px}.product-body{padding:10px}.price-row{font-size:13px}}


/* v110 header color controls, mobile order and cleaner icons */
html, body { background:#ffffff !important; }
.trade-header{background:var(--gt-header-bg,#0b1220)!important;color:var(--gt-header-text,#ffffff)!important;border-bottom:1px solid rgba(255,255,255,.14)!important;box-shadow:0 8px 28px rgba(15,23,42,.10)!important}
.header-menu-line{border-top:1px solid rgba(255,255,255,.12)!important}.center-logo{color:var(--gt-header-text,#ffffff)!important}.center-logo img{filter:none}.main-menu a{color:var(--gt-header-text,#ffffff)!important;opacity:.92}.main-menu a:hover{opacity:1;color:var(--gt-accent,#f59e0b)!important}.dealer-apply{background:var(--gt-accent,#f59e0b)!important;color:#111827!important;font-weight:900!important}.icon-link,.mobile-menu-btn{width:34px!important;height:34px!important;border:0!important;background:transparent!important;color:var(--gt-header-text,#ffffff)!important;border-radius:10px!important;font-size:0!important;box-shadow:none!important}.icon-link:hover,.mobile-menu-btn:hover{background:rgba(255,255,255,.10)!important;transform:none!important}.gt-icon{display:block;width:21px;height:21px;background:currentColor;mask-size:contain;mask-position:center;mask-repeat:no-repeat;-webkit-mask-size:contain;-webkit-mask-position:center;-webkit-mask-repeat:no-repeat}.gt-icon-search{mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8 4.5a6.3 6.3 0 1 0 0 12.6 6.3 6.3 0 0 0 0-12.6ZM2.8 10.8a8 8 0 1 1 14.2 5.1l4 4a1.1 1.1 0 0 1-1.6 1.6l-4-4A8 8 0 0 1 2.8 10.8Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8 4.5a6.3 6.3 0 1 0 0 12.6 6.3 6.3 0 0 0 0-12.6ZM2.8 10.8a8 8 0 1 1 14.2 5.1l4 4a1.1 1.1 0 0 1-1.6 1.6l-4-4A8 8 0 0 1 2.8 10.8Z'/%3E%3C/svg%3E")}.gt-icon-user{mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4.6 4.6 0 1 0 0-9.2 4.6 4.6 0 0 0 0 9.2Zm0 2.1c-4.9 0-8.5 2.6-8.5 6.1 0 .7.5 1.2 1.2 1.2h14.6c.7 0 1.2-.5 1.2-1.2 0-3.5-3.6-6.1-8.5-6.1Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4.6 4.6 0 1 0 0-9.2 4.6 4.6 0 0 0 0 9.2Zm0 2.1c-4.9 0-8.5 2.6-8.5 6.1 0 .7.5 1.2 1.2 1.2h14.6c.7 0 1.2-.5 1.2-1.2 0-3.5-3.6-6.1-8.5-6.1Z'/%3E%3C/svg%3E")}.gt-icon-globe{mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19Zm6.9 8.4h-3.1a14 14 0 0 0-1.3-5 7.4 7.4 0 0 1 4.4 5Zm-6.9-6c.7 1 1.4 3 1.6 6h-3.2c.2-3 .9-5 1.6-6Zm-2.5 1a14 14 0 0 0-1.3 5H5.1a7.4 7.4 0 0 1 4.4-5Zm-4.4 7.1h3.1c.1 1.9.5 3.7 1.3 5A7.4 7.4 0 0 1 5.1 13Zm6.9 6c-.7-1-1.4-3-1.6-6h3.2c-.2 3-.9 5-1.6 6Zm2.5-1a14 14 0 0 0 1.3-5h3.1a7.4 7.4 0 0 1-4.4 5Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19Zm6.9 8.4h-3.1a14 14 0 0 0-1.3-5 7.4 7.4 0 0 1 4.4 5Zm-6.9-6c.7 1 1.4 3 1.6 6h-3.2c.2-3 .9-5 1.6-6Zm-2.5 1a14 14 0 0 0-1.3 5H5.1a7.4 7.4 0 0 1 4.4-5Zm-4.4 7.1h3.1c.1 1.9.5 3.7 1.3 5A7.4 7.4 0 0 1 5.1 13Zm6.9 6c-.7-1-1.4-3-1.6-6h3.2c-.2 3-.9 5-1.6 6Zm2.5-1a14 14 0 0 0 1.3-5h3.1a7.4 7.4 0 0 1-4.4 5Z'/%3E%3C/svg%3E")}.gt-icon-cart{mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 18.5a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4Zm10 0a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4ZM4.1 3.2H2.8a1.1 1.1 0 0 0 0 2.2h.5l2.2 9.6a2.4 2.4 0 0 0 2.3 1.8h8.8a2.4 2.4 0 0 0 2.3-1.7L21 7.7a1.2 1.2 0 0 0-1.1-1.5H6.2l-.4-1.5a1.8 1.8 0 0 0-1.7-1.5Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 18.5a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4Zm10 0a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4ZM4.1 3.2H2.8a1.1 1.1 0 0 0 0 2.2h.5l2.2 9.6a2.4 2.4 0 0 0 2.3 1.8h8.8a2.4 2.4 0 0 0 2.3-1.7L21 7.7a1.2 1.2 0 0 0-1.1-1.5H6.2l-.4-1.5a1.8 1.8 0 0 0-1.7-1.5Z'/%3E%3C/svg%3E")}.gt-icon-menu{mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6.5h16a1.1 1.1 0 0 0 0-2.2H4a1.1 1.1 0 0 0 0 2.2Zm0 6.6h16a1.1 1.1 0 0 0 0-2.2H4a1.1 1.1 0 0 0 0 2.2Zm0 6.6h16a1.1 1.1 0 0 0 0-2.2H4a1.1 1.1 0 0 0 0 2.2Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6.5h16a1.1 1.1 0 0 0 0-2.2H4a1.1 1.1 0 0 0 0 2.2Zm0 6.6h16a1.1 1.1 0 0 0 0-2.2H4a1.1 1.1 0 0 0 0 2.2Zm0 6.6h16a1.1 1.1 0 0 0 0-2.2H4a1.1 1.1 0 0 0 0 2.2Z'/%3E%3C/svg%3E")}.icon-link small{position:absolute;top:-5px;right:-5px;min-width:17px;height:17px;border-radius:999px;background:var(--gt-accent,#f59e0b);color:#111827;font-size:10px;display:flex;align-items:center;justify-content:center;font-weight:900}.lang-menu{background:#fff!important;color:#111827!important}.lang-menu a{color:#111827!important}.mobile-search-icon{display:none!important}.page{background:#fff}.card,.product-card,.shop-sidebar,.static-page{background:#fff!important}
.search-page-form{display:grid;grid-template-columns:1fr auto;gap:10px;margin:20px 0}.search-page-form input{height:48px}.search-empty{padding:38px;text-align:center;background:#f8fafc;border:1px solid #e5e7eb;border-radius:18px;color:#64748b}
@media(max-width:760px){.header-icons-row{height:70px!important;grid-template-columns:72px 1fr auto!important}.mobile-menu-btn{display:inline-flex!important;order:1}.header-left-icons{order:1;justify-content:flex-start!important}.center-logo{order:2;justify-content:center!important}.header-right-icons{order:3;gap:5px!important}.desktop-icon,.dealer-login-icon{display:none!important}.mobile-search-icon{display:inline-flex!important}.header-menu-line{background:var(--gt-header-bg,#0b1220)!important}.menu-open .header-menu-line{display:block!important;position:absolute;left:0;right:0;top:70px;box-shadow:0 20px 40px rgba(15,23,42,.18)}.menu-open .main-menu{background:var(--gt-header-bg,#0b1220)!important;border-top:1px solid rgba(255,255,255,.12)}.main-menu a{color:var(--gt-header-text,#fff)!important;border-bottom:1px solid rgba(255,255,255,.10)!important}.center-logo img{max-height:40px!important;max-width:165px!important}.icon-link,.mobile-menu-btn{width:31px!important;height:31px!important}.gt-icon{width:19px;height:19px}.lang-menu{right:-68px!important}.search-page-form{grid-template-columns:1fr}.search-page-form button{width:100%}}

/* v111 header/icon visual fix */
html,body{background:#fff!important;}
.trade-header{background:var(--gt-header-bg,#0b1220)!important;color:var(--gt-header-text,#ffffff)!important;}
.header-menu-line{background:var(--gt-header-bg,#0b1220)!important;}
.icon-link,.mobile-menu-btn{color:var(--gt-header-text,#ffffff)!important;background:transparent!important;border:0!important;box-shadow:none!important;position:relative;}
.gt-svg{display:block;width:20px;height:20px;fill:currentColor;stroke:none;}
.icon-link:hover,.mobile-menu-btn:hover{background:rgba(255,255,255,.08)!important;}
.lang-toggle{gap:5px;min-width:auto!important;padding:0 5px!important;}
.lang-current{font-size:11px;font-weight:900;letter-spacing:.04em;line-height:1;color:currentColor;}
.header-left-icons,.header-right-icons{display:flex;align-items:center;}
.header-left-icons{justify-content:flex-start;}
.header-right-icons{justify-content:flex-end;}
.center-logo{justify-content:center;text-align:center;}
.mobile-menu-btn{display:none;}
.mobile-search-icon{display:none!important;}
@media(max-width:760px){
  .header-icons-row{height:68px!important;grid-template-columns:52px 1fr auto!important;gap:8px!important;}
  .mobile-menu-btn{display:inline-flex!important;}
  .header-left-icons .desktop-icon{display:none!important;}
  .mobile-search-icon{display:inline-flex!important;}
  .header-left-icons{width:52px;}
  .header-right-icons{gap:4px!important;}
  .center-logo{font-size:20px!important;letter-spacing:.03em!important;}
  .center-logo img{max-height:38px!important;max-width:160px!important;}
  .icon-link,.mobile-menu-btn{width:32px!important;height:32px!important;padding:0!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;}
  .gt-svg{width:19px;height:19px;}
  .lang-current{display:none;}
  .lang-menu{right:-55px!important;top:40px!important;}
  .menu-open .header-menu-line{top:68px!important;background:var(--gt-header-bg,#0b1220)!important;}
}
.lang-flag{font-size:16px;line-height:1;display:inline-flex;align-items:center;justify-content:center;min-width:18px;}
@media(max-width:760px){.lang-flag{font-size:15px;}}

/* v112 polish */
.lang-switch{position:relative;padding-bottom:12px;margin-bottom:-12px}.lang-menu{top:42px!important;z-index:9999}.lang-switch:hover .lang-menu,.lang-switch:focus-within .lang-menu{display:block!important}.lang-menu:before{content:"";position:absolute;left:0;right:0;top:-14px;height:14px}.lang-toggle .lang-flag{font-size:17px;line-height:1}.lang-toggle .lang-current{font-size:11px;font-weight:800;letter-spacing:.06em}.admin-menu-group{position:relative;display:inline-flex;align-items:center}.admin-menu-trigger{border:0;background:transparent;color:var(--gt-header-text,#fff);font-weight:800;letter-spacing:.03em;text-transform:uppercase;padding:12px 14px;cursor:pointer}.admin-menu-dropdown{display:none;position:absolute;top:100%;right:0;min-width:210px;background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:8px;box-shadow:0 22px 44px rgba(15,23,42,.18);z-index:1000}.admin-menu-group:hover .admin-menu-dropdown,.admin-menu-group:focus-within .admin-menu-dropdown{display:block}.admin-menu-dropdown a{display:block!important;color:#111827!important;padding:10px 12px!important;border-radius:10px!important;text-transform:none!important;letter-spacing:0!important}.admin-menu-dropdown a:hover{background:#f8fafc!important;color:#111827!important}.stats-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px;margin:18px 0}.stat-card{background:#fff;border:1px solid #e5e7eb;border-radius:18px;padding:16px;box-shadow:0 10px 25px rgba(15,23,42,.05)}.stat-card span{display:block;color:#64748b;font-size:12px;text-transform:uppercase;letter-spacing:.05em}.stat-card b{display:block;font-size:22px;margin-top:6px}.stat-card small{display:block;color:#64748b;margin-top:4px}.cargo-fields{display:none;background:#f8fafc;border:1px solid #e5e7eb;border-radius:14px;padding:12px;margin:8px 0}.g-recaptcha{margin:14px 0}.admin-security-note{font-size:12px;color:#64748b}.trade-header .gt-svg{fill:currentColor;width:19px;height:19px}@media(max-width:900px){.stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.admin-menu-group{display:block}.admin-menu-trigger{width:100%;text-align:left;padding:12px 18px}.admin-menu-dropdown{position:static;box-shadow:none;border:0;border-radius:0;background:rgba(255,255,255,.06);padding:0;display:none}.menu-open .admin-menu-group:hover .admin-menu-dropdown,.menu-open .admin-menu-group:focus-within .admin-menu-dropdown{display:block}.admin-menu-dropdown a{color:var(--gt-header-text,#fff)!important;background:transparent!important;padding-left:30px!important}.lang-menu{right:-25px!important;top:39px!important}}


/* v113: daha stabil admin ayarlar menüsü ve dil seçici */
.admin-menu-group{position:relative!important;display:inline-flex!important;align-items:center!important;z-index:2000!important;}
.admin-menu-trigger{appearance:none;border:0;background:transparent;color:var(--gt-header-text,#fff)!important;font-weight:900;letter-spacing:.035em;text-transform:uppercase;padding:18px 16px!important;cursor:pointer;line-height:1;}
.admin-menu-dropdown{display:none!important;position:absolute!important;top:calc(100% + 0px)!important;right:0!important;min-width:238px!important;background:#fff!important;border:1px solid #e5e7eb!important;border-radius:18px!important;padding:10px!important;box-shadow:0 24px 60px rgba(2,6,23,.22)!important;z-index:5000!important;}
.admin-menu-dropdown:before{content:"";position:absolute;left:0;right:0;top:-12px;height:12px;}
.admin-menu-group:hover .admin-menu-dropdown,.admin-menu-group:focus-within .admin-menu-dropdown,.admin-menu-group.is-open .admin-menu-dropdown{display:block!important;}
.admin-menu-dropdown a{display:flex!important;align-items:center!important;color:#111827!important;background:#fff!important;border-radius:12px!important;padding:11px 12px!important;text-transform:none!important;letter-spacing:0!important;font-weight:750!important;text-decoration:none!important;border:0!important;}
.admin-menu-dropdown a:hover{background:#f1f5f9!important;color:#0f172a!important;}
.lang-switch{position:relative!important;padding:0 0 16px 0!important;margin-bottom:-16px!important;z-index:2100!important;}
.lang-menu{display:none!important;position:absolute!important;top:44px!important;right:0!important;min-width:205px!important;background:#fff!important;color:#111827!important;border:1px solid #e5e7eb!important;border-radius:16px!important;padding:8px!important;box-shadow:0 24px 60px rgba(2,6,23,.20)!important;z-index:5100!important;}
.lang-menu:before{content:"";position:absolute;left:0;right:0;top:-16px;height:16px;}
.lang-switch:hover .lang-menu,.lang-switch:focus-within .lang-menu,.lang-switch.is-open .lang-menu{display:block!important;}
.lang-menu a{display:flex!important;gap:9px!important;align-items:center!important;padding:10px 11px!important;border-radius:12px!important;color:#111827!important;text-decoration:none!important;font-size:13px!important;font-weight:700!important;}
.lang-menu a:hover{background:#f8fafc!important;}
.admin-report-hero{display:grid;grid-template-columns:2fr 1fr;gap:18px;margin:18px 0;}
.admin-report-panel{background:linear-gradient(135deg,#0f172a,#1e293b);color:#fff;border-radius:24px;padding:22px;box-shadow:0 22px 55px rgba(15,23,42,.18)}
.admin-report-panel h2{margin:0 0 8px;font-size:24px}.admin-report-panel p{margin:0;color:#cbd5e1}.admin-kpi-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:18px}.admin-kpi{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:14px}.admin-kpi span{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.06em;color:#cbd5e1}.admin-kpi b{display:block;font-size:22px;margin-top:5px;color:#fff}.report-card{background:#fff;border:1px solid #e5e7eb;border-radius:22px;padding:18px;box-shadow:0 12px 35px rgba(15,23,42,.06)}.report-card h3{margin-top:0}.report-table-small td,.report-table-small th{font-size:13px}.balance-positive{color:#dc2626;font-weight:900}.balance-zero{color:#16a34a;font-weight:900}.mini-progress{height:8px;background:#e5e7eb;border-radius:99px;overflow:hidden}.mini-progress span{display:block;height:100%;background:var(--gt-accent,#f97316);border-radius:99px}.order-create-table input[type=number]{width:90px}.order-create-table .muted{font-size:12px}
@media(max-width:900px){.admin-report-hero{grid-template-columns:1fr}.admin-kpi-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.admin-menu-group{display:block!important;width:100%}.admin-menu-trigger{width:100%;text-align:left;padding:12px 18px!important}.admin-menu-dropdown{position:static!important;box-shadow:none!important;border:0!important;border-radius:0!important;background:rgba(255,255,255,.06)!important;padding:0!important}.admin-menu-group.is-open .admin-menu-dropdown{display:block!important}.admin-menu-dropdown a{color:var(--gt-header-text,#fff)!important;background:transparent!important;padding-left:30px!important}.lang-menu{right:-18px!important;top:40px!important}}

/* v116 XML import progress */
.xml-progress-box{border:1px solid rgba(15,23,42,.08);box-shadow:0 16px 40px rgba(15,23,42,.08)}
.xml-progress-meta{display:flex;justify-content:space-between;gap:16px;align-items:center;margin-bottom:10px}
.xml-progress-meta strong{font-size:15px;color:#111827}
.xml-progress-meta span{font-size:13px;font-weight:800;color:#111827}
.xml-progress-bar{height:12px;border-radius:999px;background:#eef2f7;overflow:hidden;position:relative}
.xml-progress-bar span{display:block;height:100%;width:0%;background:linear-gradient(90deg,#111827,#f97316);border-radius:999px;transition:width .25s ease}
.xml-progress-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:14px}
.xml-progress-stats span{background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;padding:10px;font-size:12px;color:#64748b}
.xml-progress-stats b{display:block;color:#111827;font-size:18px;margin-top:4px}
.error-soft{border-color:#fecaca!important;background:#fff7f7!important}
@media(max-width:700px){.xml-progress-stats{grid-template-columns:repeat(2,minmax(0,1fr))}}
/* v123 order import progress */
.progress-shell{height:18px;border-radius:999px;background:#eef2f7;overflow:hidden;margin:16px 0;border:1px solid #dbe3ef}
.progress-bar{height:100%;min-width:0;background:linear-gradient(90deg,#111827,#f97316);color:#fff;font-size:12px;font-weight:800;text-align:center;line-height:18px;border-radius:999px;transition:width .25s ease}
.import-stats{display:flex;flex-wrap:wrap;gap:10px;margin:12px 0}
.import-stats span{background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;padding:9px 12px;color:#475569}

/* v129 manual payment form polish */
.manual-payment-form{display:grid;grid-template-columns:minmax(260px,2fr) minmax(220px,1fr) minmax(170px,.8fr) minmax(240px,1.2fr) 140px;gap:14px;align-items:start;margin-top:18px}
.manual-payment-form .form-field label{display:block;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;color:#526071;margin-bottom:7px}
.manual-payment-form select,.manual-payment-form input{width:100%;min-height:48px;border:1px solid #d5dbe6;border-radius:14px;padding:0 14px;background:#fff;color:#0b1220;font-size:14px;box-sizing:border-box}
.manual-payment-form .field-amount input{font-size:18px;font-weight:800;color:#0b1220}
.money-input{display:flex;align-items:center;border:1px solid #d5dbe6;border-radius:14px;background:#fff;overflow:hidden;box-shadow:0 10px 28px rgba(15,23,42,.05)}
.money-input input{border:0!important;border-radius:0!important;box-shadow:none!important;min-height:50px}
.money-input span{padding:0 14px;font-weight:900;color:#f97316;border-left:1px solid #e5e7eb;white-space:nowrap}
.manual-payment-form small{display:block;margin-top:6px;color:#64748b;font-size:12px;line-height:1.35}
.manual-payment-form .field-submit .btn{width:100%;min-height:50px;border-radius:14px;margin-top:0}
@media(max-width:1100px){.manual-payment-form{grid-template-columns:1fr 1fr}.manual-payment-form .field-customer,.manual-payment-form .field-note{grid-column:1/-1}}
@media(max-width:680px){.manual-payment-form{grid-template-columns:1fr}.manual-payment-form .field-customer,.manual-payment-form .field-note{grid-column:auto}}
