﻿  
.flexslider .slides img {
    height: 500px;
    object-fit: contain; /* Resmin bozulmaması için */
}

#carousel img {
    width: 120px;
    height: 120px;
    border: 1px solid #eee;
}

/* --- Ürün Başlığı --- */
.product-detail .product-name {
    margin-bottom: 12px;
    border-bottom: 2px solid #333; /* Daha diri bir çizgi */
    padding-bottom: 8px;
    font-weight: bold;
    color: #000;
}

/* --- Yıldız Derecelendirme --- */
.product-ratings li .rating {
    color: #ccc; /* Sönük gri */
    font-size: 14px;
}

.product-ratings li .rating-selected {
    color: #f39c12; /* Daha tok bir altın/turuncu */
    font-size: 14px;
}

/* --- Kısa Açıklama --- */
.product-detail .product-short-desc {
    margin: 25px 0;
    line-height: 1.6;
    color: #333;
}

/* --- Fiyat Alanı (Daha diri hale getirildi) --- */
.product-price {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    text-align: left;
    border: 1px solid #e0e0e0; /* Kesikli yerine düz, net çizgi */
    overflow: hidden;
}

    .product-price .product-price-regular {
        text-decoration: line-through;
        color: #777;
        font-size: 16px;
        display: block;
        margin-bottom: 5px;
    }

    .product-price .product-price-saving {
        color: #b12704;
        font-weight: bold;
        font-size: 13px;
    }

    .product-price h3 {
        font-size: 32px;
        font-weight: bold;
        color: #d91e18; /* Daha profesyonel bir kırmızı */
        margin: 0;
        float: left;
        padding-right: 20px;
    }

/* --- Varyasyonlar (Renk/Beden vb.) --- */
.product-attrs label {
    min-width: 60px;
    height: 35px;
    line-height: 35px; /* Dikey hizalama için */
    float: left; /* Sağdan sola değil, soldan sağa akış daha doğal */
    display: block;
    color: #333;
    font-size: 14px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    font-weight: bold;
    margin-right: 10px;
}

    .product-attrs label:hover {
        cursor: pointer;
        border: 1px solid #000;
        background: #f0f0f0;
    }

.product-attrs input:checked ~ label {
    color: #fff;
    background: #000;
    border-color: #000;
}

/* --- Adet ve Sepet --- */
.product-detail .add-to-cart {
    margin-top: 20px;
    display: flex; /* Daha düzgün hizalama */
    align-items: center;
}

.product-detail .product-quantity {
    margin: 0.5rem;
    border: 1px solid #ccc;
    display: inline-flex;
}

.product-detail .quantity-button {
    color: #000;
    width: 40px;
    height: 45px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    background: #eee;
    font-weight: bold;
}

.product-detail .quantity-field {
    width: 50px;
    height: 45px;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background: #fff;
}
.product-detail .btn-add-cart {
    background: #27ae60;
    font-size: 15px;
    font-weight: 600; 
    padding: 12px 35px;
    border: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px; 
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: inline-block;
    outline: none;
}

    .product-detail .btn-add-cart:hover {
        background: #219150;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        transform: translateY(-1px);
    }

    .product-detail .btn-add-cart:disabled {
        background: #bdc3c7;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
.product-detail .add-to-lists {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 30px;
    padding: 15px 0;
}

    .product-detail .add-to-lists li {
        padding: 0 15px;
        border-left: 1px solid #eee;
    }
     
     
.rating-summary .rating-average {
    font-size: 42px;
    color: #000;
    font-weight: bold;
}

.rating-item .progress-bar {
    background-color: #000; 
}
    