/**
 * Sağ sidebar scroll ile insin.
 * Sebep: Bootstrap .row varsayılan align-items: stretch → sağ sütun sol kadar uzar,
 * sticky (veya uzun sütun) yüzünden menü ekranda yapışık kalır.
 */
body .product-detail-section .container > .row,
body .blog-detail-section .container > .row,
body .blog-section .container > .row,
body .service-detail-section .container > .row {
    align-items: flex-start !important;
}

body .col-lg-4 aside.product-sidebar,
body .col-lg-4 aside.blog-sidebar,
body aside.product-sidebar,
body aside.blog-sidebar,
.col-lg-4 aside.product-sidebar,
.col-lg-4 aside.blog-sidebar,
.product-detail-section aside.product-sidebar,
.blog-detail-section aside.blog-sidebar,
.blog-section aside.blog-sidebar,
.service-detail-section aside.product-sidebar {
    position: sticky !important;
    top: 100px !important;
    align-self: flex-start !important;
}

/* Ürün listesi (/urunler) — base.css taşmasın */
.products-section--catalog .product-card,
.products-section--catalog .product-image {
    max-width: 100%;
    overflow: hidden;
}

/* Anasayfa ürün kartları (.services-section = ürün kaynağı) */
.services-section .service-card,
.services-section .service-image {
    max-width: 100%;
    overflow: hidden;
}

.services-section .service-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

/* Blog */
.blog-section .blog-list-card,
.blog-section .blog-list-image,
.blog-detail-card,
.blog-detail-image {
    max-width: 100%;
    overflow: hidden;
}

.blog-section .blog-list-image img,
.blog-detail-image img {
    max-width: 100% !important;
    box-sizing: border-box;
}

.blog-detail-body img,
.blog-detail-body .rich-content img,
.product-description img,
.product-description.rich-content img {
    max-width: 100% !important;
    height: auto !important;
    max-height: 560px;
    object-fit: contain;
    display: block;
    margin: 1.5rem 0;
    border-radius: 12px;
}

/* Footer iletişim: ikon + metin aynı hizada */
.footer-contact .footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.footer-contact .footer-contact-line > i {
    flex-shrink: 0;
    width: 1.125rem;
    margin-top: 0.2rem;
    text-align: center;
    color: var(--primary, #0e7490);
}

.footer-contact .footer-contact-text {
    flex: 1;
    min-width: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.5;
    word-break: break-word;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-contact .footer-contact-name {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.footer-brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.footer-contact .footer-contact-phone,
.footer-contact .footer-contact-email {
    display: block;
}

.footer-contact a.footer-contact-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a.footer-contact-link:hover {
    color: var(--primary-light, #22d3ee);
    text-decoration: none;
}