/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SSL Güvenlik Göstergesi */
.ssl-security-bar {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 3px 6px;
    text-align: center;
    font-size: 8px;
    font-weight: 500;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin: 5px auto;
    max-width: fit-content;
}

.ssl-security-bar .container {
    display: flex;
    align-items: center;
    gap: 3px;
}

.ssl-icon {
    width: 12px;
    height: 12px;
    filter: none;
    animation: ssl-pulse 2s infinite;
    flex-shrink: 0;
}

.ssl-text {
    display: flex;
    align-items: center;
    gap: 1px;
    white-space: nowrap;
}

.ssl-text strong {
    font-weight: 600;
}

@keyframes ssl-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@media (max-width: 768px) {
    .ssl-security-bar {
        font-size: 7px;
        padding: 2px 4px;
        gap: 2px;
    }
    
    .ssl-icon {
        width: 10px;
        height: 10px;
    }
    
    .ssl-text {
        gap: 1px;
    }
}

/* Ürün Detay Sayfası Stilleri */
.product-detail {
    padding: 40px 0;
    background: #f8f9fa;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-images {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-image {
    text-align: center;
    margin-bottom: 20px;
}

.main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #3498db;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-category {
    margin-bottom: 20px;
}

.product-category a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 12px;
    background: #ecf0f1;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-category a:hover {
    background: #3498db;
    color: white;
}

.product-price {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}

.old-price {
    font-size: 1.2rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-short-desc {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.product-stock {
    margin-bottom: 25px;
}

.in-stock {
    color: #27ae60;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.out-of-stock {
    color: #e74c3c;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-actions {
    margin-bottom: 30px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 150px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.quantity-controls input {
    flex: 1;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.btn-large {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-meta {
    border-top: 1px solid #ecf0f1;
    padding-top: 20px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
}

.meta-label {
    font-weight: 600;
    color: #7f8c8d;
}

.meta-value {
    color: #2c3e50;
}

.product-tabs {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #ecf0f1;
}

.tab-button {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #7f8c8d;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.tab-button:hover {
    background: #f8f9fa;
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-description {
    line-height: 1.8;
    color: #2c3e50;
}

.product-description h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-description p {
    margin-bottom: 15px;
}

.product-description ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.product-description li {
    margin-bottom: 8px;
}

.related-products {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.related-products h2 {
    margin-bottom: 25px;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
}

.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-products .product-card {
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: left;
        border-bottom: 1px solid #ecf0f1;
    }
    
    .related-products .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    gap: 0.7rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-logo a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-logo a:hover::before {
    left: 100%;
}

.nav-logo a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

.nav-logo i {
    color: white;
    margin-right: 0.5rem;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.nav-item {
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}



.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    font-size: 0.8rem;
    display: block;
    line-height: 1.2;
}

.nav-link:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.nav-link.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}



.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 0.4rem;
    border: 1px solid #e9ecef;
}

.search-box input {
    border: none;
    background: none;
    padding: 0.4rem;
    outline: none;
    width: 180px;
}

.search-box button {
    background: #3498db;
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background: #2980b9;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.user-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    font-size: 0.85rem;
}

.user-link:hover,
.user-link:focus {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.user-link:hover,
.user-link.active {
    color: #3498db;
    background-color: #f8f9fa;
}

.user-link i {
    margin-right: 0.5rem;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    font-size: 0.85rem;
}

.cart-link:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cart-link:hover {
    color: #3498db;
    background-color: #f8f9fa;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3498db;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.subsection-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 3rem 0 2rem;
    color: #34495e;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
}

.featured-category {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.featured-category .category-icon,
.featured-category h3,
.featured-category p,
.featured-category .category-link {
    color: white;
}

.featured-category .category-link:hover {
    color: #f0f0f0;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffd700;
    color: #333;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.category-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.category-card p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.category-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #2980b9;
}

/* Products Section */
.featured-products {
    padding: 4rem 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
}

.featured-product {
    border: 2px solid #ff6b6b;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.featured-product:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.3);
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #ff6b6b;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-category {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

.old-price {
    font-size: 1rem;
    color: #7f8c8d;
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

/* Auth Section */
.auth-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #7f8c8d;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: #7f8c8d;
}

.input-group input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #3498db;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #3498db;
    border-color: #3498db;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.auth-footer a {
    color: #3498db;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-error {
    background: #fee;
    color: #c53030;
    border: 1px solid #fed7d7;
}

.alert-success {
    background: #f0fff4;
    color: #2f855a;
    border: 1px solid #c6f6d5;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #ff6b6b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #ff5252;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    opacity: 0.8;
}

/* KVKK Section */
.kvkk-section {
    background: #34495e;
    padding: 1.5rem 0;
    margin: 1rem 0;
    border-radius: 8px;
}

.kvkk-section h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.kvkk-section p {
    text-align: center;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

.kvkk-section a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.kvkk-section a:hover {
    color: #ff5252;
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #7f8c8d;
}

.close:hover {
    color: #333;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin-left: 0.5rem;
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #5a6fd8;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

/* Category Header Styles */
.category-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.category-info {
    max-width: 600px;
    margin: 0 auto;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.category-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.category-header p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.category-stats {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.category-stats span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #495057;
}

.no-products p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Firma Bilgileri Stilleri */
.company-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.company-info h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.info-item i {
    font-size: 1.5rem;
    color: #3498db;
    width: 30px;
    text-align: center;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-grid {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* About Image Section */
.about-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-photo {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.company-photo:hover {
    transform: translateY(-5px);
}

.company-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.company-img-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.placeholder-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.placeholder-content p {
    font-size: 1.1rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.placeholder-content small {
    font-size: 0.9rem;
    opacity: 0.7;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3498db;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: #2c3e50;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.position {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.description {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
}

.method-icon {
    font-size: 2rem;
    color: #3498db;
    min-width: 50px;
}

.method-info h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.method-info p {
    color: #7f8c8d;
    margin-bottom: 0.25rem;
}

.social-contact h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: #2980b9;
}

/* Contact Form */
.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.contact-form-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: #3498db;
    color: white;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 0.2rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    

}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        margin: 0;
        gap: 0.3rem;
    }

    .nav-item {
        margin: 0.3rem 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
    




    .nav-toggle {
        display: flex;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .nav-logo a {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .nav-logo i {
        font-size: 2rem;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-left: 0;
    }
    
    .user-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-link, .cart-link {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 1rem;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }

    .hero-container {
        text-align: center;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* About Page Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .company-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.company-img-placeholder {
    height: 250px;
}
    
    .placeholder-content i {
        font-size: 2.5rem;
    }
    
    .placeholder-content h3 {
        font-size: 1.5rem;
    }
    
    .placeholder-content p {
        font-size: 1rem;
    }
    
    .photo-overlay {
        padding: 20px 15px 15px;
    }
    
    .overlay-content h3 {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Page Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-link {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 600px) {
    .nav-list {
        gap: 0.15rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    /* On very small screens, reduce navigation padding further */
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    

}

/* Legal Pages Styles */
.terms-content,
.privacy-content,
.cookies-content {
    padding: 40px 0;
    background: #f8f9fa;
}

.terms-card,
.privacy-card,
.cookies-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.terms-section,
.privacy-section,
.cookies-section {
    margin-bottom: 40px;
}

.terms-section:last-child,
.privacy-section:last-child,
.cookies-section:last-child {
    margin-bottom: 0;
}

.terms-section h2,
.privacy-section h2,
.cookies-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.terms-section h3,
.privacy-section h3,
.cookies-section h3 {
    color: #34495e;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 25px 0 15px 0;
}

.terms-section h4,
.privacy-section h4,
.cookies-section h4 {
    color: #34495e;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 20px 0 10px 0;
}

.terms-section p,
.privacy-section p,
.cookies-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-section ul,
.privacy-section ul,
.cookies-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-section li,
.privacy-section li,
.cookies-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.terms-section ol,
.privacy-section ol,
.cookies-section ol {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-section ol li,
.privacy-section ol li,
.cookies-section ol li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.terms-section strong,
.privacy-section strong,
.cookies-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.terms-section a,
.privacy-section a,
.cookies-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover,
.privacy-section a:hover,
.cookies-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.cookies-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cookies-table th {
    background: #3498db;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ecf0f1;
    color: #555;
}

.cookies-table tr:hover {
    background: #f8f9fa;
}

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

.cookie-preferences {
    text-align: center;
    margin: 30px 0;
}

.cookie-preferences .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
}

.terms-footer,
.privacy-footer,
.cookies-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
    text-align: center;
}

.terms-footer p,
.privacy-footer p,
.cookies-footer p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .terms-card,
    .privacy-card,
    .cookies-card {
        padding: 25px;
        margin: 0 15px;
    }
    
    .terms-section h2,
    .privacy-section h2,
    .cookies-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3,
    .privacy-section h3,
    .cookies-section h3 {
        font-size: 1.2rem;
    }
    
    .cookies-table {
        font-size: 0.9rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .terms-card,
    .privacy-card,
    .cookies-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .terms-section h2,
    .privacy-section h2,
    .cookies-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3,
    .privacy-section h3,
    .cookies-section h3 {
        font-size: 1.1rem;
    }
    
    .cookies-table {
        font-size: 0.8rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
}

/* Mesafeli Satış Sözleşmesi Sayfası Stilleri */
.mesafeli-satis-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.mesafeli-satis-content .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.mesafeli-satis-content .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.contract-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.contract-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
    display: inline-block;
}

.contract-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.contract-section p strong {
    color: #2d3748;
    font-weight: 600;
}

.contract-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.contract-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contract-footer {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    border: 2px solid #e2e8f0;
    text-align: center;
}

.contract-footer p {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contract-footer p:last-child {
    margin-bottom: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .mesafeli-satis-content {
        padding: 1rem 0;
    }

    .mesafeli-satis-content .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contract-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contract-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contract-section p {
        font-size: 0.95rem;
    }

    .contract-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .contract-footer p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mesafeli-satis-content .page-title {
        font-size: 1.8rem;
    }

    .contract-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contract-section h2 {
        font-size: 1.3rem;
    }

    .contract-section p {
        font-size: 0.9rem;
    }

    .contract-section ul {
        padding-left: 1.5rem;
    }

    .contract-section li {
        font-size: 0.9rem;
    }

    .contract-footer {
        padding: 1rem;
    }

    .contract-footer p {
        font-size: 0.95rem;
    }
} 