﻿.tool-detail-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.tool-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tool-logo {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    font-size: 3rem;
    color: #fa8c16;
    border: 1px solid #e1e1e1;
}

.tool-info {
    flex: 1;
}

.tool-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.tool-url {
    color: #fa8c16;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

    .tool-url:hover {
        text-decoration: underline;
    }

.tool-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tool-tag {
    background: #fffbe6;
    color: #fa8c16;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.tool-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #fa8c16;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary:hover {
        background: #e67e0f;
        text-decoration: none;
        color: white;
    }

.btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-secondary:hover {
        background: #e9ecef;
        text-decoration: none;
        color: #333;
    }

.tool-section {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 2px solid #fa8c16;
}

.section-content {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #fa8c16;
}

.feature-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.feature-description {
    color: #666;
    font-size: 0.95rem;
}

.related-tools {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.related-tool {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

    .related-tool:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.related-tool-logo {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fa8c16;
}

.related-tool-name {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.related-tool-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.rating {
    color: #fa8c16;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .tool-header {
        flex-direction: column;
        text-align: center;
    }

    .tool-logo {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .tool-actions {
        justify-content: center;
    }
}

