    .single-image-card {
        background: var(--surface-color);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: var(--card-shadow);
        text-align: center;
    }

    @media (min-width: 992px) {
        .col-lg-5.mobile-contents {
            position: sticky;
            top: 90px;
            align-self: flex-start;
            height: max-content;
        }
    }

    .single-cat-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: var(--input-bg);
        color: var(--primary-color);
        font-weight: 700;
        font-size: 0.9rem;
        padding: 8px 24px;
        border-radius: 30px;
        text-decoration: none;
        margin-bottom: 12px;
        transition: background .2s, color .2s;
    }
    
    .single-cat-badge i {
        font-size: 1.05rem;
        display: flex;
        align-items: center;
    }

    .single-cat-badge:hover {
        background: var(--primary-color);
        color: #fff
    }

    .single-title {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--text-main);
        line-height: 1.25;
        margin-bottom: 12px
    }

    .single-rating-summary {
        font-size: .9rem;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 6px
    }

    .single-stats-bar {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
        font-size: 0.85rem;
        color: var(--text-muted);
        font-weight: 600;
    }

    .single-stat-item {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .single-stat-item i {
        font-size: 0.9rem;
        opacity: 0.7;
    }

    .single-stat-divider {
        font-weight: 800;
        opacity: 0.4;
    }

    .single-actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        margin-bottom: 20px;
        width: 100%;
    }

    .single-actions>* {
        flex: 1 1 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        padding-left: 10px;
        padding-right: 10px;
        overflow: hidden;
    }

    .single-actions .btn-cta-download,
    .single-actions .btn-print-action,
    .single-actions .btn-color-action {
        border-radius: 50px;
        font-weight: 800;
        padding: 14px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
        border: 2px solid transparent;
        color: #fff;
    }

    /* İndir Butonu - Yeşil (Green) */
    .single-actions .btn-cta-download {
        background: #00b894 !important;
        animation: none !important;
        box-shadow: 0 4px 15px rgba(0, 184, 148, 0.2) !important;
    }

    .single-actions .btn-cta-download:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3) !important;
        background: #00a884 !important;
    }

    /* Yazdır Butonu - Mavi (Blue) */
    .single-actions .btn-print-action {
        background: #0984e3;
        box-shadow: 0 4px 15px rgba(9, 132, 227, 0.2);
    }

    .single-actions .btn-print-action:hover {
        background: #076aba;
        box-shadow: 0 8px 25px rgba(9, 132, 227, 0.3);
        transform: translateY(-2px);
    }

    /* Boya Butonu - Kırmızı (Red) */
    .single-actions .btn-color-action {
        background: #ff4757;
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.2);
    }

    .single-actions .btn-color-action:hover {
        background: #ff3838;
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
        transform: translateY(-2px);
    }

    /* Social Share */
    .social-share {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-share-label {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-muted);
    }

    .social-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--text-muted);
        background: var(--input-bg);
        border: 1px solid var(--border-color);
        transition: all 0.2s ease;
        text-decoration: none;
        padding: 0;
        line-height: 1;
    }

    .social-btn:hover {
        transform: scale(1.1);
        color: #fff;
    }

    .social-whatsapp:hover {
        background: #25D366;
        border-color: #25D366;
    }

    .social-pinterest:hover {
        background: #E60023;
        border-color: #E60023;
    }

    .social-twitter:hover {
        background: #000;
        border-color: #000;
    }

    .social-facebook:hover {
        background: #1877F2;
        border-color: #1877F2;
    }

    .single-description {
        font-size: 1rem;
        line-height: 1.75;
        color: var(--text-muted);
        margin-bottom: 0;
    }

    .single-description strong {
        color: var(--text-main)
    }

    .single-tags {
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color)
    }

    .single-rating-module {
        background: var(--input-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1.2rem
    }

    /* Coloring Overlay */
    .coloring-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .85);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px)
    }

    .coloring-container {
        background: var(--surface-color);
        border-radius: 16px;
        width: 95vw;
        max-width: 1100px;
        height: 95vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
    }

    .coloring-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px;
        border-bottom: 1px solid var(--border-color)
    }

    .coloring-close {
        background: none;
        border: none;
        font-size: 1.3rem;
        color: var(--text-muted);
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 8px;
        transition: background .2s
    }

    .coloring-close:hover {
        background: var(--input-bg);
        color: var(--text-main)
    }

    .coloring-body {
        display: flex;
        flex: 1;
        overflow: hidden
    }

    .coloring-canvas-wrap {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: auto;
        padding: 16px;
        background: #f5f5f5
    }

    [data-theme="dark"] .coloring-canvas-wrap {
        background: #1a1a1a
    }

    #coloring-canvas {
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
        cursor: default;
        max-width: 100%;
        touch-action: none
    }

    .coloring-toolbar {
        width: 200px;
        padding: 16px;
        border-left: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        gap: 16px;
        overflow-y: auto
    }

    .toolbar-label {
        font-size: .75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--text-muted);
        letter-spacing: .5px;
        margin-bottom: 6px;
        display: block
    }

    .color-palette {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px
    }

    .color-btn {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
        border-radius: 50% !important;
        border: 3px solid transparent;
        cursor: pointer;
        transition: transform .15s, border-color .15s;
        padding: 0;
        flex: 0 0 auto !important;
        justify-self: center;
        align-self: center;
        aspect-ratio: 1/1;
    }

    .color-btn:hover {
        transform: scale(1.15)
    }

    .color-btn.active {
        border-color: var(--primary-color);
        transform: scale(1.15);
        box-shadow: 0 0 0 2px var(--surface-color);
    }

    .brush-sizes {
        display: flex;
        gap: 6px
    }

    .brush-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 2px solid var(--border-color);
        background: var(--surface-color);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color .2s
    }

    .brush-btn span {
        background: var(--text-main);
        border-radius: 50%;
        display: block
    }

    .brush-btn.active {
        border-color: var(--primary-color);
        background: var(--input-bg)
    }

    .brush-btn:hover {
        border-color: var(--primary-color)
    }

    .tool-btns {
        display: flex;
        gap: 6px
    }

    .tool-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 2px solid var(--border-color);
        background: var(--surface-color);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--text-muted);
        transition: all .2s
    }

    .tool-btn.active {
        border-color: var(--primary-color);
        background: var(--primary-color);
        color: #fff
    }

    .tool-btn:hover {
        border-color: var(--primary-color);
        color: var(--primary-color)
    }

    .tool-btn.active:hover {
        color: #fff
    }

    .btn-save-coloring {
        background: linear-gradient(135deg, #00b894, #00cec9);
        color: #fff;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        padding: 12px;
        cursor: pointer;
        transition: all .3s;
        font-size: .85rem;
        width: 100%
    }

    .btn-save-coloring:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 184, 148, .35)
    }

    @media(max-width:991.98px) {
        .single-title {
            font-size: 1.4rem
        }
        
        .breadcrumb {
            font-size: 0.9rem !important;
            line-height: 1.5;
            flex-wrap: nowrap !important;
            white-space: nowrap !important;
        }
        
        .breadcrumb-item {
            white-space: nowrap !important;
            flex-shrink: 0;
        }

        .breadcrumb-item.active {
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            flex-shrink: 1 !important;
            display: block !important;
        }

        .single-cat-badge {
            font-size: 0.8rem;
            padding: 6px 20px;
        }

        .single-cat-badge i {
            font-size: 0.95rem;
        }

        .single-image-card {
            position: static;
            padding: 1rem
        }

        /* Mobil butonları yan yana (tek satırda) göstermek için flex-direction column kaldırıldı */
        .single-actions {
            flex-direction: row;
            gap: 6px;
        }

        .single-actions .btn-cta-download,
        .single-actions .btn-print-action,
        .single-actions .btn-color-action {
            padding: 10px 4px;
            font-size: 0.75rem;
        }
        
        .single-actions i {
            margin-right: 4px !important;
            font-size: 1rem !important;
        }

        .coloring-body {
            flex-direction: column
        }

        .coloring-toolbar {
            width: 100%;
            flex-direction: row;
            flex-wrap: wrap;
            border-left: none;
            border-top: 1px solid var(--border-color);
            padding: 10px
        }

        .toolbar-section {
            flex: 1 1 auto;
            min-width: 120px
        }

        .coloring-canvas-wrap {
            padding: 8px
        }
    }

    /* Print */
    @media print {
        body * {
            visibility: hidden !important
        }

        #printable-area,
        #printable-area .single-image-card,
        #printable-area .single-image-card * {
            visibility: visible !important
        }

        #printable-area .social-share,
        #printable-area .single-tags,
        #printable-area .single-rating-module,
        #printable-area .social-share *,
        #printable-area .single-tags *,
        #printable-area .single-rating-module * {
            display: none !important;
            visibility: hidden !important
        }

        #printable-area {
            position: fixed !important;
            top: 0;
            left: 0;
            width: 100vw !important;
            height: 100vh !important;
            margin: 0 !important;
            padding: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important
        }

        #printable-area .single-image-card {
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
            background: white !important
        }

        #printable-area img {
            max-width: 100% !important;
            max-height: 100vh !important;
            object-fit: contain !important;
            pointer-events: auto !important
        }
    }

    /* Related Cards Hover */
    .printable-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
    }

    .printable-card:hover img {
        transform: scale(1.05);
    }

    [data-theme="dark"] .printable-card:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
    }

    /* Comments Styles */
    .single-comments-section h4 {
        font-size: 1.3rem;
    }

    .comment-item {
        background: var(--surface-color, #fff);
        padding: 20px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        transition: box-shadow 0.2s ease;
    }

    .comment-item:hover {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    }

    [data-theme="dark"] .comment-item {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    [data-theme="dark"] .comment-item:hover {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    }

    [data-theme="dark"] .alert-light {
        background-color: var(--surface-color);
        border-color: var(--border-color);
        color: var(--text-main);
    }

    /* Comment Form - Premium Design */
    .comment-form-box {
        border-radius: 16px;
        border: 1px solid var(--border-color);
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        background: var(--surface-color);
    }

    .comment-form-header {
        background: var(--primary-color);
        color: #fff;
        padding: 14px 20px;
        font-weight: 700;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .comment-form-header i {
        font-size: 1.1rem;
    }

    .comment-form-body {
        padding: 20px;
    }

    .form-floating-custom {
        position: relative;
    }

    .form-floating-custom .field-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: 0.9rem;
        z-index: 2;
        pointer-events: none;
        transition: color 0.2s ease;
    }

    .form-floating-custom .field-icon.textarea-icon {
        top: 18px;
        transform: none;
    }

    .form-floating-custom .form-control {
        padding-left: 40px;
        border-radius: 12px;
        border: 1.5px solid var(--border-color);
        background: var(--input-bg);
        color: var(--text-main);
        font-size: 0.9rem;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-floating-custom .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.12);
        outline: none;
    }

    .form-floating-custom .form-control:focus~.field-icon,
    .form-floating-custom:focus-within .field-icon {
        color: var(--primary-color);
    }

    .form-floating-custom textarea.form-control {
        min-height: 100px;
        resize: vertical;
    }

    .comment-submit-btn {
        width: 100%;
        padding: 13px 24px;
        border: none;
        border-radius: 12px;
        background: var(--primary-color);
        color: #fff;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
    }

    .comment-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(108, 92, 231, 0.35);
        filter: brightness(1.1);
    }

    .comment-submit-btn:active {
        transform: translateY(0);
    }

    [data-theme="dark"] .comment-form-box {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    [data-theme="dark"] .comment-form-box .form-control {
        background-color: var(--surface-color);
        border-color: var(--border-color);
        color: var(--text-main);
    }

    [data-theme="dark"] .comment-form-box .form-control::placeholder {
        color: var(--text-muted);
    }

    [data-theme="dark"] .comment-form-box .form-control:focus {
        background-color: var(--surface-color);
        border-color: var(--primary-color);
        color: var(--text-main);
        box-shadow: 0 0 0 3px rgba(131, 120, 234, 0.25);
    }

    .comment-replies {
        margin-left: 10px;
    }

    .comment-avatar {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        aspect-ratio: 1 / 1;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        font-weight: 800;
        font-size: 1rem;
        line-height: 1;
        padding: 0;
        box-shadow: none;
    }

    .comment-replies .comment-avatar {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        font-size: 0.85rem;
    }

    .comment-avatar.ai-avatar {
        background: #0984e3;
        box-shadow: none;
    }