/* PRODUCT PAGE EXCLUSIVE STYLES */
.product-header { background: linear-gradient(135deg, #004b87 0%, #002b4e 100%); color: white; padding: 60px 20px; text-align: center; margin-bottom: 40px; }
.product-header .cat-icon { background: rgba(255,255,255,0.1); color: white; margin: 0 auto 20px; border: 2px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.product-header h1 { margin: 0; font-size: 36px; }

.product-layout { display: flex; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 20px 80px; flex-wrap: wrap; width: 100%; box-sizing: border-box; }
.product-info { flex: 1; min-width: 300px; background: white; padding: 40px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); box-sizing: border-box; }
.product-info h2 { color: #111; margin-top: 0; border-bottom: 2px solid #eee; padding-bottom: 15px; }

.quote-form-container { flex: 1; min-width: 300px; background: white; padding: 40px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 5px solid #d32f2f; box-sizing: border-box; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-weight: bold; margin-bottom: 8px; color: #333; font-size: 14px; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #ccc; border-radius: 6px; font-size: 15px; box-sizing: border-box; font-family: inherit; transition: 0.3s; }
.form-control:focus { border-color: #004b87; outline: none; box-shadow: 0 0 0 3px rgba(0,75,135,0.1); }

.step-container { display: none; animation: fadeIn 0.3s; }
.step-container.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* FORM CHOICE BUTTONS */
.choice-btn { display: flex; align-items: center; justify-content: flex-start; gap: 15px; width: 100%; padding: 20px; margin-bottom: 15px; border: 2px solid #d32f2f; border-radius: 12px; background: white; font-weight: 800; cursor: pointer; transition: 0.3s; font-size: 15px; }
.choice-btn i { color: #d32f2f !important; font-size: 24px; width: 30px; text-align: center; }
.choice-btn:hover { background: #fef0f0; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(211,47,47,0.1); }
.btn-yeni span { color: #004b87; text-transform: uppercase; } 
.btn-mevcut span { color: #006400; text-transform: uppercase; } 

.whatsapp-btn, .email-btn { color: white; border: none; padding: 15px; border-radius: 8px; font-weight: bold; display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; text-decoration: none; transition: 0.3s; cursor: pointer; }
.whatsapp-btn { background: #25d366; } .whatsapp-btn:hover { background: #128c7e; }
.email-btn { background: #111; } .email-btn:hover { background: #333; }
.back-btn { background: #eee; color: #555; border: none; width: 100%; padding: 10px; border-radius: 8px; margin-top: 15px; cursor: pointer; font-weight: bold; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; font-size: 13px; color: #666; text-align: left; }

@media(max-width:768px) {
    .product-layout { flex-direction: column; }
    .whatsapp-btn, .email-btn { font-size: 14px; padding: 12px; }
}