.attribute-modal-trigger {
    text-decoration: none;
    cursor: pointer;
    color: var(--first-color);
}
.attribute-modal-trigger:hover {
    text-decoration: none;
}

.attribute-info-modal .modal-title h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color);
}

.attribute-modal-body {
    padding: 32px;
}

.attribute-description {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    flex: 1;
}

.attribute-description p {
    margin-bottom: 12px;
}

.attribute-description p:last-child {
    margin-bottom: 0;
}

.attribute-separator {
    margin: 24px 0;
    border: none;
    border-top: 1px solid var(--light-border);
    opacity: 0.6;
}

.attribute-terms-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.attribute-term-item {
    display: flex;
    gap: 25px;
}

.attribute-term-item .term-name {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
}

.attribute-term-item .term-image {
    flex: 0 0 150px;
    height: 150px;
}

.attribute-term-item .term-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.attribute-term-item .term-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.attribute-term-item .term-description p {
    margin-bottom: 12px;
}

.attribute-term-item .term-description p:last-child {
    margin-bottom: 0;
}

.attribute-info-modal .modal-footer {
    padding: 15px;
    border-top: 1px solid var(--light-border);
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.attribute-info-modal .modal-footer .btn {
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.attribute-info-modal .modal-footer .btn-secondary {
    background-color: var(--light-border, #e1e1e1);
    color: var(--heading-color);
    border: 1px solid var(--light-border, #e1e1e1);
}

.attribute-info-modal .modal-footer .btn-secondary:hover {
    background-color: var(--text-color, #333);
    color: var(--white, #fff);
    border-color: var(--text-color, #333);
}

@media (max-width: 768px) {
    .attribute-modal-body {
        padding: 24px 20px;
    }

    .attribute-info-modal .modal-title h2 {
        font-size: 20px;
    }

    .attribute-term-item .term-name {
        font-size: 18px;
    }

    .attribute-term-item .term-image {
        max-width: 100%;
    }

    .attribute-info-modal .modal-footer {
        padding: 16px 20px;
    }
    .attribute-term-item .term-image {
        flex: 0 0 100px;
        height: 100px;
    }
}
