/* ==========================================================================
   ÜRÜN TEKNİK ÖZELLİKLER TABLOSU ÖZELLEŞTİRMESİ
   ========================================================================== */

.teknik-tablo-wrapper table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.table thead th {
    background-color: rgb(35, 189, 35);
    color: white;
}

/* Tablo Başlık Hücreleri */
/* .teknip-tablo-wrapper table th,
.teknik-tablo-wrapper table tr:first-child td {
    background-color: #1a252f !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 12px 16px;
    border: 1px solid #1a252f;
} */

/* Standart Satır ve Hücreler */
.teknik-tablo-wrapper table td {
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    color: #495057;
    vertical-align: middle;
}

/* Satırların bir dolu bir boş (Zebra) renklendirilmesi (Okumayı kolaylaştırır) */
.teknik-tablo-wrapper table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Üzerine gelinen satırın hafifçe parlaması */
.teknik-tablo-wrapper table tr:hover td {
    background-color: rgba(13, 110, 253, 0.03);
    color: #212529;
}

/* Mobil Ekranlarda Tablonun Taşmasını Önleyen Esnek Kaydırma */
.teknik-tablo-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ////  */
.wc-tabs {
    background-color: #333;
    list-style: none;


}

.wc-tabs .active a {
    color: white;
}

.wc-tabs li {
    display: inline-block;
    margin-right: 25px;
    /* background-color: #0b5ed7; */
    padding: 10px;
    /* border: 1px solid #0b5ed7; */
}

.wc-tabs li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    color: rgb(172, 167, 167);
}


.accordion-body,
.woocommerce-Tabs-panel p {
    text-align: justify;
}


.content-area {
    margin: 15px;
    padding: 15px;

}

/*
*
*/



.product {
    background-color: #ffffff;
    border: 1px solid var(--outline-variant);
    border-radius: 0.125rem;
    transition: all 0.3s ease;
    position: relative;
    min-height: 400px;
    ;
}

.product:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.product .woocommerce-loop-product__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-content-wrapper {
    padding: 1.5rem;
}

.product .woocommerce-loop-product__title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
}

.product .price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.button.add_to_cart_button {
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: none;
    width: 100%;
    text-align: center;
    display: inline-block;
    transition: background-color 0.2s;
}

.button.add_to_cart_button:hover {
    background-color: var(--secondary);
    color: #ffffff;
}

/* Custom Badges */
.onsale {
    /* position: absolute;
    top: 1rem;
    left: 1rem; */
    background-color: var(--secondary);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}