/* Product Detail Page Styles - Based on Yigitoglu Structure */

.product-page {
    font-size: 16px;
}

.product-page p {
    text-align: left;
    margin-bottom: 0;
}

/* Main Hero Section */
section.banner.hero {
    margin: 2rem;
    border-radius: 1rem;
    display: flex;
    text-align: start;
}

section.banner.hero div {
    border-radius: inherit;
}

section.banner.hero .row {
    height: 100%;
}

/* Text Part */
.product-page .section-hero .text-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
}

.product-page .section-hero .text-part header {
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.product-page .section-hero .text-part header h1 {
    font-size: 40px;
    color: #003366;
    margin-bottom: 1rem;
}

.product-page .section-hero .text-part .product-details p span {
    color: #003366;
    font-weight: 600;
}

/* Right Part - Image Section */
.product-page .section-hero .right-part {
    border-radius: inherit;
}

.product-page .section-hero .right-part .img-part {
    height: 100%;
    border-radius: inherit;
}

    .product-page .section-hero .right-part .img-part figure {
        width: 100%;
        height: 100%;
        border-radius: inherit;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin: 0;
    }

.product-page .section-hero .right-part .img-part figure img {
    height: 100%;
    width: 100%;
    border-radius: inherit;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    object-fit: cover;
    object-position: center;
}

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .product-page .section-hero .text-part {
        padding: 5rem;
    }
}

/* Desktop Medium (992px - 1199px) */
@media (max-width: 1200px) {
    .product-page .section-hero .text-part {
        padding: 2rem;
        padding-right: 0;
        font-size: 16px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 768px) {
    section.banner.hero {
        margin: 0;
        border-radius: 0;
    }
    
    .product-page .section-hero .text-part {
        padding: 2rem 0;
        font-size: 16px;
    }
    
    .product-page .section-hero .text-part header {
        margin-bottom: 2rem;
    }
    
    .product-page .section-hero .text-part header h1 {
        font-size: 24px;
    }
    
    .product-page .section-hero .right-part .img-part {
        min-height: 300px;
    }
}

/* Mobile (below 576px) */
@media (max-width: 576px) {
    .product-page .section-hero .text-part {
        padding: 1rem;
    }
    
    .product-page .section-hero .text-part header h1 {
        font-size: 20px;
    }
    
    .product-page .section-hero .right-part .img-part {
        min-height: 250px;
    }
}

/* Applications Section */
.applications-section {
    padding: 3rem 0;
}

.application-card {
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
}

.application-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: white;
}

.application-card h4 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.product-details p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}