/* Ürün Sayfası Özel CSS */
.product-details-container {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-shipping-info {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.product-shipping-info .item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
}

.product-shipping-info .item i {
    margin-right: 8px;
    color: #666;
    font-size: 16px;
}

.seller-info-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.seller-logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.seller-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

.seller-info {
    flex: 1;
}

.seller-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.seller-location, .seller-followers {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.btn-outline-gray {
    border: 1px solid #ddd;
    color: #555;
    padding: 5px 15px;
    font-size: 13px;
    transition: all 0.2s;
    background-color: #fff;
}

.btn-outline-gray:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

/* Fiyat Stili */
.lbl-price {
    font-size: 24px;
    font-weight: 700;
    color: #FF5722;
}

.discount-original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.discount-rate {
    display: inline-block;
    background-color: #FF5722;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 14px;
    margin-left: 10px;
}

/* Sepete Ekle Butonu */
.btn-product-cart {
    background-color: #FF5722;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-product-cart:hover {
    background-color: #E64A19;
    color: #fff;
}

.btn-contact-seller{
    float: left;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .product-shipping-info {
        flex-direction: column;
    }
    
    .product-shipping-info .item {
        margin-bottom: 10px;
    }
    
    .seller-info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .seller-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
} 