/* Merkezi kurumsal görseller: oranı korur, geniş logoyu header dışına taşırmaz. */
.site-logo{
  display:flex;
  align-items:center;
  min-width:0;
  flex:0 1 190px;
}
.storefront .site-logo .logo-img{
  display:block;
  width:auto;
  height:auto;
  max-width:min(190px, 100%) !important;
  max-height:48px;
  object-fit:contain;
  object-position:left center;
}
.site-logo .logo-text-fallback{white-space:nowrap}

@media (max-width: 900px){
  .site-logo{flex-basis:150px}
  .storefront .site-logo .logo-img{max-width:150px !important;max-height:42px}
}
@media (max-width: 480px){
  .site-logo{flex-basis:116px}
  .storefront .site-logo .logo-img{max-width:116px !important;max-height:36px}
}
