.product-image {
    max-height: 600px;
    object-fit: cover;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.benefits-list li {
    margin-bottom: 10px;
}
.price-tag {
    font-size: 2.5rem;
    color: #28a745;
}
.logo-text {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}
.logo-text .fs-1 {
    font-size: 2rem !important;
}
.logo-text .fs-6 {
    font-size: 0.9rem !important;
    margin-left: 10px !important;
}
.feature-box {
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 10px 0;
}
.guarantee-badge {
    width: 120px;
    height: 120px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px auto;
    font-weight: bold;
    padding: 10px;
}
.top-banner {
    background-color: #ff6000;
    color: white;
    padding: 8px 0;
    font-weight: 500;
}
.top-banner p {
    margin: 0;
}
.product-details-section {
    background: #f8f9fa;
    border-left: 5px solid #28a745;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.section-title {
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #28a745;
}
.info-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.info-title {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ingredient-item {
    background: #e9ecef;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}
.usage-steps {
    padding-left: 20px;
}
.step {
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}
.step-number {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.language-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    border-radius: 20px;
    padding: 5px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.lang-btn {
    border: none;
    background: none;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: 500;
}
.lang-btn.active {
    background: #ff6000;
    color: white;
    border-radius: 15px;
}
.en {
    display: none;
}
html[lang="en"] .tr {
    display: none;
}
html[lang="en"] .en {
    display: block;
}
.info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.symptom-list, .trigger-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.symptom-list li, .trigger-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

/* Mobil cihazlar için medya sorgusu */
@media (max-width: 768px) {
    .top-banner {
        position: relative;
    }

    .language-switch {
        position: relative;
        top: 10px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: fit-content;
    }
} 