.products-hero {
    background-color: transparent;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
}

.products-hero-left {
    width: 50%;
    height: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}

.products-hero-right {
    width: 50%;
    height: 100%;
    background-color: #3C4C6D;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 5%;
    padding-bottom: 50px;
}

.products-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
}

.products-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin-bottom: 0;
    font-size: 2.8rem;
    line-height: 1.1;
    text-align: left;
    letter-spacing: 1px;
}

.products-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: left;
}

.urun-kategori {
    position: absolute;
    left: 20px;
    bottom: 0px;
    background-color: #3C4C6D;
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-weight: 600;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.urun-kategori-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.urun-kategori img {
    width: 35px;
    height: 40px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.products-container {
    padding: 0;
    background-color: #f5f5f5;
}

.products-grid {
    padding: 2rem 0;
}

.product-row {
    margin-bottom: 1rem;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    background-color: white;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

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

.product-image-container {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 1.5rem;
    position: relative;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 0.8rem;
    text-align: center;
    background-color: #1e355e;
    color: white;
}

.product-name {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.product-icons {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 0.7rem 0;
    border-top: 1px solid #e0e0e0;
}

.product-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.35rem;
    border-radius: 50%;
    background-color: #25aa36;
    color: white;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.product-icon:hover {
    transform: scale(1.1);
}

.product-icon.blue {
    background-color: #1e355e;
}

.products-nav {
    display: flex;
    justify-content: center;
    padding: 1rem;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    overflow-x: auto;
    white-space: nowrap;
}

.products-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    margin: 0 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
}

.products-nav-item:hover {
    background-color: #f5f5f5;
}

.products-nav-item img {
    width: 28px;
    height: 28px;
    margin-right: 0.7rem;
}

.products-nav-item.active {
    color: #25aa36;
    font-weight: 600;
    background-color: #f5f5f5;
}

@media (max-width: 992px) {
    .products-hero {
        flex-direction: column;
        height: auto;
    }
    
    .products-hero-left, .products-hero-right {
        width: 100%;
    }
    
    .products-hero-left {
        height: 250px;
        position: relative;
        overflow: hidden;
    }
    
    .products-hero-right {
        padding: 2rem 1rem 3rem 1rem;
        align-items: flex-start;
        min-height: 180px;
    }
    
    .products-hero h1 {
        font-size: 2.2rem;
    }
    
    .products-hero p {
        font-size: 1rem;
    }
    
    .products-nav {
        padding: 0.5rem;
    }
    
    .products-nav-item {
        padding: 0.5rem 0.8rem;
        margin: 0 0.3rem;
        font-size: 0.8rem;
    }
    
    .products-nav-item img {
        width: 22px;
        height: 22px;
        margin-right: 0.4rem;
    }
}

@media (max-width: 576px) {
    .products-hero {
        margin-bottom: 20px;
    }
    
    .products-hero-left {
        height: 200px;
    }
    
    .products-hero-right {
        padding: 1.5rem 1rem 2rem 1rem;
    }
    
    .products-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .products-hero p {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .urun-kategori {
        left: 15px;
        bottom: 15px;
        padding: 6px 14px;
        font-size: 0.85rem;
        border-radius: 5px;
        z-index: 10;
        box-shadow: 0 3px 6px rgba(0,0,0,0.25);
    }
    
    .urun-kategori-text {
        line-height: 1.1;
        font-size: 0.85rem;
    }
    
    .urun-kategori img {
        width: 28px;
        height: 32px;
        margin-right: 8px;
    }
    
    .product-image-container {
        height: 160px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .products-hero-left {
        height: 180px;
    }
    
    .products-hero-right {
        padding: 1.25rem 1rem 1.75rem 1rem;
    }
    
    .products-hero h1 {
        font-size: 1.6rem;
    }
    
    .products-hero p {
        font-size: 0.85rem;
    }
    
    .urun-kategori {
        left: 10px;
        bottom: 10px;
        padding: 5px 12px;
    }
    
    .urun-kategori img {
        width: 24px;
        height: 28px;
        margin-right: 6px;
    }
    
    .urun-kategori-text {
        font-size: 0.75rem;
    }
}

.product-item .img-container {
    justify-content: flex-end !important;
    padding-right: 15px;
}

.product-item .img-container a {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.product-item img {
    transform: translateX(10px);
}

.product-item:hover img {
    transform: translateX(10px) scale(1.05);
}

.world-map-section {
    margin-top: -60px;
    padding-top: 20px;
}

.map-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    color: #3C4C6D;
} 