
.custom-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    background: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.custom-table table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    margin-bottom: 0;
    flex: 1;
}
.custom-table tbody {
    width: 100%;
    display: table;
    height: 100%;
}
.custom-table .table-header {
    background-color: #8b0000;
    color: #ffffff !important;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 16px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.custom-table .table-header * {
    color: #ffffff !important;
}
.custom-table td {
    padding: 10px 20px;
    border-bottom: 1px solid #eef0f5;
    font-size: 14px;
}
.custom-table tr:last-child td {
    border-bottom: none;
}
.custom-table .feature-name {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    width: 40%;
    border-right: 2px solid #eef0f5;
}
.custom-table .feature-value {
    color: #505050;
    background-color: #fff;
}
.custom-table tr:hover {
    background-color: #f8f9ff;
}
.custom-table tr:hover .feature-name {
    background-color: #eef0f5;
}
.specs-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    width: 100%;
}
.specs-box {
    flex: 0 0 auto;
    min-width: 300px;
    display: flex;
}
.specs-box.col-6 {
    width: calc(50% - 10px);
}
.specs-box.col-12 {
    width: 100%;
}
.section-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef0f5;
}
.section-title h4 {
    color: #2b4eff;
    font-weight: 600;
    margin: 0;
}
.product-title {
    text-align: center;
    margin-bottom: 25px;
}
.product-title h3 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
}
.product-image {
    margin-bottom: 25px;
}
.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.product-description {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
}
.product-description h4 {
    color: #8b0000;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}
.gallery-navigation {
    position: absolute;
    width: calc(100% + 80px);
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    z-index: 999;
    pointer-events: none;
}
.nav-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    color: #8b0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.nav-arrow:hover {
    background: #8b0000;
    color: white;
}
.prev-arrow {
    left: 0;
}
.next-arrow {
    right: 0;
}
.portfolio-box {
    position: relative;
    padding: 0 40px;
    overflow: hidden;
}
.portfolio-slider-item {
    height: 300px;
}
.portfolio-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-container {
    overflow: hidden;
    width: 100%;
}
.swiper-wrapper {
    display: flex;
}
.swiper-slide {
    width: calc((100% - 40px) / 3) !important;
    margin-right: 20px;
}
@media (max-width: 767px) {
    .swiper-container.portfolio-slider-active {
        width: 100% !important;
    }
    
    .swiper-slide {
        width: 100% !important;
    }
    
    .portfolio-slider-item {
        height: 240px !important;
        width: 100% !important;
    }
    
    .sld-fixed-height {
        height: 240px !important;
    }
    
    /* Oklar daha belirgin */
    .nav-arrow {
        background-color: rgba(0, 0, 0, 0.5) !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 100 !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: white !important;
        font-size: 24px !important;
    }
    
    .prev-arrow {
        left: 10px !important;
    }
    
    .next-arrow {
        right: 10px !important;
    }
}

/* Swiper'ın varsayılan stillerini ezmek için */
@media (max-width: 767px) {
    .swiper-container-initialized .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}
/* Galeri thumbnail stilleri için mobil optimizasyonlar */
@media (max-width: 576px) {
    .portfolio-slider-item {
        height: 240px; /* Mobilde daha büyük görüntüler */
    }
    
    .sld-fixed-height {
        height: 240px;
    }
    
    .gallery-navigation {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 10;
        pointer-events: none; /* Sadece okları tıklanabilir yap */
    }
    
    .nav-arrow {
    pointer-events: auto; /* Okları tıklanabilir yap */
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
    
    /* Pagination noktalari daha belirgin */
    .portfolio-slider-pagination {
        margin-top: 15px;
    }
    
    .portfolio-slider-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
}