html {
    scroll-behavior: smooth;
}
/* Google Fonts'tan Inter yazı tipini çekiyoruz */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #f15a24;    /* Şahin Yapı Turuncusu */
    --secondary-color: #0c1a30;  /* Koyu Lacivert */
    --light-bg: #f8f9fa;         /* Açık Gri Arka Plan */
    --text-dark: #212529;        /* Koyu Yazı Rengi */
    --text-muted: #6c757d;       /* Silik/Gri Yazı Rengi */
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

/* Temel Sıfırlama (Reset) Kuralları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

/* GENEL KONTEYNER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* TOP BAR (Üst Siyah Şerit) */
.top-bar {
    background-color: #060e1a;
    color: #a0aec0;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    color: var(--primary-color);
    margin-right: 5px;
}

.top-bar-right a {
    color: #a0aec0;
    margin-left: 15px;
    transition: color 0.3s;
}

.top-bar-right a:hover {
    color: var(--white);
}

/* HEADER (Menü ve Logo Alanı) */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Düzenlemesi */
.logo a img {
    height: 60px;
    width: auto;
    display: block;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Menü Tasarımı */
.nav-menu ul {
    display: flex;
}

.nav-menu ul li {
    margin: 0 12px;
}

.nav-menu ul li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary-color);
}

.nav-menu ul li a i {
    font-size: 10px;
    margin-left: 3px;
}

/* Sağ Taraf Telefon ve WhatsApp Butonları */
.header-right-buttons {
    display: flex;
    align-items: center;
}

.phone-call {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: var(--secondary-color);
}

.phone-call i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 10px;
}

.phone-num {
    display: block;
    font-weight: 700;
    font-size: 16px;
}

.phone-text {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

/* WhatsApp Butonu */
.whatsapp-btn {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #d44d1c;
}

.whatsapp-btn i {
    font-size: 24px;
    margin-right: 10px;
}

.wa-title {
    display: block;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.wa-sub {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

/* HERO SECTION VE SLIDER STİLLERİ */
.hero-section {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-color: var(--secondary-color);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    z-index: 3;
    justify-content: flex-start;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-text {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 15px 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d44d1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 15px 30px;
    border: 2px solid var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #a0aec0;
    opacity: 0.8;
    z-index: 3;
}

.scroll-down i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* KATEGORİLER BÖLÜMÜ STİLLERİ */
.categories-section {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-box {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.cat-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.category-box h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.cat-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.cat-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.category-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(241, 90, 36, 0.1);
}

.category-box:hover .cat-icon {
    transform: scale(1.1);
}

.category-box:hover .cat-link {
    color: var(--primary-color);
}

.category-box:hover .cat-link i {
    transform: translateX(4px);
}

/* HAKKIMIZDA BÖLÜMÜ STİLLERİ */
.about-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-left {
    flex: 1;
    position: relative;
}

.image-holder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(12, 26, 48, 0.3);
    border-bottom: 4px solid var(--primary-color);
    z-index: 5;
}

.exp-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
}

.about-right {
    flex: 1.2;
}

.about-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-title {
    font-size: 26px;          
    font-weight: 700;          
    color: var(--secondary-color);
    line-height: 1.4;
    letter-spacing: 0.3px;     
    margin-bottom: 18px;
}

.about-title span {
    color: var(--primary-color);
}

.about-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feat-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 3px;
}

.feat-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.feat-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.btn-about-more {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 15px 30px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-about-more:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* FOOTER ALANI STİLLERİ */
.main-footer {
    background-color: #060e1a;
    color: #a0aec0;
    padding-top: 60px;
    font-size: 14px;
}

.footer-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-about-text {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #a0aec0;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 10px;
    color: var(--primary-color);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-map {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    background-color: #040a12;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    color: #718096;
}

/* MOBİL MENÜ TETİKLEYİCİ BUTON */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* --- YENİ EKLENEN İÇ SAYFA BANNER TASARIMI (DÜZELTİLMİŞ) --- */
.page-banner {
    position: relative;
    padding: 60px 0;
    color: var(--white);
    background-image: url('https://images.unsplash.com/photo-1504148455328-c376907d081c?q=80&w=1920');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 26, 48, 0.85);
    z-index: -1;
}

/* Sağa sola fırlamayı önleyen yepyeni temiz izole konteyner */
.page-banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.page-banner h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.page-banner p {
    font-size: 13px;
    color: #a0aec0;
}

.page-banner p a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ÜRÜN KARTLARI LİSTELEME ALANI */
.products-page-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.product-img {
    height: 200px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-product-quote {
    background-color: #25d366;
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-product-quote:hover {
    background-color: #1ebd58;
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #e2e8f0;
        padding: 20px;
        display: none;
    }
    .nav-menu.show {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
    }
    .nav-menu ul li {
        margin: 10px 0;
        width: 100%;
    }
    .nav-menu ul li a {
        display: block;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    .header-right-buttons .phone-call {
        display: none;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    .about-left, .about-right {
        width: 100%;
    }
    .experience-badge {
        bottom: 15px;
        left: 15px;
    }
    .footer-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .footer-col {
        width: 100%;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 45px 0;
    }
    .page-banner h1 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .categories-section {
        margin-top: 0;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .about-title {
        font-size: 22px;
    }
    .products-grid { grid-template-columns: 1fr; }
}
/* DİNAMİK FİLTRE BUTONLARI TASARIMI */
.products-page-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px; /* Menü ile ürünler arası boşluk */
}
.products-sidebar {
    width: 280px;
    flex-shrink: 0;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.sidebar-main-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Dikey Liste Butonları */
.filter-navigation {
    display: flex;
    flex-direction: column;
}

.filter-navigation .filter-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 14px 10px;
    font-size: 13px; /* Yazıları kibarlaştırdık */
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9; /* Araya ince kibar çizgiler */
    transition: all 0.2s ease;
    border-radius: 4px;
}

.filter-navigation .filter-btn i {
    font-size: 10px;
    color: #cbd5e1;
    transition: transform 0.2s ease;
}

/* Üzerine gelince veya aktifken turuncu olma efekti */
.filter-navigation .filter-btn:hover,
.filter-navigation .filter-btn.active {
    color: var(--primary-color);
    background-color: #fff8f5; /* Çok hafif turuncu arka plan */
    padding-left: 15px; /* Hafif sağa kayma hareketi */
}

.filter-navigation .filter-btn:hover i,
.filter-navigation .filter-btn.active i {
    color: var(--primary-color);
    transform: translateX(2px);
}

/* Sağ İçerik Alanı */
.products-main-content {
    flex-grow: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Sol tarafa alan açıldığı için sağda yan yana 3 ürün idealdir */
    gap: 20px;
}

/* Ürün kartı içi yazıları da biraz daha kibarlaştıralım */
.product-info h3 {
    font-size: 15px; /* Daha kibar başlık */
    font-weight: 700;
}

.product-info p {
    font-size: 12.5px; /* Daha estetik açıklama puntoları */
    line-height: 1.5;
}

/* MOBİLDE SOL MENÜYÜ ÜSTE ALMA AYARI */
@media (max-width: 992px) {
    .products-page-wrapper {
        flex-direction: column;
    }
    .products-sidebar {
        width: 100%;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* Ürün Kartı İçindeki Kategori Etiketi (Tag) */
.product-cat-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}
/* Ürün kartları gizlenirken veya açılırken yumuşak geçiş animasyonu */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* --- YENİ KATALOG SİDEBAR TASARIMI --- */
.products-page-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.products-sidebar {
    width: 260px;
    flex-shrink: 0;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}

.sidebar-main-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.filter-navigation {
    display: flex;
    flex-direction: column;
}

.filter-navigation .filter-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 10px 8px;
    font-size: 12px; /* Yazı fontu küçültüldü */
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f8fafc; /* İnce ve belirsiz çizgiler */
    transition: all 0.2s ease;
}

.filter-navigation .filter-btn i {
    font-size: 9px;
    color: #cbd5e1;
}

.filter-navigation .filter-btn:hover,
.filter-navigation .filter-btn.active {
    color: var(--primary-color);
    background-color: #fffaf8;
    padding-left: 12px;
}

.filter-navigation .filter-btn:hover i,
.filter-navigation .filter-btn.active i {
    color: var(--primary-color);
}

.products-main-content {
    flex-grow: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
/* Kart Yazı Boyutları İnceltildi */
.product-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-info p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
}
/* 🛠️ ŞAHİN YAPI ÜRÜN RESİMLERİNİN KESİLMESİNİ ENGELLEYEN KESİN ÇÖZÜM */
.product-card img, 
.product-image img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 200px !important; /* Senin tasarımdaki resim alanı yüksekliği neyse ona göre ayarlar */
    object-fit: contain !important; /* Resmi kırpmadan kutunun içine kibarca sığdırır */
    display: block !important;
    margin: 0 auto !important;
}
/* 🎯 ŞAHİN YAPI: YERELDEKİ RENK UYUMSUZLUĞUNU VE ŞERİTLERİ KÖKTEN SİLEN KOD */
.product-card img, 
.product-image img, 
div[style*="height"] img {
    background-color: transparent !important;
    mix-blend-mode: multiply !important;
    object-fit: contain !important;
}