/* Genel Ürün Detay Stilleri */
.product-detail-container {
    padding: 40px 0;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail-gallery img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 20px;
}

.product-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.teklif-buton {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.teklif-buton:hover {
    background-color: #1ebe5d;
}

.tab-container {
    margin-top: 40px;
    display: block;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.tab-button.active {
    background-color: #e63946;
    color: #fff;
}

.tab-content {
    display: none;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
}

.usage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.usage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 110px;
    height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.usage-card span {
    font-size: 24px;
}

.usage-card p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.usage-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.certificates {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.certificate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 150px;
    height: 180px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.certificate-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f0f0f5;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 95%;
    max-width: 1100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.4s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #121623;
    color: #fff;
}

.modal-header h2 {
    margin: 0;
    font-size: 22px;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.modal-body {
    padding: 20px;
    background-color: #f9f9f9;
}

.table-container {
    margin-top: 20px;
    overflow-x: auto;
}

.detailed-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.detailed-table th,
.detailed-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align:left;
}

.detailed-table th {
    background-color: #121623;
    color: #ffffff;
    font-weight: bold;
    width: 25%;
}

.detailed-table td {
    color: #333;
}

.detailed-table tbody tr:nth-child(even) td {
    background-color: #f3f3f3;
}

.detailed-table tbody tr:nth-child(odd) td {
    background-color: #ffffff;
}

.detailed-table tbody tr:hover td {
    background-color: #e6f7ff;
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
}
