.product_item {
    margin-bottom: 30px;
}

.product_item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product_content {
    padding: 15px 0;
}

.product_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product_title a {
    color: #333;
    text-decoration: none;
}

.product_title a:hover {
    color: #0174C4;
}

.product_price {
    color: #0174C4;
    font-weight: 600;
    font-size: 18px;
}

.category_item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category_item:hover {
    background: #e9ecef;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category_item a {
    text-decoration: none;
    color: #333;
}

.category_item i {
    font-size: 48px;
    color: #0174C4;
    margin-bottom: 15px;
}

.category_item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.hero_section {
    background: linear-gradient(135deg, #0174C4 0%, #0a6cb0 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 60px;
}

.hero_content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero_content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn_hero {
    background: white;
    color: #0174C4;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn_hero:hover {
    background: #f8f9fa;
    color: #0174C4;
    transform: scale(1.05);
}

/* ============================================
   MOBİL RESPONSIVE EKLEMELER
   ============================================ */

@media only screen and (max-width: 991px) {
    .product_item {
        margin-bottom: 25px;
    }
    
    .hero_section {
        padding: 60px 0;
    }
    
    .hero_content h1 {
        font-size: 36px;
    }
    
    .hero_content p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .product_item {
        margin-bottom: 20px;
    }
    
    .product_item img {
        height: 150px;
    }
    
    .product_title {
        font-size: 14px;
    }
    
    .product_price {
        font-size: 16px;
    }
    
    .category_item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .category_item i {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .category_item h4 {
        font-size: 16px;
    }
    
    .hero_section {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .hero_content h1 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero_content p {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .btn_hero {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .product_item img {
        height: 120px;
    }
    
    .product_title {
        font-size: 13px;
    }
    
    .product_price {
        font-size: 15px;
    }
    
    .category_item {
        padding: 15px;
    }
    
    .category_item i {
        font-size: 32px;
    }
    
    .category_item h4 {
        font-size: 14px;
    }
    
    .hero_content h1 {
        font-size: 24px;
    }
    
    .hero_content p {
        font-size: 14px;
    }
    
    .btn_hero {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 375px) {
    .product_item img {
        height: 110px;
    }
    
    .product_title {
        font-size: 12px;
    }
    
    .hero_content h1 {
        font-size: 22px;
    }
    
    .category_item i {
        font-size: 28px;
    }
}
