/* Ürün grid yapısı stilleri */
.product-item {
    margin-bottom: 30px;
}

.th-product {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.th-product:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: -10px;
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 200px; /* Sabit yükseklik */
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi oranlı şekilde kapla */
}

.product-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
    flex-grow: 1;
}

.product-code {
    color: #777;
    font-size: 14px;
    margin-bottom: 0;
}

/* Arama kutusu stilleri */
.search-form {
    position: relative;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 10px 45px 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    color: #333 !important; /* Yazı rengini koyu yap */
}

.search-form input[type="text"]::placeholder {
    color: #999; /* Placeholder rengini ayarla */
    opacity: 1;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #555;
}

/* Pagination stilleri */
.th-pagination {
    margin-top: 30px;
}

.th-pagination ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.th-pagination li {
    margin: 0 5px;
}

.th-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.th-pagination a:hover,
.th-pagination a.active {
    background-color: var(--theme-color);
    color: #fff;
    border-color: var(--title-color);
}

/* Kategori listesi stilleri */
.product-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-categories li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.product-categories li:last-child {
    border-bottom: none;
}

.product-categories a {
    color: #333;
    display: block;
    transition: all 0.3s ease;
}

.product-categories a:hover,
.product-categories a.active {
    color: var(--theme-color);
}

/* Sidebar widget stilleri */
.widget_sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.widget_sidebar_title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
} 

/* Ürün Galerisi */
.product-gallery {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-detail-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.product-single-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.product-single-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-thumb {
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
    padding: 0.5rem;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumb:hover {
    border-color: var(--theme-color);
}

.swiper-slide-thumb-active .product-thumb {
    border-color: var(--theme-color);
}

/* Slider Okları */
.product-gallery .swiper-button-next,
.product-gallery .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-gallery .swiper-button-next:after,
.product-gallery .swiper-button-prev:after {
    display: none;
}

.product-gallery .swiper-button-next i,
.product-gallery .swiper-button-prev i {
    font-size: 1rem;
    color: #333;
}

.product-gallery .swiper-pagination {
    bottom: 10px;
}

.product-gallery .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.5;
}

.product-gallery .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--theme-color);
}

/* Ürün Detayları */
.product-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-meta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.product-meta-item {
    margin-bottom: 1rem;
}

.product-meta-item:last-child {
    margin-bottom: 0;
}

.meta-title {
    font-weight: 600;
    color: #666;
    margin-right: 0.5rem;
}

.oem-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.oem-tag {
    background: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid #ddd;
}

/* Ürün Açıklaması */
.description-content {
    line-height: 1.8;
}

/* İlgili Ürünler */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card .product-img {
    aspect-ratio: 1;
    background: #fff;
    margin-left: auto;
  margin-right: auto;
}

.product-card .product-content {
    padding: 1.5rem;
}

.product-card .product-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.product-card .product-code {
    color: #666;
    font-size: 0.875rem;
}

/* Modal */
.inquiry-form .form-group {
    margin-bottom: 1rem;
}

.inquiry-form .form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.inquiry-form textarea.form-control {
    resize: vertical;
}
.space-top100 {
    margin-top: 100px;
}
.space-top50 {
    margin-top: 50px;
}
.product-desc-title{
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}
/* Responsive */
@media (max-width: 991px) {
    .product-img,
    .product-single-img {
        aspect-ratio: 4/3;
        padding: 1rem;
    }
}

/* Dil Seçici Stilleri */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.3; /* Aktif olmayan diller için %30 opaklık */
}

.language-switcher a:hover {
    transform: translateY(-3px);
    opacity: 0.8; /* Hover durumunda %80 opaklık */
}

.language-switcher a.active {
    opacity: 1; /* Aktif dil için %100 opaklık */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.language-switcher img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.about-text .box-title{
    color: #fff !important;
}
.hero3-swiper-custom .swiper-pagination{top:35px !important;}
.swiper-pagination-bullet{background:#b5b5b5 !important;}
.swiper-pagination-bullet-active{background:#1f63a0 !important;}
.swiper-button-next{margin-right:10px !important;}
.swiper-button-prev{margin-left:10px !important;}