﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* Main Product Section */
.product-section {
    padding: 3rem 0;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: hidden;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow-x: hidden;
}

/* Image Gallery */
.product-gallery {
    position: sticky;
    top: 160px;
    height: fit-content;
}

.main-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 1rem;
    aspect-ratio: 1;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

    .main-image:hover {
        transform: scale(1.05);
    }

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #141423;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

    .gallery-nav:hover {
        background: #bc1818;
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .gallery-nav.prev {
        left: 1rem;
    }

    .gallery-nav.next {
        right: 1rem;
    }

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    background: #f8f9fa;
}

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .thumbnail.active {
        border-color: #bc1818;
        box-shadow: 0 4px 15px rgba(188,24,24,0.3);
    }

    .thumbnail:hover {
        border-color: #141423;
    }

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
    overflow-x: hidden;
}

.product-header {
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 1.5rem;
    overflow-x: hidden;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #141423;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product-description {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Info Tabs */
.info-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    position: relative;
    top: 2px;
    white-space: nowrap;
}

    .tab-btn:hover {
        color: #141423;
    }

    .tab-btn.active {
        color: #bc1818;
        border-bottom-color: #bc1818;
    }

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
    overflow-x: hidden;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    color: #495057;
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

    .content-box * {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    .content-box h3 {
        color: #141423;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .content-box ul {
        list-style: none;
        padding-left: 0;
        width: 100%;
    }

    .content-box li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

        .content-box li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #bc1818;
            font-weight: bold;
            flex-shrink: 0;
        }

    .content-box p {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #bc1818, #8b1313);
    color: white;
    box-shadow: 0 4px 15px rgba(188,24,24,0.3);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #8b1313, #6b0f0f);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(188,24,24,0.4);
    }

.btn-secondary {
    background: #141423;
    color: white;
    box-shadow: 0 4px 15px rgba(20,20,35,0.3);
}

    .btn-secondary:hover {
        background: #0a0a15;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(20,20,35,0.4);
    }

.btn-outline {
    background: white;
    color: #141423;
    border: 2px solid #141423;
}

    .btn-outline:hover {
        background: #141423;
        color: white;
    }

/* Video Section */
.video-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow-x: hidden;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #141423;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .section-title i {
        color: #bc1818;
    }

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .video-container video,
    .video-container .product-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #000;
        border: none;
    }

/* Users Section */
.users-section {
    background: linear-gradient(135deg, #141423, #bc1818);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    color: white;
    overflow-x: hidden;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.user-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

    .user-card:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-5px);
    }

/* Breadcrumb */
.breadcrumb-container {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

    .breadcrumb-item a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.3s;
    }

        .breadcrumb-item a:hover {
            color: #bc1818;
        }

    .breadcrumb-item.active {
        color: #bc1818;
        font-weight: 600;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: '/';
        color: #dee2e6;
        margin: 0 0.5rem;
    }

/* SEO Blog Section */
.seo-blog-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow-x: hidden;
}

.blog-article {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-header {
    border-bottom: 3px solid #f1f1f1;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

    .blog-header h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #141423;
        display: flex;
        align-items: center;
        gap: 1rem;
        line-height: 1.3;
    }

        .blog-header h2 i {
            color: #bc1818;
            font-size: 2rem;
        }

.blog-content {
    color: #495057;
    line-height: 1.8;
    font-size: 1.05rem;
}

    .blog-content * {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    .blog-content h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #141423;
        margin: 2.5rem 0 1.5rem 0;
        line-height: 1.3;
    }

    .blog-content h3 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #141423;
        margin: 2rem 0 1rem 0;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f1f1f1;
    }

    .blog-content h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #495057;
        margin: 1.5rem 0 1rem 0;
    }

    .blog-content p {
        margin-bottom: 1.2rem;
        text-align: justify;
    }

    .blog-content strong {
        color: #141423;
        font-weight: 600;
    }

    .blog-content em {
        font-style: italic;
        color: #6c757d;
    }

    .blog-content ul,
    .blog-content ol {
        margin: 1.5rem 0;
        padding-left: 2rem;
    }

    .blog-content li {
        margin-bottom: 0.8rem;
        line-height: 1.8;
    }

    .blog-content ul li::marker {
        color: #bc1818;
    }

    .blog-content a {
        color: #bc1818;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }

        .blog-content a:hover {
            color: #8b1313;
            text-decoration: underline;
        }

    .blog-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 2rem 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .blog-content blockquote {
        border-left: 4px solid #bc1818;
        padding: 1.5rem;
        margin: 2rem 0;
        font-style: italic;
        color: #6c757d;
        background: #f8f9fa;
        border-radius: 8px;
    }

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, #141423, #2a2a3e);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #bc1818, #8b1313);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(188,24,24,0.4);
}

.cta-text {
    color: white;
}

    .cta-text h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
    }

    .cta-text p {
        font-size: 1.05rem;
        opacity: 0.9;
        margin: 0;
    }

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    white-space: nowrap;
}

    .cta-button.primary {
        background: linear-gradient(135deg, #bc1818, #8b1313);
        color: white;
        box-shadow: 0 4px 15px rgba(188,24,24,0.3);
    }

        .cta-button.primary:hover {
            background: linear-gradient(135deg, #8b1313, #6b0f0f);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(188,24,24,0.5);
        }

    .cta-button.secondary {
        background: white;
        color: #141423;
        border: 2px solid white;
    }

        .cta-button.secondary:hover {
            background: transparent;
            color: white;
        }

/* ================================================================
   İLGİLİ ÜRÜNLER
   ================================================================ */

.related-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.related-title {
    font-size: 2rem;
    font-weight: 700;
    color: #141423;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .related-title i {
        color: #bc1818;
    }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.related-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .25s, transform .25s;
    background: #fff;
}

    .related-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transform: translateY(-4px);
        text-decoration: none;
        color: inherit;
    }

.related-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

    .related-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform .3s;
    }

.related-card:hover .related-img img {
    transform: scale(1.05);
}

.related-info {
    padding: .875rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    border-top: 1px solid #f1f5f9;
}

.related-name {
    font-weight: 700;
    font-size: .95rem;
    color: #141423;
    line-height: 1.3;
}

.related-desc {
    font-size: .8rem;
    color: #64748b;
    line-height: 1.5;
}

.related-link-hint {
    font-size: .78rem;
    color: #bc1818;
    font-weight: 600;
    margin-top: .2rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* No Data Message */
.no-data {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

    .no-data i {
        font-size: 3rem;
        margin-bottom: 1rem;
        opacity: 0.3;
    }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
    .product-gallery {
        top: 120px;
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .product-name {
        font-size: 2rem;
    }

    .blog-header h2 {
        font-size: 1.8rem;
    }

    .blog-content h2 {
        font-size: 1.7rem;
    }

    .blog-content h3 {
        font-size: 1.4rem;
    }

    .blog-cta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .cta-icon {
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .product-section {
        padding: 2rem 0;
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .product-container {
        padding: 1.5rem;
        gap: 2rem;
        overflow-x: hidden;
        width: 100%;
    }

    .product-info {
        overflow-x: hidden;
        width: 100%;
        min-width: 0;
    }

    .product-name {
        font-size: 1.8rem;
        word-break: break-word;
    }

    .product-description {
        font-size: 1rem;
        word-break: break-word;
    }

    .info-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .info-tabs::-webkit-scrollbar {
            display: none;
        }

    .tab-btn {
        white-space: nowrap;
        padding: .8rem 1rem;
        font-size: .9rem;
    }

    .tab-content {
        overflow-x: hidden;
        width: 100%;
    }

    .content-box {
        padding: 1.5rem;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }

        .content-box * {
            max-width: 100%;
        }

        .content-box h3 {
            font-size: 1.2rem;
            word-break: break-word;
        }

        .content-box li {
            padding-left: 1.3rem;
            font-size: .95rem;
        }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: .9rem 1.5rem;
    }

    .video-section,
    .users-section {
        padding: 2rem;
        margin-top: 2rem;
        overflow-x: hidden;
    }

    .section-title {
        font-size: 1.6rem;
        flex-wrap: wrap;
        word-break: break-word;
    }

    .users-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: .8rem;
    }

    .user-card {
        padding: 1rem .75rem;
        font-size: .9rem;
    }

    .thumbnail-container {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: .5rem;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

        .gallery-nav.prev {
            left: .5rem;
        }

        .gallery-nav.next {
            right: .5rem;
        }

    .breadcrumb-container {
        padding: .75rem 0;
    }

    .breadcrumb-item {
        font-size: .85rem;
    }

    .seo-blog-section {
        padding: 2rem;
    }

    .blog-header h2 {
        font-size: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }

    .blog-content {
        font-size: 1rem;
    }

        .blog-content h2 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
        }

        .blog-content h3 {
            font-size: 1.3rem;
        }

    .blog-cta {
        padding: 2rem;
    }

    .cta-text h3 {
        font-size: 1.3rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-button {
        padding: .9rem 1.5rem;
        font-size: .95rem;
    }

    /* İlgili ürünler */
    .related-section {
        padding: 2rem;
        margin-top: 2rem;
    }

    .related-title {
        font-size: 1.6rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .875rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100vw;
    }

    .product-section {
        padding: 1.5rem 0;
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 .75rem;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }

    .product-container {
        padding: 1.25rem;
        border-radius: 15px;
        gap: 1.5rem;
        overflow-x: hidden;
        width: 100%;
    }

    .product-info {
        overflow-x: hidden;
        width: 100%;
        min-width: 0;
    }

    .product-name {
        font-size: 1.5rem;
    }

    .product-description {
        font-size: .95rem;
    }

    .tab-btn {
        padding: .7rem .8rem;
        font-size: .85rem;
    }

        .tab-btn i {
            font-size: .9rem;
        }

    .tab-content {
        overflow-x: hidden;
        width: 100%;
    }

    .content-box {
        padding: 1.25rem;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }

        .content-box * {
            max-width: 100%;
        }

        .content-box h3 {
            font-size: 1.1rem;
            gap: .3rem;
        }

            .content-box h3 i {
                font-size: 1rem;
            }

        .content-box li {
            font-size: .88rem;
            padding-left: 1.2rem;
            line-height: 1.6;
        }

        .content-box ul {
            width: 100%;
        }

    .btn {
        padding: .8rem 1.2rem;
        font-size: .9rem;
    }

    .video-section,
    .users-section {
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1.5rem;
        overflow-x: hidden;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .users-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .6rem;
    }

    .user-card {
        padding: .9rem .5rem;
        font-size: .85rem;
    }

    .thumbnail-container {
        grid-template-columns: repeat(4, 1fr);
        gap: .4rem;
    }

    .main-image-container {
        border-radius: 12px;
    }

    .thumbnail {
        border-radius: 8px;
        border-width: 2px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: .9rem;
    }

        .gallery-nav.prev {
            left: .3rem;
        }

        .gallery-nav.next {
            right: .3rem;
        }

    .breadcrumb-container {
        padding: .5rem 0;
    }

    .breadcrumb-item {
        font-size: .8rem;
    }

        .breadcrumb-item + .breadcrumb-item::before {
            margin: 0 .3rem;
        }

    .seo-blog-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .blog-header {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }

        .blog-header h2 {
            font-size: 1.4rem;
            flex-direction: column;
            align-items: flex-start;
        }

            .blog-header h2 i {
                font-size: 1.5rem;
            }

    .blog-content {
        font-size: .95rem;
        line-height: 1.7;
    }

        .blog-content h2 {
            font-size: 1.3rem;
            margin: 1.5rem 0 1rem 0;
        }

        .blog-content h3 {
            font-size: 1.15rem;
            margin: 1.5rem 0 .75rem 0;
        }

        .blog-content h4 {
            font-size: 1.05rem;
        }

        .blog-content p {
            margin-bottom: 1rem;
        }

        .blog-content ul,
        .blog-content ol {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .blog-content li {
            margin-bottom: .6rem;
            font-size: .9rem;
        }

    .blog-cta {
        padding: 1.5rem;
        margin-top: 2rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
        margin: 0 auto;
    }

    .cta-text h3 {
        font-size: 1.2rem;
        margin-bottom: .3rem;
    }

    .cta-text p {
        font-size: .9rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        padding: .8rem 1.2rem;
        font-size: .9rem;
        width: 100%;
        justify-content: center;
    }

    /* İlgili ürünler */
    .related-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .related-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }

    .related-name {
        font-size: .88rem;
    }

    .related-desc {
        font-size: .75rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 .5rem;
        max-width: 100%;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .product-container {
        padding: 1rem;
    }

    .content-box {
        padding: 1rem;
        max-width: 100%;
        width: 100%;
    }

        .content-box li {
            font-size: .82rem;
            padding-left: 1rem;
        }

    .section-title {
        font-size: 1.2rem;
    }

    .users-grid {
        grid-template-columns: 1fr;
    }

    .thumbnail-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .seo-blog-section {
        padding: 1.25rem;
    }

    .blog-header h2 {
        font-size: 1.25rem;
    }

    .blog-content {
        font-size: .9rem;
    }

        .blog-content h2 {
            font-size: 1.2rem;
        }

        .blog-content h3 {
            font-size: 1.05rem;
        }

    .blog-cta {
        padding: 1.25rem;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .cta-text h3 {
        font-size: 1.1rem;
    }

    .cta-text p {
        font-size: .85rem;
    }

    .cta-button {
        padding: .75rem 1rem;
        font-size: .85rem;
    }

    /* İlgili ürünler */
    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-title {
        font-size: 1.2rem;
    }
}
