/* static/css/product-page.css */

/* --- ÜRÜN HERO BÖLÜMÜ --- */
.product-hero {
    padding-top: 2rem !important;
    padding-bottom: 4rem !important;
    background: linear-gradient(135deg, var(--dark-blue), #1a3a5a);
}

.product-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
}

.product-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.product-hero .hero-image {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-height: 500px;
    object-fit: cover;
}

/* --- TÜM ÜRÜNLERE DÖN BUTONU --- */
.back-to-products {
    padding-top: 100px; /* Navbar için boşluk */
    padding-bottom: 0;
    background-color: var(--light-bg);
}

/* --- ÜRÜN GALERİSİ --- */
.product-gallery {
    padding: 4rem 0;
    background-color: #ffffff;
}

.gallery-main-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.thumbnail {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-blue);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(56, 131, 235, 0.4);
}

/* --- TEKNİK ÖZELLİKLER VE DİĞER BÖLÜMLER --- */
.product-section {
    padding: 4rem 0;
}

.product-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.product-section.dark-section {
    background-color: var(--dark-blue);
}

.product-section.dark-section .section-title,
.product-section.dark-section .feature-title {
    color: white;
}

.feature-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    height: 100%;
}

.dark-section .feature-box {
    background-color: #1a3a5a;
    color: var(--text-light);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.dark-section .specs-table td {
    border-bottom-color: rgba(255,255,255,0.1);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 500;
    color: #555;
}
.dark-section .specs-table td:first-child {
    color: rgba(255,255,255,0.7);
}


.tech-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

.dark-section .tech-icon {
    color: #00d9ff;
}