/* Основные стили каталога */
.lamp-catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.lamp-group {
    margin-bottom: 30px;
}

.lamp-group-title {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e74c3c;
}

.lamp-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.lamp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.lamp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.lamp-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 8px;
}

.lamp-code {
    font-size: 14px;
    font-weight: bold;
    color: #e74c3c;
}

/* Tooltip стили */
.lamp-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: none;
    width: 120px;
}

.lamp-tooltip img {
    max-width: 100%;
    height: auto;
}