/**
 * Product Tabs - Frontend Styles
 * Большинство стилей генерируются динамически из настроек
 */

/* Базовые стили на случай если динамические не загрузились */
.ptda-tab-content {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}

.ptda-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    background-color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.ptda-item:hover {
    background-color: #f9f9f9;
    text-decoration: none;
}

.ptda-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00d4d4;
}

.ptda-item-thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f0f0f0;
}

.ptda-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ptda-item-text {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
}
