.urun-slider-container {
    padding: 20px 0;
}

.urun-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.urun-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.urun-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.urun-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.urun-card:hover .urun-image img {
    transform: scale(1.05);
}

.urun-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.urun-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
}

.urun-price {
    font-size: 18px;
    font-weight: 700;
    /*color: #e94444;*/
    margin-bottom: 15px;
}

.urun-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.urun-button:hover {
    background-color: #45a049;
    color: white;
}

/* Swiper Özelleştirmeleri */
.swiper-button-next,
.swiper-button-prev {
    color: #4CAF50;
}

.swiper-pagination-bullet-active {
    background-color: #4CAF50;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .urun-title {
        font-size: 14px;
    }
    
    .urun-price {
        font-size: 16px;
    }
    
    .urun-button {
        padding: 6px 15px;
        font-size: 14px;
    }
} 