/* SEO Uyumlu Linkler için CSS Stilleri */

/* SEO Link Stilleri */
.seo-link {
    color: #001a57;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.seo-link:hover {
    color: #0046c0;
}

.seo-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #001a57;
    transition: width 0.3s ease;
}

.seo-link:hover:after {
    width: 100%;
}

/* Ürün Link Stilleri */
.product-seo-link {
    display: inline-block;
    margin-bottom: 10px;
    padding: 0 5px;
}

/* Blog Link Stilleri */
.blog-seo-link {
    display: inline-block;
    margin-bottom: 10px;
    padding: 0 5px;
}

/* Aktif Link Stili */
.seo-link.active {
    font-weight: 600;
    color: #0046c0;
}

.seo-link.active:after {
    width: 100%;
}

/* Breadcrumb Link Stilleri */
.breadcrumb .seo-link {
    color: white;
}

.breadcrumb .seo-link:hover {
    color: #ffd700;
}

.breadcrumb .seo-link:after {
    background: #ffd700;
}

/* SEO URL hata sayfası stilleri */
.seo-error-container {
    text-align: center;
    padding: 50px 0;
}

.seo-error-heading {
    color: #001a57;
    font-size: 2rem;
    margin-bottom: 20px;
}

.seo-error-message {
    color: #666;
    margin-bottom: 30px;
}

.seo-error-link {
    display: inline-block;
    background: #001a57;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.seo-error-link:hover {
    background: #0046c0;
    transform: translateY(-3px);
}

/* SEO Badge stilleri */
.seo-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    background: #001a57;
    border-radius: 20px;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SEO Schema markup için görünmez stil */
.seo-schema {
    display: none;
}
