* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #f8f9fa;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

h1 {
    margin-bottom: 15px;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
}

nav ul li a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #2980b9;
}

section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hero, .supplement-hero {
    background-color: #e3f2fd;
    text-align: center;
    padding: 40px 20px;
}

.supplement-hero h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

h2 {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.supplements-list {
    background-color: #fff;
}

/* Mineral Supplement Cards */
.supplements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun düzeni */
    gap: 25px;
    margin-top: 30px;
}

.supplement-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 4px solid #4CAF50;
}

.supplement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.supplement-card h3 {
    margin-bottom: 10px;
}

.supplement-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.supplement-card a:hover {
    background-color: #2980b9;
}

.supplement-content {
    min-height: 500px;
}

.content-section {
    margin-bottom: 30px;
}

.content-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.content-section h3 i {
    margin-right: 10px;
    color: #3498db;
    width: 25px;
    text-align: center;
}

.faq-icon {
    margin-right: 10px;
    color: #3498db;
}

ul.faq-list {
    list-style-type: none;
    margin-left: 0;
}

ul.faq-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

ul.faq-list li:last-child {
    border-bottom: none;
}

ul:not(.faq-list):not(nav ul) {
    margin-left: 20px;
}

ul:not(.faq-list):not(nav ul) li {
    margin-bottom: 8px;
}

#product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 15px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 10px;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.stars {
    color: #ffa534;
    margin-right: 5px;
}

.count {
    color: #777;
    font-size: 14px;
}

.product-price {
    font-weight: bold;
    color: #e63946;
    font-size: 18px;
    margin-bottom: 15px;
}

.buy-now {
    background-color: #f0c14b;
    color: #111;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    border-top: 1px solid #e0e0e0;
}

.buy-now:hover {
    background-color: #ddb347;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-top: 30px;
    font-size: 14px;
}

@media (max-width: 768px) {
    #product-list, #supplements-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
    }
}

/* Sağlık Uyarı Kartı Stili */
.health-warning-card {
    background-color: #f8f9fa;
    border-left: 5px solid #ffc107;
    margin: 2rem 0;
    padding: 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.warning-container {
    display: flex;
    padding: 1.5rem;
}

.warning-icon {
    font-size: 2.5rem;
    color: #ffc107;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.warning-content {
    flex: 1;
}

.warning-content h3 {
    margin-top: 0;
    color: #495057;
    font-size: 1.25rem;
}

.warning-content p {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.warning-content p:last-child {
    margin-bottom: 0;
}

/* Footer Linkleri */
.footer-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Amazon Ürün Kartları Stili */
#amazon-products {
    margin: 40px 0;
}

#amazon-products h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.product-card a {
    text-decoration: none;
    color: #333;
    display: block;
}

.product-title {
    font-weight: bold;
    margin: 10px 0;
}

/* Disclaimer Card Styles */
.disclaimer-card {
    background-color: #fef9e7;
    border: 1px solid #f9e79f;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 25px auto;
    max-width: 1200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 1000px;
}

.disclaimer-icon {
    font-size: 24px;
    color: #f1c40f;
    margin-top: 3px;
}

.disclaimer-text h3 {
    margin: 0 0 8px 0;
    color: #b7950b;
    font-size: 1.2rem;
}

.disclaimer-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #7d6608;
}

/* Responsive adjustments for disclaimer */
@media (max-width: 768px) {
    .disclaimer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .disclaimer-icon {
        margin-bottom: 10px;
    }
}

/* Responsive düzen ayarlamaları */
@media (max-width: 992px) {
    .supplements-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet için 2 sütun */
    }
}

@media (max-width: 576px) {
    .supplements-grid {
        grid-template-columns: 1fr; /* Mobil için tek sütun */
    }
} 