.interactive-buttons {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-description {
    text-align: center;
    margin-bottom: 60px;
}

.section-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.interactive-grid {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.interactive-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.category-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.category-title {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    padding-bottom: 20px !important;
}

.button-displays {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.button-item {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    aspect-ratio: 203/209;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.button-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 44px;
    height: 18px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .interactive-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .category-section {
        align-items: center;
    }
    
    .button-displays {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .interactive-buttons {
        padding: 60px 0;
    }
    
    .section-description {
        margin-bottom: 40px;
    }
    
    .section-description p {
        font-size: 16px;
    }
    
    .button-displays {
        flex-direction: column;
        gap: 16px;
    }
    
    .button-item {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .button-item {
        width: 250px;
        height: 250px;
    }
    
    .category-title {
        font-size: 18px;
    }
}
