/* YZ İzole Ürün Kartı Yapısı */
.yz-product-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.yz-product-wrapper .product-layout {
    display: flex;
    margin-bottom: 30px;
}

.yz-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s;
}

.yz-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #f38210; /* Hover durumunda turuncu çerçeve */
}

/* Görsel Alanı */
.yz-card-img {
    height: 240px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f5f5f5;
    background: #fff;
}

.yz-card-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.yz-card-img img {
    max-height: 100%;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* İçerik Alanı */
.yz-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.yz-card-title {
    margin: 0 0 10px 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    min-height: 42px; /* 2 satır başlık için rezerve alan */
}

.yz-card-title a {
    color: #2b2b2b;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yz-card-title a:hover {
    color: #f38210;
}

.yz-card-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yz-card-rating {
    margin-bottom: 15px;
}

.yz-card-rating .fa-stack { font-size: 9px; color: #ffc107; }

/* Fiyatlandırma */
.yz-card-price {
    margin-top: auto; /* Kendisinden önceki içerik ne kadar kısa olursa olsun fiyatı en alta iter */
}

.yz-card-price .price-main, 
.yz-card-price .price-new {
    font-size: 18px;
    font-weight: 700;
    color: #2b2b2b;
}

.yz-card-price .price-new { color: #f38210; }
.yz-card-price .price-old {
    font-size: 14px;
    color: #a0a0a0;
    text-decoration: line-through;
    margin-left: 6px;
}

/* Aksiyonlar (Butonlar) */
.yz-card-actions {
    display: flex;
    padding: 15px;
    gap: 8px;
    background: #fdfdfd;
    border-top: 1px solid #eaeaea;
}

.yz-btn-cart {
    flex: 1;
    background: #f38210;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.yz-btn-cart:hover {
    background: #d9720b; /* Daha koyu turuncu */
    color: #fff;
}

.yz-btn-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #666;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yz-btn-icon:hover {
    background: #f5f5f5;
    color: #f38210;
    border-color: #f38210;
}

/* List View (Liste Görünümü) Adaptasyonu */
.product-list .yz-card {
    flex-direction: row;
    align-items: stretch;
}

.product-list .yz-card-img {
    width: 280px;
    height: auto;
    border-bottom: none;
    border-right: 1px solid #f5f5f5;
}

.product-list .yz-card-body {
    text-align: left;
    padding: 25px;
}

.product-list .yz-card-actions {
    flex-direction: column;
    width: 180px;
    border-top: none;
    border-left: 1px solid #eaeaea;
    justify-content: center;
    background: #fff;
}

.product-list .yz-btn-cart {
    flex: none;
    height: 45px;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 991px) {
    #header.header-fixed {
        position: static !important;
        top: auto !important;
        z-index: 1 !important;
        animation: none !important;
        box-shadow: none !important;
    }
    
    /* Eğer temanın JavaScript'i body'ye padding ekliyorsa onu da sıfırla */
    body {
        padding-top: 0 !important;
    }
}
#search.yz-search {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 6px;
    border: 2px solid #f38210; /* Turuncu şık çerçeve */
    overflow: hidden;
    margin: 10px 0;
    width: 100%;
}

#search.yz-search input {
    flex-grow: 1;
    border: none !important;
    box-shadow: none !important;
    padding: 0 15px !important;
    height: 45px;
    font-size: 14px;
    color: #333333;
    background: transparent !important;
    outline: none !important;
}

#search.yz-search button {
    background: #f38210 !important;
    border: none !important;
    color: #ffffff !important;
    height: 45px;
    width: 55px; /* Buton genişliği */
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

#search.yz-search button:hover {
    background: #d9720b !important;
}

/* Mobilde arama kutusu çok bitişik durmasın diye ufak bir boşluk */
@media (max-width: 991px) {
    #search.yz-search {
        margin: 15px 0;
    }
}

/* ==========================================================================
   HAKKIMIZDA BÖLÜMÜ MODERN CSS
   ========================================================================== */
.yz-about-section {
    /* padding: 60px 0; */
    background-color: #ffffff;
    overflow: hidden;
}

.yz-about-section .about-image-wrapper {
    text-align: center;
}

.yz-about-section .about-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.yz-about-section .about-text-block {
    padding: 20px 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    height: 100%;
}

.yz-about-section .section-header .title {
    font-size: 26px;
    font-weight: 700;
    color: #222529;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
}

.yz-about-section .section-header .title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #f38210; /* Markanın turuncu rengi */
}

.yz-about-section .description p {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.yz-about-section .description p:last-child {
    margin-bottom: 0;
}

.yz-about-section .category_list {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
}

.yz-about-section .list-item {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0;
}

.yz-about-section .list-item li {
    width: 50%;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.yz-about-section .list-item li i {
    color: #f38210;
    margin-right: 10px;
    font-size: 16px;
}

/* Mobil Cihazlar İçin Adaptasyon */
@media (max-width: 991px) {
    .yz-about-section .about-image-wrapper {
        margin-bottom: 30px;
    }
    .yz-about-section .about-text-block {
        padding: 20px 15px;
    }
}

@media (max-width: 575px) {
    .yz-about-section .list-item li {
        width: 100%; /* Telefondan bakılırsa liste alt alta gelsin */
    }
}
/* ==========================================================================
   ANASAYFA GALERİ VE HAKKIMIZDA (YANMAZCI) BÖLÜMÜ
   ========================================================================== */
.yz-gallery-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.yz-gallery-section .gallery-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
    display: block;
}

.yz-gallery-section .gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.yz-gallery-section .yz-mission-box {
    background-color: #fcfcfc;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border-top: 4px solid #f38210; /* Turuncu Vurgu */
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.yz-gallery-section .yz-mission-box .title {
    font-size: 24px;
    font-weight: 800;
    color: #222529;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 20px;
}

.yz-gallery-section .yz-mission-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

/* Mobilde alt alta binen resimler için boşluk */
@media (max-width: 991px) {
    .yz-gallery-section .gallery-col {
        margin-bottom: 30px;
    }
    .yz-gallery-section .yz-mission-box {
        padding: 25px 15px;
    }
}
/* ==========================================================================
   SEPET (CART) DROPDOWN RESPONSIVE TASARIMI
   ========================================================================== */

/* Ortak Sepet Ayarı (Sağa yaslı açılması için) */
.yz-cart-dropdown {
    left: auto !important;
    right: 0 !important;
    padding: 10px;
}

/* 1. MASAÜSTÜ SEPET GÖRÜNÜMÜ (#cart) */
@media (min-width: 992px) {
    #cart .yz-cart-dropdown {
        min-width: 480px !important; /* Masaüstünde daralmayı önleyen geniş alan */
    }
    
    /* Masaüstünde ürün resminin sıkışmasını engeller */
    #cart .yz-cart-dropdown table td:first-child {
        width: 80px; 
    }
    
    #cart .yz-cart-dropdown table td img {
        max-width: 100%;
        height: auto;
    }
}

/* 2. MOBİL SEPET GÖRÜNÜMÜ (#cart2 / .cart2) */
@media (max-width: 991px) {
    #cart2 .yz-cart-dropdown,
    .cart2 .yz-cart-dropdown {
        min-width: 300px !important; /* Telefondan taşmaması için daraltılmış alan */
        width: 100%;
        max-width: 100vw;
    }
    
    /* Mobilde uzun ürün isimlerinin taşıp yapıyı bozmasını engeller */
    #cart2 .yz-cart-dropdown table td.text-left,
    .cart2 .yz-cart-dropdown table td.text-left {
        white-space: normal !important;
        word-break: break-word;
    }

    .breadcrumb{
        display: none!important;
    }
}